/* Hedgehog Final Banner CSS */

.hedgehog-final-slider {
    width: 100%;
    max-width: 100vw;
    display: block;
    position: relative;
    background-color: transparent;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    left: 0;

    aspect-ratio: 3 / 1;
    height: auto;
    min-height: 33vw; /* fallback if aspect-ratio not supported */
}

.hedgehog-final-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-color: transparent;
}

.hedgehog-final-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

@media (max-width: 767px) {
  .hedgehog-final-slider {
    aspect-ratio: 3 / 1; /* Keep fixed ratio for CLS */
    max-height: 60vw;
    min-height: 180px;
    height: auto;
  }

  .hedgehog-final-slider .slide img {
    object-fit: contain;
    object-position: center top;
  }
}

/* Global Reset */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
