/* ===============================
   POLICY LIST – MODERN SDG
================================ */

.policy-list{
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CARD */
.policy-group-card.modern{
  --sdg-color: #6b7280;

  background: #ffffff;
  border-radius: 24px;
  padding: 34px 36px 30px;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 14px 36px rgba(0,0,0,.08),
    0 1px 0 rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}

/* TOP COLOR BAR */
.policy-group-card.modern::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background: var(--sdg-color);
}

/* HEADER */
.policy-group-header-modern{
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SDG PILL */
.sdg-pill{
  min-width: 58px;
  height: 32px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sdg-color) 88%, white);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLE */
.policy-title-wrap{
  display: flex;
  flex-direction: column;
}

.policy-title{
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0;
  color: #0f172a;
  letter-spacing: -.01em;
}

.policy-subtitle{
  margin-top: 4px;
  font-size: .85rem;
  color: #6b7280;
}

/* DIVIDER */
.policy-divider{
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--sdg-color),
    transparent 70%
  );
  margin: 22px 0 10px;
  opacity: .35;
}

/* LIST */
.policy-items-modern{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.policy-item + .policy-item{
  border-top: 1px solid #f1f5f9;
}

/* LINK */
.policy-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2937;
  font-size: 1rem;
  transition:
    background .15s ease,
    color .15s ease,
    transform .12s ease;
}

.policy-link:hover{
  background: color-mix(in srgb, var(--sdg-color) 8%, white);
  color: var(--sdg-color);
  transform: translateX(2px);
}

/* CODE */
.policy-code{
  font-weight: 500;
}

/* ARROW */
.policy-arrow{
  font-size: 1.15rem;
  opacity: .45;
  transition: transform .15s ease, opacity .15s ease;
}

.policy-link:hover .policy-arrow{
  transform: translateX(6px);
  opacity: 1;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 640px){
  .policy-group-card.modern{
    padding: 26px 22px;
  }

  .policy-title{
    font-size: 1.15rem;
  }

  .policy-link{
    font-size: .95rem;
  }
}


/* ===============================
   POLICY HERO – MODERN
================================ */

.policy-hero{
  padding: 64px 0 40px;
}

/* CARD */
.policy-hero-card{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(33,197,142,.18), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(59,130,246,.16), transparent 60%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    0 24px 64px rgba(0,0,0,.18);
}

/* TOP ACCENT LINE */
.policy-hero-accent{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    #e5243b,
    #dda63a,
    #4c9f38,
    #c5192d,
    #ff3a21,
    #26bde2,
    #fcc30b,
    #a21942,
    #fd6925,
    #dd1367,
    #fd9d24,
    #bf8b2e,
    #3f7e44,
    #0a97d9,
    #56c02b,
    #00689d,
    #19486a
  );
}

/* INNER */
.policy-hero-inner{
  padding: 64px 56px 60px;
}

/* KICKER */
.policy-kicker{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #065f46;
  background: rgba(16,185,129,.12);
  margin-bottom: 18px;
}

/* TITLE */
.policy-hero-title{
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.15;
  margin: 0;
  color: #0f172a;
  letter-spacing: -.02em;
}

/* LEAD */
.policy-hero-lead{
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px){
  .policy-hero-inner{
    padding: 48px 28px;
  }

  .policy-hero-title{
    font-size: 2rem;
  }

  .policy-hero-lead{
    font-size: .95rem;
  }
}
