@charset "utf-8";
/* CSS Document */
/* =========================================
   ENCABEZADO ÚLTIMAS NOTICIAS
========================================= */

.anq-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 4px 0 5px;

    border-bottom: 1px solid #e5e5e5;
}


/* TÍTULO */

.anq-news-header__titulo {
    position: relative;

    padding-left: 10px;

    color: #111;

    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;

    text-transform: uppercase;
}


/* Línea roja */

.anq-news-header__titulo::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 15px;

    background: #d71920;

    transform: translateY(-50%);
}


/* ENLACE */

.anq-news-header__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #333;

    font-size: 0.85rem;
    font-weight: 400;

    text-decoration: none;

    transition: color .2s ease;
}

.anq-news-header__link i {
    font-size: 9px;
}

.anq-news-header__link:hover {
    color: #d71920;
}

/* ==========================================
   ÚLTIMAS NOTICIAS - TABS
========================================== */

.anq-news-tabs {
    display: flex;
    align-items: center;
    gap: 6px;

    margin: 0 0 25px 0;
    padding: 0;

    list-style: none;

    border-bottom: 1px solid #e5e5e5;

    overflow-x: auto;
    scrollbar-width: none;
}

.anq-news-tabs::-webkit-scrollbar {
    display: none;
}


/* TAB */

.anq-news-tabs__item {
    position: relative;

    padding: 11px 18px;

    font-size: 14px;
    font-weight: 600;
    color: #666;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease,
        background-color .25s ease;
}


/* Línea inferior */

.anq-news-tabs__item::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -1px;

    height: 3px;

    background: transparent;

    transition: all .25s ease;
}


/* Hover */

.anq-news-tabs__item:hover {
    color: #111;
}


/* TAB ACTIVO */

.anq-news-tabs__item.active {
    color: #d71920;
}

.anq-news-tabs__item.active::after {
    background: #d71920;
}


/* ==========================================
   CONTENIDO
========================================== */

#data_information {
    min-height: 150px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 575.98px) {

    .anq-news-tabs {
        gap: 2px;
        margin-bottom: 20px;
    }

    .anq-news-tabs__item {
        padding: 10px 14px;
        font-size: 13px;
    }

    .anq-news-tabs__item::after {
        left: 10px;
        right: 10px;
    }

}

/* =========================================================
   ANQARA - GRID ÚLTIMAS NOTICIAS
========================================================= */

.anq-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================================
   CARD
========================================================= */

.anq-news-card {
    min-width: 0;
}


/* =========================================================
   IMAGEN
========================================================= */

.anq-news-card__image {
    position: relative;

    width: 100%;
    height: 160px;

    overflow: hidden;

    border-radius: 7px;
}


.anq-news-card__image a {
    display: block;
    width: 100%;
    height: 100%;
}


.anq-news-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}


.anq-news-card:hover .anq-news-card__image img {
    transform: scale(1.04);
}


/* =========================================================
   CATEGORÍA
========================================================= */

.anq-news-card__category {
    position: absolute;

    left: 0;
    bottom: 0;

    padding: 8px 18px;

    color: #fff;

    font-size: 0.7rem;
    font-weight: 600;

    line-height: 1;

    border-radius: 0 5px 0 0;
}


/* Colores por categoría */

.anq-news-card__category--local {
    background: #df1e26;
}

.anq-news-card__category--nacional {
    background: #1478d4;
}

.anq-news-card__category--regional {
    background: #f28b00;
}

.anq-news-card__category--politica {
    background: #df1e26;
}

.anq-news-card__category--deporte {
    background: #269b43;
}

.anq-news-card__category--internacional {
    background: #7135d1;
}


/* =========================================================
   CONTENIDO
========================================================= */

.anq-news-card__content {
    padding-top: 12px;
}


/* =========================================================
   TÍTULO
========================================================= */

.anq-news-card__title {
    margin: 0 0 12px;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.3;

    color: #172235;
}


.anq-news-card__title a {
    color: inherit;
    text-decoration: none;

    transition: color .25s ease;
}


.anq-news-card__title a:hover {
    color: #df1e26;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.anq-news-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    color: #788493;

    font-size: 13px;
}


.anq-news-card__meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}


.anq-news-card__meta i {
    font-size: 14px;
}


.anq-news-card__separator {
    width: 1px;
    height: 15px;

    background: #cdd2d8;
}


/* =========*

/* =====================================================
   ANUNCIO - NOTICIAS
===================================================== */

.anq-news-ad {
    position: relative;

    width: 100%;
    min-height: 170px;

    display: flex;
    align-items: center;

    padding: 25px 20px;

    overflow: hidden;

    background: #f4f5f6;

    border-radius: 5px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);

    border-left: 4px solid #d71920;

    isolation: isolate;
}


/* =====================================================
   BRILLO ANIMADO
===================================================== */

.anq-news-ad::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );

    transform: skewX(-20deg);

    animation: anq-news-ad-shine 5s ease-in-out infinite;

    z-index: -1;
}

@keyframes anq-news-ad-shine {

    0% {
        left: -120%;
    }

    35% {
        left: 150%;
    }

    100% {
        left: 150%;
    }

}


/* =====================================================
   ICONO
===================================================== */

.anq-news-ad__icon {
    position: relative;

    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    color: #d71920;

    font-size: 43px;

    animation: anq-news-ad-megaphone 2.8s ease-in-out infinite;
}


/* ondas del megáfono */

.anq-news-ad__icon::after {
    content: "";

    position: absolute;

    width: 55px;
    height: 55px;

    border: 2px solid rgba(215, 25, 32, .25);

    border-radius: 50%;

    animation: anq-news-ad-pulse 2s ease-out infinite;
}


@keyframes anq-news-ad-megaphone {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-8deg);
    }

    20% {
        transform: rotate(8deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    40% {
        transform: rotate(0deg);
    }

}


@keyframes anq-news-ad-pulse {

    0% {
        transform: scale(.7);
        opacity: .8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }

}


/* =====================================================
   CONTENIDO
===================================================== */

.anq-news-ad__content {
    position: relative;
    z-index: 2;
}


/* =====================================================
   TITULO
===================================================== */

.anq-news-ad__title {
    margin: 0 0 5px;

    color: #d71920;

    font-size: 21px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .3px;
}


/* =====================================================
   TEXTO
===================================================== */

.anq-news-ad__text {
    margin: 0 0 13px;

    color: #222;

    font-size: 12px;
    line-height: 1.35;
}


/* =====================================================
   BOTÓN
===================================================== */

.anq-news-ad__button {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 11px;

    color: #fff;
    background: #d71920;

    border-radius: 3px;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.anq-news-ad__button i {
    font-size: 10px;

    transition: transform .25s ease;
}


.anq-news-ad__button:hover {
    color: #fff;

    background: #b9141a;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(215, 25, 32, .25);
}


.anq-news-ad__button:hover i {
    transform: translateX(3px);
}


/* =====================================================
   ELEMENTOS DECORATIVOS
===================================================== */

.anq-news-ad__decor {
    position: absolute;

    border-radius: 50%;

    background: #d71920;

    opacity: .12;

    z-index: -1;
}


.anq-news-ad__decor--1 {
    width: 90px;
    height: 90px;

    right: -35px;
    top: -40px;

    animation: anq-news-ad-float 5s ease-in-out infinite;
}


.anq-news-ad__decor--2 {
    width: 35px;
    height: 35px;

    right: 45px;
    bottom: -18px;

    animation: anq-news-ad-float 4s ease-in-out infinite reverse;
}


.anq-news-ad__decor--3 {
    width: 15px;
    height: 15px;

    right: 25px;
    top: 35px;

    animation: anq-news-ad-float 3s ease-in-out infinite;
}


@keyframes anq-news-ad-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .anq-news-ad {
        margin-top: 25px;
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 575.98px) {

    .anq-news-ad {
        min-height: 150px;

        padding: 20px 18px;
    }

    .anq-news-ad__icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        margin-right: 12px;

        font-size: 37px;
    }

    .anq-news-ad__title {
        font-size: 19px;
    }

    .anq-news-ad__text {
        font-size: 11px;
    }

}