/* === Base Styling === */
#home-banner::after {
  background: none !important;
  content: none !important;
}

/* Desktop-specific layout (≥1025px) */
@media (min-width: 1025px) {
  #home-banner .container {
    max-width: none;
    margin: 0;
    padding-left: 6vw;
    padding-right: 2vw;
  }

  #home-banner .banner-inner,
  #home-banner .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
}

#home-banner .banner-inner {
  display: flex;
  flex-direction: column;
}

#home-banner .content-wrapper {
  max-width: 100%;
}

#home-banner .home-banner-text h1,
#home-banner .home-banner-text p {
  margin-bottom: 16px;
}

#home-banner .logos_title {
  color: #ffffff !important;
}

#home-banner .logos_section {
  margin-top: 30px;
}

#home-banner .logos_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#home-banner .logo img {
  max-height: 36px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

#home-banner .logo img:hover {
  transform: scale(1.05);
}

#home-banner .banner-links {
  margin-top: 30px;
}

/* === Responsive (Tablet & Mobile ≤1024px) === */
@media (max-width: 1024px) {
  #home-banner {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 750px;
    height: auto;
    padding-top: 140x;
    padding-bottom: 60px;
  }

  #home-banner .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  #home-banner .banner-inner,
  #home-banner .content-wrapper {
    align-items: center;
    text-align: center;
  }

  #home-banner .home-banner-text h1 {
    font-size: 28px;
  }

  #home-banner .logos_wrapper {
    justify-content: center;
    gap: 16px;
    row-gap: 12px;
  }

  #home-banner .logo img {
    max-height: 32px;
    max-width: 80px;
  }

  #home-banner .banner-links {
    margin-top: 30px;
    text-align: center;
  }
/* === Mobile-only overlay for better text contrast (≤768px) === */

/* Base state — hidden by default */
.mobile-hero-overlay {
  display: none;
}

/* Activate overlay on smaller screens only */
@media (max-width: 1024px) {
  .mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
    display: block;
  }

  #home-banner .container {
    position: relative;
    z-index: 2;
  }
}
