.header-section {
  background-color: #f0f0f0;
}

.reel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  text-align: center;
  padding: 10px 0;
  background-color: rgba(240, 240, 240, 0.966);
}

  .reel-square {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    gap: 10px;
    padding: 5px 10px;
    background-color: rgba(240, 240, 240, 0.966);
  }

    .reel-logo {
      width: 40px;
    }

  .reel-content {
    display: flex;
    flex-direction: column;
  }

    .reel-title {
      color: rgb(52, 52, 52);
      font-size: 1.2rem;
      font-weight: bold;
      text-align: left;
    }

      .reel-title:hover {
        cursor: pointer;
        text-decoration: underline;
      }

    .reel-description {
      color: rgb(71, 71, 71);
      text-align: left;
    }

@media screen and (max-width: 968px) {
  .reel {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .reel {
    grid-template-columns: 1fr;
  }
}
