/**
 * Top Banner Frontend Styles
 *
 * Responsive banner display with 2000px max-width constraint
 *
 * @package ReviveTopBanners
 * @version 1.0.0
 */

/* ================================
   Banner Wrapper
   ================================ */
.topbanner-wrapper {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto 20px;
    overflow: hidden;
}

/* ================================
   Picture Element
   ================================ */
.topbanner-picture {
    display: block;
    width: 100%;
    height: auto;
}

/* ================================
   Banner Image
   ================================ */
.topbanner-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* ================================
   Responsive Behavior
   ================================ */

/* Desktop: Full width up to 2000px */
@media screen and (min-width: 768px) {
    .topbanner-wrapper {
        padding: 0;
    }
}

/* Mobile: Full width */
@media screen and (max-width: 767px) {
    .topbanner-wrapper {
        margin-bottom: 16px;
    }

    .topbanner-image {
        object-fit: cover;
    }
}

/* ================================
   Loading State (optional)
   ================================ */
.topbanner-image[loading="lazy"] {
    background: #f0f0f0;
    min-height: 100px;
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .topbanner-wrapper {
        display: none;
    }
}
