/* About page */
.hero-about {
  background: var(--bg-blue-deep);
  padding-block: clamp(4rem, 10vw, 6rem);
  text-align: center;
}
.hero-about h1 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}
.about-heading {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.story-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: minmax(0, 320px) 1fr;
  }
}
.story-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.team-band {
  background: var(--bg-dark);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.team-band h2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.team-member {
  text-align: center;
  width: 140px;
}
.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
}
.team-member .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-member .role {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.press-item {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  color: #111;
}
.press-item.variety {
  font-style: italic;
  font-family: Georgia, serif;
}
.press-item.small {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: normal;
}
.press-item.nasdaq {
  font-family: var(--font-heading);
  color: #003893;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 700;
}
.press-item.foodstars {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.15;
  color: #c2410c;
  white-space: normal;
}
.press-aarp-accent {
  color: #c00;
}

@media (max-width: 1100px) {
  .press-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 680px) {
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .press-item {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .press-item.nasdaq {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}
