/*
 * HERO SECTION
 * Full-width institutional hero with teal/navy blend
 * Positioned outside <main> for full viewport width
 * Compact layout with CTAs on the right (desktop)
 */
.hero-section {
  /* background: linear-gradient(345deg, #2a5a4e 0%, #3d7a6a 30%, #4a8a7a 60%, #5a9a8a 100%); */
  background: var(--link-text);

  color: var(--color-1);
  padding: 2.5rem var(--grid-gutter);
  position: relative;
  overflow: hidden;
  border-radius: var(--button-border-radius);

  .hero-content {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
  }

  .hero-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
  }

  .secondary {
    max-width: 20rem;  
  }

  .hero-headline {
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: var(--color-1);
    max-width: 45ch;
  }

  .hero-subheadline {
    font-size: var(--font-size-s);
    line-height: 1.5;
    margin: 0;
    color: oklch(from var(--color-1) l c h / 90%);
    max-width: 50ch;
  }

  .em {
    font-size: var(--font-size-m);
    color: var(--color1);
    font-weight: bold;
  }

}
