@charset "utf-8";
/* CSS Document */
/* =========================================================
   ANQARA - DETALLE DE NOTICIA
========================================================= */
@charset "utf-8";

/* =========================================================
   ANQARA - DETALLE DE NOTICIA
========================================================= */

.anq-news-detail {
    width: 100%;
}


/* =========================================================
   CABECERA DEL ARTÍCULO
========================================================= */

.anq-news-detail__header {
    margin-bottom: 25px;
}


/* =========================================================
   CATEGORÍA
========================================================= */

.anq-news-detail__categoria {
    display: inline-flex;
    align-items: center;

    padding: 7px 16px;
    margin-bottom: 14px;

    background: #df1e26;
    color: #fff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;
}


/* =========================================================
   TÍTULO
========================================================= */

.anq-news-detail__titulo {
    margin: 0;

    color: #172235;

    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;

    line-height: 1.08;
}


/* =========================================================
   RESUMEN
========================================================= */

.anq-news-detail__resumen {
    max-width: 900px;

    margin: 18px 0 20px;

    color: #596577;

    font-size: 19px;
    line-height: 1.55;
}


/* =========================================================
   METADATOS
========================================================= */

.anq-news-detail__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    color: #697586;

    font-size: 14px;
}

.anq-news-detail__meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.anq-news-detail__meta i {
    color: #172235;
    font-size: 15px;
}


/* =========================================================
   COMPARTIR
========================================================= */

.anq-news-detail__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;
}

.anq-news-detail__share-label {
    margin-right: 5px;

    color: #596577;

    font-size: 14px;
    font-weight: 600;
}

.anq-news-detail__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 40px;

    padding: 0 15px;

    border: 0;
    border-radius: 5px;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.anq-news-detail__share-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    opacity: .9;
}

.anq-news-detail__share-btn--facebook {
    background: #1877f2;
}

.anq-news-detail__share-btn--x {
    background: #111;
}

.anq-news-detail__share-btn--whatsapp {
    background: #25d366;
}

.anq-news-detail__share-btn--telegram {
    background: #229ed9;
}

.anq-news-detail__share-btn--copy {
    background: #687589;
}


/* =========================================================
   GALERÍA
========================================================= */

.anq-news-detail__gallery {
    width: 100%;
    margin-top: 25px;
}

.anq-news-detail__gallery-wrapper {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 7px;

    background: #edf0f4;
}

.anq-news-detail__slide {
    display: none;

    width: 100%;
}

.anq-news-detail__slide.active {
    display: block;
}

.anq-news-detail__image {
    display: block;

    width: 100%;
    height: auto;

    max-height: 600px;

    object-fit: cover;
}


/* =========================================================
   BOTONES DE GALERÍA
========================================================= */

.anq-news-detail__gallery-prev,
.anq-news-detail__gallery-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, .55);

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    transition: background .2s ease;
}

.anq-news-detail__gallery-prev {
    left: 15px;
}

.anq-news-detail__gallery-next {
    right: 15px;
}

.anq-news-detail__gallery-prev:hover,
.anq-news-detail__gallery-next:hover {
    background: rgba(0, 0, 0, .8);
}


/* =========================================================
   INDICADORES
========================================================= */

.anq-news-detail__gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;

    margin-top: 12px;
}

.anq-news-detail__gallery-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #c7cdd5;

    cursor: pointer;

    transition: all .2s ease;
}

.anq-news-detail__gallery-dot.active {
    width: 24px;

    border-radius: 5px;

    background: #df1e26;
}


/* =========================================================
   PIE DE FOTO
========================================================= */

.anq-news-detail__caption {
    margin-top: 8px;

    color: #7a8492;

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   CONTENIDO
========================================================= */

.anq-news-detail__content {
    margin-top: 28px;

    color: #273449;

    font-size: 17px;

    line-height: 1.75;
}

.anq-news-detail__content p {
    margin: 0 0 20px;
}

.anq-news-detail__content img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CITA
========================================================= */

.anq-news-detail__quote {
    position: relative;

    margin: 30px 0;

    padding: 22px 25px 22px 60px;

    border-left: 4px solid #df1e26;

    background: #f3f5f8;

    color: #475467;

    border-radius: 0 6px 6px 0;
}

.anq-news-detail__quote i {
    position: absolute;

    left: 18px;
    top: 18px;

    color: #df1e26;

    font-size: 28px;
}

.anq-news-detail__quote p {
    margin: 0;

    font-style: italic;
}


/* =========================================================
   COMPARTIR FINAL
========================================================= */

.anq-news-detail__share-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;
    padding-top: 22px;

    border-top: 1px solid #e1e5ea;

    color: #596577;

    font-size: 14px;
}

.anq-news-detail__share-bottom strong {
    color: #172235;
}

.anq-news-detail__share-bottom-buttons {
    display: flex;

    gap: 7px;

    margin-left: 5px;
}

.anq-news-detail__share-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition: transform .2s ease;
}

.anq-news-detail__share-circle:hover {
    color: #fff;

    transform: translateY(-2px);
}

.anq-news-detail__share-circle--facebook {
    background: #1877f2;
}

.anq-news-detail__share-circle--x {
    background: #111;
}

.anq-news-detail__share-circle--whatsapp {
    background: #25d366;
}

.anq-news-detail__share-circle--telegram {
    background: #229ed9;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .anq-news-detail__titulo {
        font-size: 30px;
    }

    .anq-news-detail__resumen {
        font-size: 17px;
    }

    .anq-news-detail__meta {
        gap: 10px 15px;
    }

    .anq-news-detail__share {
        gap: 6px;
    }

    .anq-news-detail__share-label {
        width: 100%;
        margin-bottom: 2px;
    }

    .anq-news-detail__share-btn {
        flex: 0 0 auto;

        width: 42px;
        height: 38px;

        padding: 0;
    }

    .anq-news-detail__share-btn span {
        display: none;
    }

    .anq-news-detail__gallery-prev,
    .anq-news-detail__gallery-next {
        width: 36px;
        height: 36px;

        font-size: 16px;
    }

    .anq-news-detail__content {
        font-size: 16px;
        line-height: 1.7;
    }

    .anq-news-detail__quote {
        padding-left: 50px;
    }
}


@media (max-width: 575.98px) {

    .anq-news-detail__titulo {
        font-size: 27px;
    }

    .anq-news-detail__resumen {
        font-size: 16px;
    }

    .anq-news-detail__meta {
        font-size: 12px;
    }

    .anq-news-detail__image {
        min-height: 220px;
        object-fit: cover;
    }
}