/* ==========================================================================
   MEXNOTICIAS - FOOTER STYLESHEET
   ========================================================================== */

.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 20px 25px 20px;
    font-family: 'Roboto', sans-serif;
    border-top: 1px solid #111111;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 30px;
    align-items: center;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
}

/* COLUMNA 1: LOGO */
.site-footer__col-logo {
    align-items: flex-start;
}

.site-footer__logo-img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* COLUMNA 2: CENTRO */
.site-footer__col-center {
    align-items: center;
    text-align: center;
    gap: 12px;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-footer__ezoic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.site-footer__ezoic-badge .ezoic-logo-icon {
    font-weight: 700;
    font-size: 14px;
}

.site-footer__ezoic-badge .ezoic-separator {
    color: #555555;
}

.site-footer__address {
    font-size: 11px;
    color: #cccccc;
    line-height: 1.4;
    max-width: 500px;
}

/* COLUMNA 3: ENLACES LEGALES */
.site-footer__col-links {
    align-items: flex-end;
}

.site-footer__legal-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.site-footer__legal-menu a {
    color: #58d0f5 !important;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__legal-menu a:hover {
    color: #ffffff !important;
}

/* ANUNCIO EZOIC INFERIOR DEBAJO DEL FOOTER */
.site-footer__bottom-ad-slot {
    width: 100%;
    max-width: 970px;
    min-height: 90px;
    margin: 20px auto 30px auto;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.site-footer__bottom-ad-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1023px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .site-footer__col-logo,
    .site-footer__col-links {
        align-items: center;
    }

    .site-footer__legal-menu {
        text-align: center;
    }
}