/* ── Homepage ─────────────────────────────────────────────────── */

.home-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px 48px;
  text-align: center;
}

.home-intro h2 {
  margin: 0 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #00666d;
  line-height: 1.2;
}

.home-intro p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #3e494a;
}

.home-exp-card {
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 40, 45, 0.08);
  display: flex;
  flex-direction: column;
}

.home-exp-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.home-exp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-exp-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-exp-card-body h3 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00666d;
}

.home-exp-card-body p {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #3e494a;
  flex: 1;
}

.home-exp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 9999px;
  background: #00666d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-exp-cta:hover {
  background: #004f55;
}

.home-exp-track .home-exp-card {
  flex: 0 0 min(300px, 78vw);
}

.home-contribution {
  padding: 0 32px 80px;
}

.home-contribution-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 40, 45, 0.1);
}

@media (min-width: 900px) {
  .home-contribution-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
  }
}

.home-contribution-panel {
  background: linear-gradient(145deg, #004f55 0%, #00666d 100%);
  color: #fff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-contribution-panel h2 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.home-contribution-panel p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.home-contribution-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
