/*==================================================*
    TOXINOTAS
    LA TOXICA RADIO
    DISENO EDITORIAL MOBILE
*==================================================*/


/*==================================================*
    SECCION
*==================================================*/

.toxinotas-section {

    width: 100%;

    padding:
        24px
        14px
        28px;

    box-sizing: border-box;

}


/*==================================================*
    CONTENEDOR PRINCIPAL
*==================================================*/

.toxinotas-card {

    position: relative;

    width: 100%;

    height: 300px;

    min-height: 300px;

    display: block;

    padding: 0;

    overflow: hidden;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #0B3D91 0%,
            #05080D 100%
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 22px;

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.42);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/*==================================================*
    HOVER
*==================================================*/

.toxinotas-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.50);

}


/*==================================================*
    CIRCULO DEL LOGO
    EL TAMANO DEL CIRCULO NO CAMBIA
*==================================================*/

.toxinotas-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    z-index: 5;

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 2px;

    background: #FFFFFF;

    border-radius: 50%;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.40);

    overflow: hidden;

}


/*==================================================*
    LOGO
    GRANDE DENTRO DEL CIRCULO
*==================================================*/

.toxinotas-badge img {

    display: block;

    width: 50px;

    height: 50px;

    max-width: none;

    max-height: none;

    object-fit: contain;

}


/*==================================================*
    IMAGEN PRINCIPAL
*==================================================*/

.toxinotas-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    border-radius: 0;

    background: #111111;

}


/*==================================================*
    IMAGEN
*==================================================*/

.toxinotas-image img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: block;

    margin: 0;

    padding: 0;

    object-fit: cover;

    object-position: center;

    transform: none;

    animation: none;

    transition: none;

}


/*==================================================*
    DEGRADADO OSCURO
*==================================================*/

.toxinotas-image::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.04) 25%,
            rgba(0, 0, 0, 0.18) 45%,
            rgba(0, 0, 0, 0.55) 62%,
            rgba(0, 0, 0, 0.86) 78%,
            rgba(0, 0, 0, 0.97) 91%,
            rgba(0, 0, 0, 1) 100%
        );

}


/*==================================================*
    CONTENIDO SOBRE LA IMAGEN
*==================================================*/

.toxinotas-content {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 4;

    width: 100%;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    min-width: 0;

    margin: 0;

    padding:
        18px
        18px
        18px;

}


/*==================================================*
    TITULO
    RECTANGULO AZUL
*==================================================*/

.toxinotas-content h3 {

    position: relative;

    z-index: 1;

    display: inline-block;

    width: fit-content;

    max-width: 100%;

    margin: 0;

    padding:
        4px
        7px;

    box-sizing: border-box;

    background:
        linear-gradient(
            180deg,
            #0B3D91 0%,
            #061B3D 100%
        );

    color: #FFFFFF !important;

    -webkit-text-fill-color: #FFFFFF;

    font-size: 13px;

    font-weight: 900;

    line-height: 1.25;

    letter-spacing: -0.1px;

    text-shadow:
        0 1px 3px
        rgba(0, 0, 0, 0.70);

    border-radius: 2px;

}


/*==================================================*
    SUBTITULO
    FUENTE DELGADA
*==================================================*/

.toxinotas-content p {

    margin:
        8px
        0
        0;

    padding: 0;

    color: #FFFFFF !important;

    -webkit-text-fill-color: #FFFFFF;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.4;

    letter-spacing: 0.1px;

    text-align: left;

    text-shadow:
        0 2px 4px
        rgba(0, 0, 0, 1),

        0 1px 8px
        rgba(0, 0, 0, 1);

}


/*==================================================*
    RESPONSIVE
*==================================================*/

@media (max-width: 480px) {

    .toxinotas-section {

        padding:
            20px
            12px
            25px;

    }


    .toxinotas-card {

        height: 300px;

        min-height: 300px;

        border-radius: 20px;

    }


    /*==============================================*
        IMAGEN
    *==============================================*/

    .toxinotas-image {

        inset: 0;

        width: 100%;

        height: 100%;

    }


    .toxinotas-image img {

        inset: 0;

        width: 100%;

        height: 100%;

        object-fit: cover;

        transform: none;

        animation: none;

        transition: none;

    }


    /*==============================================*
        CIRCULO
    *==============================================*/

    .toxinotas-badge {

        top: 10px;

        left: 10px;

        width: 48px;

        height: 48px;

        padding: 2px;

        border-radius: 50%;

    }


    /*==============================================*
        LOGO GRANDE
    *==============================================*/

    .toxinotas-badge img {

        width: 44px;

        height: 44px;

    }


    /*==============================================*
        CONTENIDO
    *==============================================*/

    .toxinotas-content {

        left: 0;

        right: 0;

        bottom: 0;

        margin: 0;

        padding:
            14px
            16px
            16px;

    }


    /*==============================================*
        TITULO
    *==============================================*/

    .toxinotas-content h3 {

        font-size: 13px;

        line-height: 1.25;

        padding:
            4px
            7px;

        color: #FFFFFF !important;

        -webkit-text-fill-color: #FFFFFF;

    }


    /*==============================================*
        SUBTITULO
    *==============================================*/

    .toxinotas-content p {

        font-size: 10px;

        font-weight: 400;

        line-height: 1.4;

        letter-spacing: 0.1px;

        margin-top: 6px;

        color: #FFFFFF !important;

        -webkit-text-fill-color: #FFFFFF;

    }

}


/*==================================================*
    PANTALLAS MUY PEQUENAS
*==================================================*/

@media (max-width: 360px) {

    .toxinotas-section {

        padding-left: 10px;

        padding-right: 10px;

    }


    /*==============================================*
        TARJETA
    *==============================================*/

    .toxinotas-card {

        height: 280px;

        min-height: 280px;

    }


    /*==============================================*
        IMAGEN
    *==============================================*/

    .toxinotas-image {

        inset: 0;

        width: 100%;

        height: 100%;

    }


    .toxinotas-image img {

        inset: 0;

        width: 100%;

        height: 100%;

        object-fit: cover;

        transform: none;

        animation: none;

        transition: none;

    }


    /*==============================================*
        CIRCULO
    *==============================================*/

    .toxinotas-badge {

        top: 9px;

        left: 9px;

        width: 44px;

        height: 44px;

        padding: 2px;

        border-radius: 50%;

    }


    /*==============================================*
        LOGO GRANDE
    *==============================================*/

    .toxinotas-badge img {

        width: 40px;

        height: 40px;

    }


    /*==============================================*
        CONTENIDO
    *==============================================*/

    .toxinotas-content {

        left: 0;

        right: 0;

        bottom: 0;

        margin: 0;

        padding:
            12px
            14px
            14px;

    }


    /*==============================================*
        TITULO
    *==============================================*/

    .toxinotas-content h3 {

        font-size: 12px;

        line-height: 1.25;

        padding:
            3px
            6px;

        color: #FFFFFF !important;

        -webkit-text-fill-color: #FFFFFF;

    }


    /*==============================================*
        SUBTITULO
    *==============================================*/

    .toxinotas-content p {

        font-size: 9px;

        font-weight: 400;

        line-height: 1.35;

        letter-spacing: 0.1px;

        margin-top: 5px;

        color: #FFFFFF !important;

        -webkit-text-fill-color: #FFFFFF;

    }

}


/*==================================================*
    FIN TOXINOTAS
*==================================================*/