/**
 * EV Net Zero section — media collage + structured copy.
 * v1.0.4 — three video stills; flex side stack
 */

.ae-ev-net {
  --ae-ev-red: #cc2229;
  --ae-ev-black: #161616;
  --ae-ev-muted: #5b6470;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: stretch;
  width: 100%;
  max-width: var(--site-content-width, 1200px);
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1rem, 3vw, 1.5rem);
  box-sizing: border-box;
}

.ae-ev-net-row > .l-section-h {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.ae-ev-net__media {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 0.75rem;
  align-self: stretch;
  height: 100%;
  min-height: 28rem;
}

.ae-ev-net__shot {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ececec;
  min-height: 0;
  height: 100%;
}

.ae-ev-net__shot--main {
  min-height: 100%;
}

.ae-ev-net__media-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  height: 100%;
  align-self: stretch;
}

.ae-ev-net__shot--side,
.ae-ev-net__shot--third {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  height: auto;
}

.ae-ev-net__img,
.ae-ev-net__shot img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ae-ev-net__badge {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #ececec;
  box-shadow: 0 8px 20px rgba(22, 22, 22, 0.12);
}

.ae-ev-net__badge .ae-ev-net__img,
.ae-ev-net__badge img {
  position: static;
  width: auto;
  max-width: 100%;
  max-height: 3.75rem;
  height: auto;
  object-fit: contain;
}

.ae-ev-net__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.ae-ev-net__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ae-ev-red);
}

.ae-ev-net__title {
  margin: 0 0 1rem;
  color: var(--ae-ev-black);
  font-size: clamp(1.6rem, 2.8vw, 2.05rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.ae-ev-net__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.ae-ev-net__body p {
  margin: 0;
  color: var(--ae-ev-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.ae-ev-net__body strong {
  color: var(--ae-ev-black);
}

.ae-ev-net__facts {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.ae-ev-net__facts li {
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: #f5f5f5;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ae-ev-net__facts strong {
  color: var(--ae-ev-black);
  font-size: 0.92rem;
  font-weight: 700;
}

.ae-ev-net__facts span {
  color: var(--ae-ev-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.ae-ev-net__support {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: #161616;
  color: #fff;
}

.ae-ev-net__support-title {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
}

.ae-ev-net__support-lede {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ae-ev-net__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ae-ev-net__chips li {
  margin: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .ae-ev-net__facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ae-ev-net {
    grid-template-columns: 1fr;
  }

  .ae-ev-net__media {
    height: auto;
    min-height: 18rem;
    grid-template-columns: 1.25fr 0.85fr;
    aspect-ratio: 16 / 10;
  }

  .ae-ev-net__shot--main,
  .ae-ev-net__shot--side,
  .ae-ev-net__shot--third {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 560px) {
  .ae-ev-net__media {
    grid-template-columns: 1fr;
    aspect-ratio: 4 / 5;
    min-height: 22rem;
  }

  .ae-ev-net__badge {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
  }
}
