/**
 * Estilos para banners del Central Banner Manager
 */

.cbm-banner-wrapper {
    display: block;
    margin: 20px 0;
    text-align: center;
}

.cbm-banner-wrapper[class*="cbm-display-"],
.cbm-ajax-placeholder[class*="cbm-display-"] {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cbm-banner-wrapper[class*="cbm-display-"] {
    overflow: hidden;
}

.cbm-banner-wrapper[class*="cbm-display-"] .cbm-banner,
.cbm-banner-wrapper[class*="cbm-display-"] .cbm-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.cbm-banner-wrapper[class*="cbm-display-"] .cbm-banner {
    object-fit: contain;
}

.cbm-banner {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.cbm-banner-link {
    display: inline-block;
    text-decoration: none;
    border: none;
}

.cbm-banner-link img {
    transition: opacity 0.3s ease;
}

.cbm-banner-link:hover img {
    opacity: 0.9;
}

.cbm-auto-banner {
    clear: both;
    width: 100%;
    margin: 24px auto;
}

.cbm-auto-banner-home {
    margin-top: 16px;
    margin-bottom: 24px;
}

.cbm-auto-banner-post {
    margin-top: 24px;
    margin-bottom: 24px;
}

.cbm-auto-banner .cbm-banner-wrapper {
    margin: 0 auto;
}

.cbm-device-mobile {
    display: none;
}

.cbm-device-desktop {
    display: block;
}

.cbm-ajax-placeholder {
    display: block;
    width: 100%;
    margin: 0 auto;
    background: transparent;
}

.cbm-display-300x100 {
    max-width: 300px;
    aspect-ratio: 3 / 1;
}

.cbm-display-300x250 {
    max-width: 300px;
    aspect-ratio: 6 / 5;
}

.cbm-display-728x90 {
    max-width: 728px;
    aspect-ratio: 728 / 90;
}

.cbm-display-970x90 {
    max-width: 970px;
    aspect-ratio: 97 / 9;
}

.cbm-display-970x200 {
    max-width: 970px;
    aspect-ratio: 97 / 20;
}

.cbm-display-300x300 {
    max-width: 300px;
    aspect-ratio: 1 / 1;
}

.cbm-display-300x600 {
    max-width: 300px;
    aspect-ratio: 1 / 2;
}

.cbm-ajax-empty {
    min-height: 0 !important;
}

/* Mensaje de error (solo visible para administradores) */
.cbm-no-banner {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

/* Widget */
.cbm-banner-widget .cbm-banner-wrapper {
    margin: 10px 0;
}

.widget .cbm-banner {
    max-width: 100%;
}

/* Tamaños comunes de banners */
.cbm-size-300x250 {
    max-width: 300px;
    max-height: 250px;
}

.cbm-size-728x90 {
    max-width: 728px;
    max-height: 90px;
}

.cbm-size-160x600 {
    max-width: 160px;
    max-height: 600px;
}

.cbm-size-300x600 {
    max-width: 300px;
    max-height: 600px;
}

.cbm-size-970x90 {
    max-width: 970px;
    max-height: 90px;
}

/* Responsive */
@media (max-width: 768px) {
    .cbm-banner-wrapper {
        margin: 10px 0;
    }

    .cbm-banner {
        max-width: 100% !important;
        height: auto !important;
    }

    .cbm-banner-wrapper[class*="cbm-display-"] .cbm-banner {
        height: 100% !important;
    }

    .cbm-device-desktop {
        display: none;
    }

    .cbm-device-mobile {
        display: block;
    }
}
