
/* =============================================================================
   OUR STORY
   ============================================================================= */

.about-section {
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: solid 1px var(--bone);
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}

.about-section__content h2 {
  margin-bottom: 20px;
}

.about-section__content p {
  line-height: 1.7;
}

.about-quote {
  position: sticky;
  top: 40px;
  background-color: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 0 5px 5px 0;
  padding: 25px 30px;
}

.about-quote__text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--brown);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}


/* =============================================================================
   WHY PRINTED WORD SEARCHES
   ============================================================================= */

.about-why {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--cream);
  border-top: solid 1px var(--bone);
  border-bottom: solid 1px var(--bone);
}

.about-why__header {
  margin-bottom: 40px;
}

.about-why__header h2 {
  margin: 0;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.about-why__card {
  background-color: var(--warm-white);
  border: solid 1px var(--bone);
  border-radius: 5px;
  padding: 30px;
}

.about-why__card-title {
  margin-bottom: 10px;
}

.about-why__card-text {
  margin: 0;
}


/* =============================================================================
   MEET NATHAN
   ============================================================================= */

.about-nathan {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-nathan__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-nathan__image {
  display: block;
  width: 100%;
  border-radius: 5px;
  border: solid 1px var(--bone);
  background-color: var(--cream);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-nathan__text h2 {
  margin-bottom: 20px;
}

.about-nathan__text p {
  line-height: 1.7;
}

.about-nathan__text .btn {
  margin-top: 10px;
}


/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 900px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-quote {
    position: static;
  }

  .about-nathan__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-nathan__image-wrapper {
    position: static;
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .about-why__grid {
    grid-template-columns: 1fr;
  }
}
