.main {
  min-height: 100dvh;
}

.hero {
  position: relative;
  min-height: 65dvh;
  overflow: hidden;
}

.heroImage {
  object-fit: cover;
  object-position: center;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(39, 30, 20, 0.56) 0%, rgba(39, 30, 20, 0.12) 38%),
    linear-gradient(to top, rgba(39, 30, 20, 0.72) 0%, rgba(39, 30, 20, 0.2) 38%);
}

.heroContent {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: clamp(2.5rem, 14vh, 5rem);
  color: #f7f4ee;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.66rem;
}

.title {
  margin: 0.6rem 0 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.02;
  font-weight: 500;
}

.storySection {
  padding: clamp(2.6rem, 7vw, 5.4rem) 0;
  background: #f6efe5;
}

.container {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.sectionTitle {
  margin: 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.8vw, 2.6rem);
  color: #261d14;
  font-weight: 500;
}

.list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.storyCard {
  border: 1px solid rgba(53, 40, 26, 0.18);
  background: #f3e8da;
  padding: 0.9rem 0.85rem;
}

.number {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.58rem;
  color: #4d4134;
}

.storyTitle {
  margin: 0.55rem 0 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  color: #2f251b;
  font-size: 1.35rem;
  font-weight: 500;
}

.storyExcerpt {
  margin: 0.5rem 0 0;
  line-height: 1.7;
  color: #564c3f;
  font-size: 0.9rem;
}

.readLink {
  display: inline-block;
  margin-top: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  color: #2d2318;
  border-bottom: 1px solid rgba(53, 40, 26, 0.52);
  padding-bottom: 0.2rem;
}

@media (min-width: 768px) {
  .heroContent {
    left: clamp(2rem, 5vw, 4.6rem);
    right: auto;
  }

  .container {
    padding: 0 2.1rem;
  }

  .list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }
}
