/*==================================================
    LA TOXICA RADIO
    PROMOCIONES WEB
    VERSION DESKTOP
==================================================*/

.promociones-web {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 40px);
    margin: 55px 0 0 24px;
    padding: 0 0 50px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
}

.promociones-web::before {
    content: "PROMOCIONES";
    display: block;
    width: 100%;
    height: 33px;
    margin: 0 0 24px;
    padding: 0 0 0 14px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 33px;
    text-transform: uppercase;
    color: #0B3D91;
    border-left: 7px solid #FFD400;
}

.promociones-web:empty {
    min-height: 320px;
    padding: 30px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(8, 21, 38, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.promocion-web-card {
    width: 100%;
    min-width: 0;
    margin: 0 0 20px;
    padding: 0;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(8, 21, 38, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.promocion-web-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.promocion-web-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    background: #081526;
}

.promocion-web-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #081526;
    transition: transform 0.3s ease;
}

.promocion-web-card:hover .promocion-web-card-image img {
    transform: scale(1.02);
}

.promocion-web-card-content {
    width: 100%;
    padding: 20px 22px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.promocion-web-category {
    display: inline-block;
    width: fit-content;
    margin: 0 0 10px;
    padding: 5px 8px;
    box-sizing: border-box;
    background: #FFD400;
    color: #081526;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 3px;
}

.promocion-web-title {
    margin: 0 0 10px;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.18;
    color: #081526;
}

.promocion-web-description {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #4E5C6D;
}

.promocion-web-link {
    display: inline-block;
    width: fit-content;
    margin-top: 16px;
    padding: 9px 14px;
    box-sizing: border-box;
    background: #0B3D91;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.promocion-web-link:hover {
    background: #081526;
    transform: translateY(-1px);
}

.promociones-web-empty {
    width: 100%;
    min-height: 240px;
    margin: 0;
    padding: 40px 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid rgba(8, 21, 38, 0.08);
    border-radius: 10px;
    color: #5C6875;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.promociones-web-error {
    width: 100%;
    margin: 0;
    padding: 40px 25px;
    box-sizing: border-box;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid rgba(255, 49, 49, 0.20);
    border-radius: 10px;
    color: #FF3131;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {

    .promociones-web {
        width: calc(50% - 40px);
        margin: 55px 0 0 20px;
    }

    .promociones-web::before {
        height: 29px;
        margin-bottom: 20px;
        padding-left: 12px;
        font-size: 26px;
        line-height: 29px;
        border-left-width: 6px;
    }

    .promocion-web-card-content {
        padding: 17px 18px 20px;
    }

    .promocion-web-title {
        font-size: 18px;
    }

    .promocion-web-description {
        font-size: 12px;
    }
}

@media screen and (min-width: 1400px) {

    .promociones-web {
        width: calc(50% - 40px);
        margin: 55px 0 0 24px;
    }

    .promociones-web::before {
        height: 33px;
        margin-bottom: 24px;
        font-size: 30px;
        line-height: 33px;
        border-left-width: 7px;
    }

    .promocion-web-card-content {
        padding: 20px 22px 24px;
    }

    .promocion-web-title {
        font-size: 21px;
    }

    .promocion-web-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {

    .promociones-web {
        display: none;
    }
}