/* =========================
   HERO SECTION
========================= */
.hero-section {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(15, 123, 108, 0.16),
    rgba(79, 175, 61, 0.12),
    rgba(245, 154, 35, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background-color: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  top: 50px;
  right: 50px;
  filter: blur(10px);
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto auto 35px 35px;
  width: 180px;
  height: 180px;
  background: rgba(245, 154, 35, 0.16);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 0;
}

.hero-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.hero-card-main {
  position: relative;
  max-width: 320px;
  padding: 34px 28px;
  z-index: 2;
  text-align: left;
  border-top: 4px solid var(--color-primary);
}

.hero-card-main h3 {
  margin-bottom: 12px;
}

.hero-card-small {
  padding: 14px 20px;
  font-weight: 700;
  color: var(--color-primary);
  z-index: 2;
}

.top-card {
  top: 70px;
  left: 20px;
}

.mid-card {
  top: 160px;
  right: 24px;
}

.bottom-card {
  bottom: 60px;
  right: 20px;
}

/* =========================
   SECTION BACKGROUNDS
========================= */
.focus-areas {
  background-color: rgba(255, 255, 255, 0.55);
}

.get-involved {
  background-color: rgba(79, 175, 61, 0.05);
}

.resources-preview {
  background-color: rgba(245, 154, 35, 0.05);
}

/* =========================
   IMPACT SECTION
========================= */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.impact-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.impact-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--color-accent);
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
}

.impact-item:hover {
  transform: translateY(-4px);
}

/* =========================
   STORY SECTION
========================= */
.story-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.story-content,
.story-quote {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 123, 108, 0.08);
}

.story-content p {
  margin: 18px 0 24px;
}

.story-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 123, 108, 0.12),
    rgba(245, 154, 35, 0.12)
  );
}

.story-quote p {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-text);
}

/* =========================
   RESOURCES
========================= */
.resource-list {
  margin-top: 20px;
  padding-left: 20px;
}

.resource-list li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--color-text-muted);
}
