.impact-statistics-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  align-items: center;
}
.impact-statistics-header-section {
  gap: var(--space-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-9);
  text-align: center;
}

.impact-statistics-section .text-description {
  margin: 0 auto;
  margin-bottom: var(--space-14);
  max-width: 38.125rem;
}

.impact-statistics-card {
  background-color: var(--bs-primary-25);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: var(--space-20) var(--space-23);
  display: flex;
  position: relative;
  width: 100%;
  min-height: 20.625rem;
  align-items: center;
}

.impact-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
}

.impact-image {
  display: flex;
  width: 100%;
}

.impact-image img {
  object-fit: cover;
  width: 100%;
  object-position: left center;
  height: 100%;
}

.impact-video {
  display: flex;
  width: 100%;
  height: 100%;
}

.impact-video .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
.impact-video .video-wrapper iframe {
  background-color: var(--bs-black);
}

.impact-video .video-wrapper iframe,
.impact-video .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Impact Video Container - Standard pattern */
.impact-video-container {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  transform: scale(1.5);
  overflow: hidden;
}

.impact-video-container .video-wrapper {
  width: 100%;
  height: 100%;
}

.impact-video-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--bs-black);
}

.impact-statistics-card-body {
  position: relative;
  z-index: 22;
}

.impact-statistics-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-10);
  padding: var(--space-9) var(--space-13);
  border-left: 0.1875rem solid var(--bs-success);
}

.impact-statistic-item {
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
}

.statistic-label {
  line-height: var(--line-height-heading);
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* X-Small devices (portrait phones, less than 576px) - Base Styles */
/* Base styles defined above */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .impact-statistics-container {
    gap: var(--space-14);
  }

  .impact-statistics-card {
    min-height: 23.75rem;
  }

  .impact-statistics-list {
    gap: var(--gap-20);
    padding: var(--space-10) var(--space-14);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .impact-statistics-container {
    gap: var(--space-16);
  }

  .impact-statistics-card {
    min-height: 26.25rem;
  }

  .impact-statistics-list {
    gap: var(--gap-20);
    padding: var(--space-11) var(--space-15);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .impact-statistics-container {
    gap: var(--space-18);
  }

  .impact-statistics-card {
    min-height: 28.125rem;
  }

  .impact-statistics-list {
    gap: var(--gap-40);
    padding: var(--space-12) var(--space-16);
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .impact-statistics-container {
    gap: var(--space-20);
  }

  .impact-statistics-card {
    min-height: 30rem;
  }

  .impact-statistics-list {
    gap: var(--gap-40);
    padding: var(--space-13) var(--space-18);
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .impact-statistics-container {
    gap: var(--space-22);
  }

  .impact-statistics-card {
    min-height: 31.25rem;
  }

  .impact-statistics-list {
    gap: var(--gap-30);
    padding: var(--space-14) var(--space-20);
  }
}

/* XXX-Large devices (1600px and up) */
@media (min-width: 1600px) {
  /* Inherits from 1400px and up */
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .impact-statistics-card {
    transition: none;
  }
}
