/*==================================================
    LA TOXICA NOTICIAS
    LA TOXICA RADIO
    EDITORIAL MOBILE
==================================================*/


/*==================================================
    RESET
==================================================*/

* {
    box-sizing: border-box;
}


html {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}


body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;

    background: #F4F5F7;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}


/*==================================================
    PAGINA EDITORIAL
==================================================*/

.editorial-page {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    background: #F4F5F7;
}


/*==================================================
    HEADER
==================================================*/

.editorial-header {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    background: #0B3D91;

    color: #FFFFFF;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.16);
}


/*==================================================
    FRANJA SUPERIOR
==================================================*/

.editorial-header::before {
    content: "";

    display: block;

    width: 100%;
    height: 5px;

    background: #FFD400;
}


/*==================================================
    BOTON VOLVER
==================================================*/

.editorial-back {
    position: absolute;

    top: 20px;
    left: 14px;

    z-index: 10;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 34px;

    padding:
        8px
        10px;

    background:
        rgba(0, 0, 0, 0.22);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 9px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.4px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 4px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.editorial-back:hover {
    background: #FFD400;

    color: #000000;

    transform:
        translateY(-1px);
}


.editorial-back:active {
    transform:
        translateY(0);
}


/*==================================================
    LOGO
==================================================*/

.editorial-logo {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;

    padding:
        22px
        0
        8px;
}


.editorial-logo img {
    display: block;

    width: 88px;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}


/*==================================================
    TITULO EDITORIAL
==================================================*/

.editorial-title {
    width: 100%;

    margin: 0;

    padding:
        0
        15px
        24px;

    text-align: center;
}


/*==================================================
    ETIQUETA
==================================================*/

.editorial-title-label {
    display: inline-block;

    margin:
        0
        0
        8px;

    padding:
        5px
        9px;

    background: #FFD400;

    color: #000000;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    line-height: 1;

    border-radius: 2px;
}


/*==================================================
    TITULO PRINCIPAL
==================================================*/

.editorial-title h1 {
    width: 100%;

    margin: 0;

    padding: 0;

    color: #FFFFFF;

    font-size: 30px;

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -0.7px;
}


/*==================================================
    SUBTITULO
==================================================*/

.editorial-title p {
    margin:
        8px
        0
        0;

    padding: 0;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 11px;

    font-weight: 400;

    line-height: 1.4;
}


/*==================================================
    CONTENIDO PRINCIPAL
==================================================*/

.editorial-main {
    width: 100%;
    max-width: 760px;

    margin:
        0
        auto;

    padding:
        18px
        12px
        40px;
}


/*==================================================
    ENCABEZADO DE SECCION
==================================================*/

.editorial-news {
    width: 100%;

    margin: 0;
    padding: 0;
}


/*==================================================
    LINEA EDITORIAL
==================================================*/

.editorial-news::before {
    content: "";

    display: block;

    width: 100%;
    height: 3px;

    margin:
        0
        0
        16px;

    background:
        linear-gradient(
            90deg,
            #0B3D91 0%,
            #0B3D91 75%,
            #FFD400 75%,
            #FFD400 100%
        );
}


/*==================================================
    TARJETA PRINCIPAL
==================================================*/

.editorial-news-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    margin: 0;
    padding: 0;

    background: #FFFFFF;

    border:
        1px solid
        #E1E4E8;

    border-radius: 0;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.08);
}


/*==================================================
    IMAGEN DE NOTICIA
==================================================*/

.editorial-news-image {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #D9DDE2;
}


.editorial-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;

    object-position: center;
}


/*==================================================
    OVERLAY DE IMAGEN
==================================================*/

.editorial-news-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.30) 100%
        );
}


/*==================================================
    PLACEHOLDER
==================================================*/

.editorial-news-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0B3D91,
            #081526
        );

    color: #FFD400;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 1px;
}


/*==================================================
    CONTENIDO DE NOTICIA
==================================================*/

.editorial-news-content {
    width: 100%;

    margin: 0;

    padding:
        18px
        18px
        24px;

    background: #FFFFFF;
}


/*==================================================
    CATEGORIA
==================================================*/

.editorial-news-category {
    display: inline-block;

    margin:
        0
        0
        10px;

    padding:
        5px
        8px;

    background: #0B3D91;

    color: #FFFFFF;

    font-size: 8px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.8px;

    border-left:
        3px solid
        #FFD400;
}


/*==================================================
    TITULAR
==================================================*/

.editorial-news-content h2 {
    width: 100%;

    margin:
        0
        0
        11px;

    padding: 0;

    color: #111111;

    font-size: 24px;

    font-weight: 900;

    line-height: 1.12;

    letter-spacing: -0.5px;
}


/*==================================================
    RESUMEN
==================================================*/

.editorial-news-summary {
    width: 100%;

    margin:
        0
        0
        20px;

    padding:
        0
        0
        16px;

    color: #4A4F55;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.55;

    border-bottom:
        1px solid
        #E5E7EA;
}


/*==================================================
    CUERPO DE LA NOTICIA
==================================================*/

.editorial-news-body {
    width: 100%;

    margin: 0;
    padding: 0;
}


/*==================================================
    PARRAFOS
==================================================*/

.editorial-news-body p {
    width: 100%;

    margin:
        0
        0
        16px;

    padding: 0;

    color: #292D32;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;

    text-align: left;
}


/*==================================================
    PRIMER PARRAFO
==================================================*/

.editorial-news-body p:first-child::first-letter {
    float: left;

    margin:
        4px
        7px
        0
        0;

    color: #0B3D91;

    font-size: 38px;

    font-weight: 900;

    line-height: 0.8;
}


/*==================================================
    ULTIMO PARRAFO
==================================================*/

.editorial-news-body p:last-child {
    margin-bottom: 0;
}


/*==================================================
    FIN DE LA NOTA
==================================================*/

.editorial-news-end {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        25px
        0
        18px;
}


/*==================================================
    LINEA IZQUIERDA
==================================================*/

.editorial-news-end::before {
    content: "";

    flex: 1;

    height: 1px;

    background: #D8DCE1;
}


/*==================================================
    LINEA DERECHA
==================================================*/

.editorial-news-end::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #D8DCE1;
}


/*==================================================
    TEXTO FIN
==================================================*/

.editorial-news-end span {
    display: block;

    flex-shrink: 0;

    color: #7A8087;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;

    text-align: center;
}


/*==================================================
    FUENTE
==================================================*/

.editorial-news-source {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    margin: 0;

    padding:
        9px
        0
        0;

    border-top:
        1px solid
        #E5E7EA;
}


/*==================================================
    ETIQUETA FUENTE
==================================================*/

.editorial-news-source span {
    display: block;

    color: #8A9097;

    font-size: 6px;

    font-weight: 700;

    letter-spacing: 0.6px;

    line-height: 1.1;
}


/*==================================================
    NOMBRE FUENTE
==================================================*/

.editorial-news-source strong {
    display: block;

    color: #0B3D91;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 0.3px;

    line-height: 1.1;
}


/*==================================================
    ENLACE
==================================================*/

.editorial-news-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 36px;

    margin-top: 18px;

    padding:
        9px
        13px;

    background: #0B3D91;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 9px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.3px;

    border-radius: 2px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.editorial-news-link:hover {
    background: #082E6E;

    transform:
        translateY(-1px);
}


.editorial-news-link:active {
    transform:
        translateY(0);
}


/*==================================================
    FOOTER
==================================================*/

.editorial-footer {
    width: 100%;

    margin: 0;

    padding:
        20px
        12px
        30px;

    text-align: center;

    background: #081526;

    border-top:
        4px solid
        #FFD400;
}


.editorial-footer p {
    margin: 0;
    padding: 0;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.3px;
}


/*==================================================
    MOVILES PEQUEÑOS
==================================================*/

@media (max-width: 360px) {

    .editorial-back {
        top: 17px;
        left: 10px;

        min-height: 32px;

        padding:
            7px
            9px;

        font-size: 8px;
    }


    .editorial-logo {
        padding-top: 20px;
    }


    .editorial-logo img {
        width: 78px;
    }


    .editorial-title {
        padding:
            0
            12px
            21px;
    }


    .editorial-title h1 {
        font-size: 26px;
    }


    .editorial-title p {
        font-size: 10px;
    }


    .editorial-main {
        padding:
            15px
            10px
            35px;
    }


    .editorial-news-image {
        height: 205px;
    }


    .editorial-news-content {
        padding:
            16px
            15px
            21px;
    }


    .editorial-news-content h2 {
        font-size: 21px;
    }


    .editorial-news-summary {
        font-size: 12px;
    }


    .editorial-news-body p {
        font-size: 13px;
        line-height: 1.7;
    }


    /*==============================================
        REFERENCIA FINAL - MOVIL PEQUENO
    ==============================================*/

    .editorial-news-source {
        gap: 6px;

        padding-top: 8px;
    }


    .editorial-news-source span {
        font-size: 5px;

        letter-spacing: 0.5px;
    }


    .editorial-news-source strong {
        font-size: 6px;

        letter-spacing: 0.2px;
    }

}


/*==================================================
    PANTALLAS MAYORES
==================================================*/

@media (min-width: 481px) {

    .editorial-logo {
        padding-top: 26px;
    }


    .editorial-logo img {
        width: 100px;
    }


    .editorial-title {
        padding:
            0
            20px
            28px;
    }


    .editorial-title h1 {
        font-size: 36px;
    }


    .editorial-title p {
        font-size: 12px;
    }


    .editorial-main {
        padding:
            25px
            20px
            50px;
    }


    .editorial-news-image {
        height: 340px;
    }


    .editorial-news-content {
        padding:
            24px
            25px
            32px;
    }


    .editorial-news-content h2 {
        font-size: 30px;
    }


    .editorial-news-summary {
        font-size: 14px;
    }


    .editorial-news-body p {
        font-size: 15px;
        line-height: 1.8;
    }


    /*==============================================
        REFERENCIA FINAL - PANTALLAS MAYORES
    ==============================================*/

    .editorial-news-source {
        gap: 7px;

        padding-top: 9px;
    }


    .editorial-news-source span {
        font-size: 6px;

        letter-spacing: 0.6px;
    }


    .editorial-news-source strong {
        font-size: 7px;

        letter-spacing: 0.25px;
    }

}


/*==================================================
    FIN LA TOXICA NOTICIAS
==================================================*/