/* Homepage editorial “about” intro — after masthead */

.home-about {
  --about-ink: #14252e;
  --about-muted: #4a5d68;
  --about-line: rgba(20, 37, 46, 0.12);
  --about-accent: #1c4a63;
  --about-wash: #d9e4eb;
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(165deg, #eef3f6 0%, #e3ebf1 42%, #f7f9fb 100%);
  color: var(--about-ink);
  overflow: hidden;
}

.home-about-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(55, 113, 187, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(40, 59, 66, 0.08), transparent 55%);
  pointer-events: none;
}

.home-about .container {
  position: relative;
  z-index: 1;
}

.home-about-layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

@media (min-width: 992px) {
  .home-about-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.5rem;
  }
}

.home-about-media {
  margin: 0;
  position: relative;
}

.home-about-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  /* Full-bleed feel on mobile edges via negative margin */
}

@media (max-width: 991.98px) {
  .home-about-media {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .home-about-media img {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 992px) {
  .home-about-media {
    position: sticky;
    top: 6.5rem;
  }

  .home-about-media img {
    aspect-ratio: 4 / 5;
    max-height: min(78vh, 640px);
  }
}

.home-about-media-cap {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--about-muted);
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .home-about-media-cap {
    padding: 0;
  }
}

.home-about-kicker {
  margin: 0 0 0.65rem;
  font-family: "Merriweather Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--about-accent);
}

.home-about-copy h2 {
  margin: 0 0 1rem;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--about-ink);
}

.home-about-lede {
  margin: 0 0 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--about-line);
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.55;
  color: var(--about-ink);
}

.home-about-copy > p:not(.home-about-kicker):not(.home-about-lede) {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--about-muted);
}

.home-about-copy > p:not(.home-about-kicker):not(.home-about-lede):last-of-type {
  margin-bottom: 1.75rem;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  padding-top: 0.25rem;
}

.home-about-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-family: "Merriweather Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--about-accent);
  border: 1px solid rgba(28, 74, 99, 0.28);
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-about-link:hover,
.home-about-link:focus-visible {
  color: #fff;
  background: var(--about-accent);
  border-color: var(--about-accent);
}

@media (max-width: 575.98px) {
  .home-about {
    padding: 2.75rem 0 3.25rem;
  }

  .home-about-copy > p:not(.home-about-kicker):not(.home-about-lede) {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .home-about-link {
    flex: 1 1 calc(50% - 0.65rem);
    justify-content: center;
    text-align: center;
    padding: 0.65rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* Soft entrance without noisy motion */
@media (prefers-reduced-motion: no-preference) {
  .home-about-media,
  .home-about-copy {
    animation: home-about-rise 0.7s ease both;
  }

  .home-about-copy {
    animation-delay: 0.08s;
  }
}

@keyframes home-about-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
