/* Homepage-only additions. Shared classes live in /css/theme.css. */

.hero{background-image:url("/media/index/hero-university-campus-lawn.png")}

.home-passage .passage-grid {
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.home-passage .passage-figure {
  margin: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(18, 52, 77, 0.35);
  min-height: 0;
}

.home-passage .passage-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-passage .passage-body .kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}

.home-passage .passage-body h2 {
  margin: 0 0 24px;
}

.home-passage .passage-body h2 em {
  color: var(--coral);
}

@media (max-width: 900px) {
  .home-passage .passage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-passage .passage-figure {
    aspect-ratio: 16/9;
  }
}

.home-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
}

.home-approach-figure {
  margin: 0;
  height: 100%;
}

.home-approach-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -30px rgba(18, 52, 77, 0.35);
}

.home-approach-body .section-head {
  margin-bottom: 32px;
}

.home-approach-body .approach-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-approach-body .approach-list li {
  padding: 22px 22px;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .home-approach-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-approach-figure {
    height: auto;
  }
  .home-approach-figure img {
    height: auto;
  }
  .home-approach-body .approach-list {
    grid-template-columns: 1fr;
  }
}
