/* ========================
   Logo Hero Media Section
   ======================== */

.logo-hero-media-section .section-header {
  margin-bottom: var(--space-22);
  text-align: center;
}

.logo-hero-media-section .section-description {
  max-width: 57.5rem;
  margin: 0 auto;
}

.logo-hero-media-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.logo-hero-media-section .hero-media {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  background-color: var(--bs-black);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  overflow: hidden;
}

.logo-hero-media-section .hero-media-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Logo Hero Video Container */
.logo-hero-video-container {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  transform: scale(1.5);
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  background-color: var(--bs-black);
}

.logo-hero-video-container .video-wrapper {
  width: 100%;
  height: 100%;
}

.logo-hero-video-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--bs-black);
}

.video-container {
  width: 100%;
  height: 100%;
  transform: scale(1.5);
  overflow: hidden;
}

.video-container .video-wrapper {
  width: 100%;
  height: 100%;
}

.video-container .video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--bs-black);
}

.logo-listing {
  width: 100%;
  background-color: var(--bs-primary-25);
  padding: var(--space-20);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
}

.logo-listing-container {
  background-color: var(--bs-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-13) var(--space-4);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: var(--space-21);
  width: 100%;
  max-width: 73.75rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 3.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* X-Small devices (portrait phones, less than 576px) - Default/Base Styles */
/* Base styles defined above */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .logo-hero-media-section .section-header {
    margin-bottom: var(--space-18);
  }

  .logo-listing {
    padding: var(--space-16);
    gap: var(--space-3);
  }

  .logo-listing-container {
    padding: var(--space-8) var(--space-2);
    gap: var(--space-14);
  }

  .logo-item img {
    max-height: 3.4375rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .logo-hero-media-section .section-header {
    margin-bottom: var(--space-20);
  }

  .logo-listing {
    padding: var(--space-18);
    gap: var(--space-5);
  }

  .logo-listing-container {
    display: flex;
    flex-direction: row;
    padding: var(--space-9) var(--space-3);
    gap: var(--space-17);
  }

  .logo-item img {
    max-height: 4.0625rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .logo-hero-media-section .section-header {
    margin-bottom: var(--space-21);
  }

  .logo-listing {
    padding: var(--space-19);
    gap: var(--space-6);
  }

  .logo-listing-container {
    flex-direction: row;
    padding: var(--space-11) var(--space-4);
    gap: var(--space-19);
  }

  .logo-item img {
    max-height: 4.375rem;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .logo-hero-media-section .section-header {
    margin-bottom: var(--space-22);
  }

  .logo-listing {
    padding: var(--space-20);
  }

  .logo-listing-container {
    flex-direction: row;
    padding: var(--space-13) var(--space-4);
    gap: var(--space-21);
  }

  .logo-item img {
    max-height: 4.6875rem;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .logo-hero-media-section .section-header {
    margin-bottom: var(--space-23);
  }

  .logo-listing-container {
    flex-direction: row;
    padding: var(--space-14) var(--space-5);
  }

  .logo-item img {
    max-height: 4.375rem;
  }
}

/* XXX-Large devices (1600px and up) */
@media (min-width: 1600px) {
  /* Inherits from 1400px and up */
}
