/**
 * MODULE: Footer Test
 * Purpose: Estilos del footer modular exclusivo para front-test.php
 * WARNING: No override global layout here.
 */

/* Padding lateral consistente con wrapper del single */
.sde-footer-test {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .sde-footer-test {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Separadores */
.sde-footer-sep {
    border: none;
    height: 2px;
    background: #000;
    margin: 0 0 6px 0;
}

/* Título */
.sde-footer-title {
    font-family: "MJRT BLACK", "MJRT", serif;
    font-size: 28px;
    font-weight: 900;
    margin: 40px 0 30px 0;
    color: #000 !important;
}

/* Grid 2 columnas */
.sde-footer-popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Columna */
.sde-footer-popular-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Item */
.sde-footer-popular-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 14px;
}

.sde-footer-popular-item:last-child {
    margin-bottom: 0;
}

.sde-footer-popular-item a {
    font-family: "MJRT BLACK", "MJRT", serif;
    font-weight: 900;
    color: #000 !important;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
}

.sde-footer-popular-item a:hover {
    text-decoration: underline;
}

.sde-footer-popular-number {
    font-weight: 700;
    flex-shrink: 0;
}

.sde-footer-item-sep {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
    margin: 0;
    border: none;
}

/* Footer final */
.sde-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

.sde-footer-copy {
    font-family: "MJRT BLACK", "MJRT", serif;
    font-weight: 900;
    font-size: 16px;
    color: #000;
}

.sde-footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sde-footer-social a {
    color: #EC3335 !important;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sde-footer-social a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .sde-footer-popular-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sde-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .sde-footer-social {
        justify-content: center;
    }
}

