

               @media (min-width: 1024px) {
       section.secciondestacado article {
           flex-basis: 50% !important;
       }
   }

   .div-alto {
       padding: 0px 0px 0px 0px;
   }

   .secciondestacado {
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
   }
   .overlay-box {
    transition: all 0.3s ease;
}

.overlay-box:hover {
    background: linear-gradient(
        180deg,
        #000000 0%,
        #4a0000 40%,
        #cb0505 100%
    );
    box-shadow: 0 21px 24px rgba(203, 5, 5, 0.35);
    transform: translateY(-4px);
}

/* ===============================
   TITULO PRINCIPAL
================================ */
.titulobloquedestacado {
    display: block;
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
    color: #fff;
    font-size: 60px;
}

/* ===============================
   TABLA DE NOTAS
================================ */
.nota-tabla {
    width: 100%;
    border-collapse: collapse;
}

.td-title {
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.35;
    display: block;
}

/* Imagen */
.nota-img img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .titulobloquedestacado {
        font-size: 38px;
    }
    .td-title {
    font-size: 15px;
}
}
/* ===============================
   DESKTOP
================================ */
@media (min-width: 769px) {
    .nota-tabla td.nota-img {
        width: 40%;
        padding: 10px;
        vertical-align: middle;
    }

    .nota-tabla td.nota-txt {
        width: 60%;
        padding: 10px;
        text-align: left;
        vertical-align: middle;
    }
}

/* ===============================
   MÓVIL (iPhone / Android)
================================ */
@media (max-width: 768px) {

    .nota-tabla tr {
        display: block;
        margin-bottom: 16px;
    }

    .nota-tabla td.nota-img {
        padding-bottom: 6px;
    }
    .nota-tabla td.nota-txt {
        text-align: left;
        font-size: 14px;
        line-height: 1.4;
    }
     #seccion_destacadas .nota-tabla td.nota-img img {
        width: 100% !important;
        height: 86px !important;
        min-height: 86px !important;
        max-height: 86px !important;
        object-fit: cover;
    }
}

/* ===============================
   OVERLAY DESTACADO
================================ */
.secciondestacado {
    position: relative;
}

.div-alto {
    padding-top: 0;
}

/* Desktop overlay */
.overlay-info {
    position: absolute;
    top: 97%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

/* Botón desktop */
.overlay-btn {
    display: inline-block;
    background: #e12b1f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 90px;
    font-size: 18px;
    white-space: nowrap;
}

/* ===============================
   OVERLAY MÓVIL
================================ */
.overlay-info-movil {
    display: none;
}

@media (max-width: 768px) {
    .div-alto {
        padding-top: 70%;
    }

    .overlay-info {
        display: none;
    }

    .overlay-info-movil {
        display: block;
        position: absolute;
        right: 0;
        transform: translateY(-50%);
        z-index: 10;
        padding-bottom: 31px;
    }

    .overlay-btn-movil {
        display: inline-block;
        background: #e12b1f;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        padding: 8px 31px;
        font-size: 12px;
        white-space: nowrap;
    }
}