
/* HERO ------------------------------------------------- */
.esg-hero {
  position: relative;
  min-height: 340px;
  padding: 80px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../img/esg-banner.webp");
  background-size: cover;
  background-position: center;
}

.esg-hero__inner {
  max-width: 700px;
}

.esg-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.esg-hero p {
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  opacity: 0.9;
}

.esg-intro {

    max-width: 720px;
    margin: 50px auto 32px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

/* GENERAL LAYOUT --------------------------------------- */
.esg-banner {
  margin: 56px 0;
  text-align: center;
}

.esg-section {
  margin-top: 32px;
}

.esg-section + .esg-section {
  margin-top: 56px;
}

.esg-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 4px;
  text-align: center;
}

.esg-section__subtitle {
  margin: 12px 0 24px;
  text-align: center;
}

/* CARD GRID -------------------------------------------- */
.esg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 100px;
}
.esg-card__list{
  margin: 0 0 12px 1.05rem; /* top 0 so it sits right under title; bottom spacing 12px */
  padding-left: 0;
  font-size: 1.25rem;
  color: var(--color-muted);
  line-height: 1.6;
  list-style: disc;
}

.esg-card__list li{
  margin: 0 0 1rem;
  font-size: 0.95rem;
}


@media (max-width: 900px) {
  .esg-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .esg-card-grid {
    grid-template-columns: 1fr;
  }
  .esg-card__title{ min-height: auto; margin-bottom:8px; }
  .esg-card__list{ margin-bottom:14px; }
}

.esg-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100%;
    box-sizing: border-box;
    background: var(--color-bg-soft);
    padding: 30px 30px 22px;
    border-radius: 4px;
}

.esg-card__title {
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 3rem;
  display: block;   
}

.esg-card p {
  margin: 0 0 6px;
  color: var(--text-muted);
}

/* LEVERS FOR CHANGE ------------------------------------ */
.esg-levers {
  margin-top: 48px;
  padding: 32px 20px 40px;
  text-align: left;
}

.esg-levers__title {
  margin: 50px 0 80px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.esg-levers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .esg-levers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .esg-levers-grid {
    grid-template-columns: 1fr;
  }
}

.lever-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lever-card__image {
  position: relative;
  padding-top: 60%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.lever-card__image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 380ms cubic-bezier(.2,.9,.2,1);
  transform-origin: center center;
  will-change: transform;
}

.lever-card:hover .lever-card__image img,
a.lever-card:focus .lever-card__image img {
  transform: scale(1.08);
}
.lever-card:hover .lever-card__cta {
    color: var(--color-primary);
}


.lever-card__body {
  padding: 16px 16px 18px;
  font-size: 1rem;
}

.lever-card__title {
  font-weight: 600;
  color: var(--color-text);
}

.lever-card__cta {
  margin-top: 8px;
  font-size: 0.75rem;
  text-decoration: none !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-muted);
}


.lever-card__cta span {
  margin-left: 4px;
}

/* Footer spacing */
.esg-page-footer-space {
  height: 60px;
}

/* Remove underline on lever links (cover link states and descendant text) */
a.lever-card,
a.lever-card:link,
a.lever-card:visited,
a.lever-card:hover,
a.lever-card:focus {
  text-decoration: none !important;
  color: inherit;
  outline: none;
}