/*==================================================
        LA TOXICA RADIO
        TOXINOTAS WEB / DESKTOP
==================================================*/


/*==================================================
        CONTENEDOR PRINCIPAL
==================================================*/

.toxinotas {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0;
    box-sizing: border-box;
}


/*==================================================
        TITULO DE SECCION
==================================================*/

.toxinotas-web-title {
    display: none;
}


/*==================================================
        TARJETA PRINCIPAL
==================================================*/

.toxinota-web-featured {
    position: relative;

    width: 82%;

    margin: 0 auto;
    padding: 14px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    background: #000000;

    border: 0;
    border-radius: 10px;

    color: #FFFFFF;

    text-decoration: none;

    overflow: hidden;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/*==================================================
        HOVER
==================================================*/

.toxinota-web-featured:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.35);
}


/*==================================================
        IMAGEN
==================================================*/

.toxinota-web-featured-image {
    position: relative;

    width: 100%;

    height: auto;
    min-height: 0;

    margin: 0;
    padding: 0;

    display: block;

    box-sizing: border-box;

    object-fit: contain;
    object-position: center;

    background: transparent;

    border: 0;

    border-radius: 7px;
}


/*==================================================
        ETIQUETA TOXINOTAS
==================================================*/

.toxinota-web-featured::before {
    content: "TOXINOTAS";

    position: absolute;

    top: 22px;
    left: 14px;

    z-index: 5;

    margin: 0;
    padding: 6px 12px;

    display: block;

    box-sizing: border-box;

    background: #000000;

    color: #FFD400;

    font-size: 12px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: 1px;

    text-transform: uppercase;

    border-radius: 0 4px 4px 0;

    box-shadow:
        2px 2px 7px rgba(0, 0, 0, 0.4);
}


/*==================================================
        IMAGEN SIN CONTENIDO
==================================================*/

.toxinota-web-featured-image.no-image {
    min-height: 120px;

    object-fit: contain;

    background: #111111;

    border-radius: 7px;
}


/*==================================================
        CONTENIDO
==================================================*/

.toxinota-web-featured-content {
    width: 100%;

    margin: 14px 0 0 0;
    padding: 0 4px 2px 4px;

    display: block;

    box-sizing: border-box;

    background: transparent;

    border: 0;
}


/*==================================================
        INFORMACION
==================================================*/

.toxinota-web-featured-info {
    width: 100%;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    box-sizing: border-box;

    background: transparent;
}


/*==================================================
        TITULO
==================================================*/

.toxinota-web-featured-title {
    width: 100%;

    margin: 0;
    padding: 0;

    color: #FFFFFF;

    font-size: 19px;
    font-weight: 900;

    line-height: 1.15;

    text-align: left;

    overflow-wrap: anywhere;
}


/*==================================================
        SUBTITULO
==================================================*/

.toxinota-web-featured-subtitle {
    width: 100%;

    margin: 7px 0 0 0;
    padding: 0;

    color: #FFFFFF;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.35;

    text-align: left;

    overflow-wrap: anywhere;
}


/*==================================================
        PANTALLAS HASTA 1100PX
==================================================*/

@media screen and (max-width: 1100px) {

    .toxinotas {
        margin-top: 18px;
    }


    .toxinota-web-featured {
        width: 84%;

        padding: 12px;

        border-radius: 9px;
    }


    .toxinota-web-featured-image {
        border-radius: 6px;
    }


    .toxinota-web-featured::before {
        top: 20px;
        left: 12px;

        padding: 6px 11px;

        font-size: 11px;
    }


    .toxinota-web-featured-content {
        margin-top: 12px;

        padding-left: 3px;
        padding-right: 3px;
    }


    .toxinota-web-featured-title {
        font-size: 18px;
    }


    .toxinota-web-featured-subtitle {
        margin-top: 6px;

        font-size: 11px;
    }
}


/*==================================================
        PANTALLAS HASTA 900PX
==================================================*/

@media screen and (max-width: 900px) {

    .toxinotas {
        margin-top: 16px;
    }


    .toxinota-web-featured {
        width: 86%;

        padding: 10px;

        border-radius: 8px;
    }


    .toxinota-web-featured-image {
        border-radius: 6px;
    }


    .toxinota-web-featured::before {
        top: 18px;
        left: 10px;

        padding: 5px 10px;

        font-size: 10px;
    }


    .toxinota-web-featured-content {
        margin-top: 10px;

        padding-left: 2px;
        padding-right: 2px;
    }


    .toxinota-web-featured-title {
        font-size: 17px;

        line-height: 1.15;
    }


    .toxinota-web-featured-subtitle {
        margin-top: 5px;

        font-size: 11px;

        line-height: 1.3;
    }
}


/*==================================================
        WEB / DESKTOP
==================================================*/

@media screen and (min-width: 768px) {

    .toxinotas {
        display: inline-block;

        vertical-align: top;
    }
}


/*==================================================
        MOVIL
==================================================*/

@media screen and (max-width: 767px) {

    .toxinotas {
        width: 100%;
    }


    .toxinota-web-featured {
        width: 100%;
    }
}