/* =========================================================
   EMBOLÍVAR
   ITA - HEADER TRANSVERSAL
   Archivo: emb-ita.css
   ========================================================= */

.emb-ita-header {
    --ita-blue: #073B5C;
    --ita-blue-2: #0A4F73;
    --ita-cyan: #00A9D9;
    --ita-green: #00A50E;
    --ita-text: #475569;
    --ita-muted: #64748B;
    --ita-light: #F2FAFD;
    --ita-border: #DCE8EF;

    position: relative;
    width: 100%;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #073B5C 0%,
            #084B6C 55%,
            #006BB6 100%
        );

    color: #ffffff;
}


/* =========================================================
   EFECTOS DECORATIVOS
   ========================================================= */

.emb-ita-header::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -170px;
    top: -250px;

    border-radius: 50%;

    background: rgba(0, 169, 217, 0.13);

    pointer-events: none;
}

.emb-ita-header::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -140px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0, 165, 14, 0.08);

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.emb-ita-header-inner {
    position: relative;

    z-index: 2;

    max-width: 1200px;

    margin: 0 auto;

    padding: 42px 30px 62px;
}


/* =========================================================
   MIGA DE PAN
   ========================================================= */

.emb-ita-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin: 0 0 32px 0;

    padding: 0;

    font-size: 14px;

    line-height: 1.5;

    color: rgba(255,255,255,0.65);
}

.emb-ita-breadcrumb a {
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    transition: color 0.25s ease;
}

.emb-ita-breadcrumb a:hover {
    color: #ffffff;
}

.emb-ita-breadcrumb span {
    color: rgba(255,255,255,0.35);
}

.emb-ita-breadcrumb strong {
    color: #ffffff;

    font-weight: 600;
}


/* =========================================================
   COMPONENTE
   ========================================================= */

.emb-ita-label {
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    padding: 8px 15px;

    background: rgba(255,255,255,0.10);

    border-left: 4px solid #00A9D9;

    border-radius: 4px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    line-height: 1.4;

    text-transform: uppercase;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.emb-ita-title {
    max-width: 950px;

    margin: 0;
    padding: 0;

    color: #ffffff !important;

    font-size: 48px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   LÍNEA DECORATIVA
   ========================================================= */

.emb-ita-line {
    width: 95px;

    height: 5px;

    margin-top: 24px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #00A9D9 0%,
            #00A9D9 50%,
            #00A50E 100%
        );
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.emb-ita-description {
    max-width: 850px;

    margin: 24px 0 0 0;

    color: rgba(255,255,255,0.78) !important;

    font-size: 18px;

    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .emb-ita-header-inner {
        padding: 40px 25px 55px;
    }

    .emb-ita-title {
        font-size: 40px;
    }

    .emb-ita-description {
        font-size: 17px;
    }

}


@media (max-width: 600px) {

    .emb-ita-header-inner {
        padding: 32px 20px 45px;
    }

    .emb-ita-breadcrumb {
        margin-bottom: 25px;

        font-size: 13px;

        gap: 7px;
    }

    .emb-ita-label {
        margin-bottom: 16px;

        padding: 7px 12px;

        font-size: 10px;

        letter-spacing: 1px;
    }

    .emb-ita-title {
        font-size: 32px;

        line-height: 1.18;

        letter-spacing: 0;
    }

    .emb-ita-line {
        width: 75px;

        height: 4px;

        margin-top: 20px;
    }

    .emb-ita-description {
        margin-top: 20px;

        font-size: 16px;

        line-height: 1.65;
    }

}



/* =========================================================
   EMBOLÍVAR
   DISEÑO INDIVIDUAL DE NOTICIAS
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --emb-blue: #0b6fb8;
    --emb-blue-dark: #183b5b;
    --emb-blue-soft: #eef6fb;

    --emb-green: #25a55f;

    --emb-text: #243b53;
    --emb-text-soft: #64748b;

    --emb-border: #dfe7ee;

    --emb-bg: #ffffff;
    --emb-bg-soft: #f7fafc;

}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.emb-noticia-container {

    width: 100%;

    max-width: 1120px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;

}


/* =========================================================
   ARTÍCULO
   ========================================================= */

.emb-noticia {

    width: 100%;

    background: #ffffff;

    color: var(--emb-text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

}


/* =========================================================
   CABECERA
   ========================================================= */

.emb-noticia-header {

    position: relative;

    padding-top: 35px;
    padding-bottom: 55px;

    background:
        linear-gradient(
            180deg,
            #f7fbfe 0%,
            #ffffff 100%
        );

    border-top:
        4px solid var(--emb-blue);

}


/* =========================================================
   MIGA DE PAN
   ========================================================= */

.emb-noticia-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 42px;

    font-size: 13px;

    color: #7890a4;

}


.emb-noticia-breadcrumb a {

    color: var(--emb-blue);

    text-decoration: none;

    font-weight: 600;

}


.emb-noticia-breadcrumb a:hover {

    text-decoration: underline;

}


.emb-noticia-breadcrumb span {

    color: #a9b8c5;

}


/* =========================================================
   EYEBROW
   ========================================================= */

.emb-noticia-eyebrow {

    margin-bottom: 14px;

    font-size: 12px;

    line-height: 1.4;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--emb-blue);

    font-weight: 700;

}


/* =========================================================
   TÍTULO
   ========================================================= */

.emb-noticia-title {

    max-width: 950px;

    margin: 0;

    color: var(--emb-blue-dark);

    font-size: clamp(
        36px,
        5vw,
        58px
    );

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;

}


/* =========================================================
   LÍNEA DECORATIVA
   ========================================================= */

.emb-noticia-line {

    width: 70px;

    height: 4px;

    margin-top: 27px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--emb-blue),
            var(--emb-green)
        );

}


/* =========================================================
   METADATOS
   ========================================================= */

.emb-noticia-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;

    font-size: 14px;

    color: var(--emb-text-soft);

}


.emb-noticia-meta-item {

    display: inline-flex;

    align-items: center;

    gap: 7px;

}


.emb-noticia-meta-icon {

    font-size: 14px;

}


.emb-noticia-meta-separator {

    color: #b9c6d0;

}


/* =========================================================
   CONTENIDO PRINCIPAL
   ========================================================= */

.emb-noticia-main {

    padding-top: 55px;

    padding-bottom: 80px;

}


/* =========================================================
   IMAGEN PRINCIPAL
   ========================================================= */

.emb-noticia-cover {

    margin: 0 auto 55px;

    overflow: hidden;

    background: #f2f5f7;

    border-radius: 14px;

    box-shadow:
        0 15px 45px
        rgba(26, 56, 79, 0.10);

}


.emb-noticia-cover img {

    display: block;

    width: 100%;

    max-height: 600px;

    object-fit: cover;

}


.emb-noticia-cover figcaption {

    padding: 12px 18px;

    background: #f8fafc;

    color: #718096;

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   CUERPO DE LA NOTICIA
   ========================================================= */

.emb-noticia-content {

    max-width: 850px;

    margin: 0 auto;

    color: #405568;

    font-size: 17px;

    line-height: 1.85;

}


/* =========================================================
   PÁRRAFOS
   ========================================================= */

.emb-noticia-content p {

    margin-top: 0;

    margin-bottom: 24px;

}


/* =========================================================
   TÍTULOS
   ========================================================= */

.emb-noticia-content h2 {

    margin-top: 48px;

    margin-bottom: 20px;

    color: var(--emb-blue-dark);

    font-size: 30px;

    line-height: 1.25;

}


.emb-noticia-content h3 {

    margin-top: 40px;

    margin-bottom: 18px;

    color: var(--emb-blue-dark);

    font-size: 24px;

    line-height: 1.3;

}


.emb-noticia-content h4 {

    margin-top: 32px;

    margin-bottom: 15px;

    color: var(--emb-blue-dark);

}


/* =========================================================
   ENLACES
   ========================================================= */

.emb-noticia-content a {

    color: var(--emb-blue);

    font-weight: 600;

    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 3px;

}


.emb-noticia-content a:hover {

    color: var(--emb-green);

}


/* =========================================================
   IMÁGENES DENTRO DEL ARTÍCULO
   ========================================================= */

.emb-noticia-content img {

    display: block;

    max-width: 100%;

    height: auto;

    margin: 30px auto;

    border-radius: 10px;

}


/* =========================================================
   LISTAS
   ========================================================= */

.emb-noticia-content ul,
.emb-noticia-content ol {

    margin-top: 20px;

    margin-bottom: 30px;

    padding-left: 28px;

}


.emb-noticia-content li {

    margin-bottom: 10px;

}


/* =========================================================
   CITAS
   ========================================================= */

.emb-noticia-content blockquote {

    margin: 35px 0;

    padding: 22px 28px;

    border-left:
        4px solid var(--emb-blue);

    background:
        var(--emb-blue-soft);

    color: #4d6578;

    font-size: 18px;

    font-style: italic;

    border-radius: 0 8px 8px 0;

}


/* =========================================================
   TABLAS
   ========================================================= */

.emb-noticia-content table {

    width: 100%;

    margin: 35px 0;

    border-collapse: collapse;

    font-size: 15px;

}


.emb-noticia-content th {

    padding: 13px 15px;

    background: var(--emb-blue-dark);

    color: #ffffff;

    text-align: left;

}


.emb-noticia-content td {

    padding: 12px 15px;

    border: 1px solid var(--emb-border);

}


.emb-noticia-content tr:nth-child(even) td {

    background: #f8fafc;

}


/* =========================================================
   TABLA DE CONTENIDOS
   ========================================================= */

.emb-noticia-toc {

    margin-bottom: 35px;

    padding: 22px;

    border:
        1px solid var(--emb-border);

    border-radius: 10px;

    background: #f8fafc;

}


/* =========================================================
   FOOTER DEL ARTÍCULO
   ========================================================= */

.emb-noticia-footer {

    max-width: 850px;

    margin: 70px auto 0;

}


.emb-noticia-footer-line {

    width: 100%;

    height: 1px;

    background: var(--emb-border);

    margin-bottom: 28px;

}


.emb-noticia-footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.emb-noticia-footer-label {

    display: block;

    margin-bottom: 8px;

    color: var(--emb-blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.emb-noticia-footer-content p {

    margin: 0;

    color: #718096;

    font-size: 13px;

}


/* =========================================================
   BOTÓN VOLVER
   ========================================================= */

.emb-noticia-back {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 11px 18px;

    border:
        1px solid var(--emb-blue);

    border-radius: 7px;

    color: var(--emb-blue) !important;

    background: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;

}


.emb-noticia-back:hover {

    background: var(--emb-blue);

    color: #ffffff !important;

    transform: translateX(-3px);

}


/* =========================================================
   ELEMENTOS DE JOOMLA / EDICIÓN
   ========================================================= */

.emb-noticia .icons {

    display: none;

}


.emb-noticia .btn {

    box-shadow: none;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .emb-noticia-container {

        padding-left: 24px;

        padding-right: 24px;

    }


    .emb-noticia-header {

        padding-top: 28px;

        padding-bottom: 42px;

    }


    .emb-noticia-breadcrumb {

        margin-bottom: 30px;

    }


    .emb-noticia-title {

        font-size: 42px;

        letter-spacing: -1px;

    }


    .emb-noticia-main {

        padding-top: 40px;

        padding-bottom: 60px;

    }


    .emb-noticia-cover {

        margin-bottom: 40px;

        border-radius: 10px;

    }


    .emb-noticia-cover img {

        max-height: 480px;

    }


    .emb-noticia-content {

        font-size: 16px;

        line-height: 1.75;

    }


    .emb-noticia-footer-content {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 600px) {

    .emb-noticia-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .emb-noticia-header {

        padding-top: 22px;

        padding-bottom: 35px;

    }


    .emb-noticia-breadcrumb {

        margin-bottom: 25px;

        font-size: 12px;

    }


    .emb-noticia-eyebrow {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .emb-noticia-title {

        font-size: 34px;

        line-height: 1.12;

    }


    .emb-noticia-line {

        width: 55px;

        height: 3px;

    }


    .emb-noticia-meta {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

        font-size: 13px;

    }


    .emb-noticia-meta-separator {

        display: none;

    }


    .emb-noticia-main {

        padding-top: 30px;

        padding-bottom: 45px;

    }


    .emb-noticia-cover {

        margin-bottom: 32px;

        border-radius: 8px;

    }


    .emb-noticia-cover img {

        max-height: 350px;

    }


    .emb-noticia-content {

        font-size: 16px;

        line-height: 1.7;

    }


    .emb-noticia-content h2 {

        margin-top: 38px;

        font-size: 26px;

    }


    .emb-noticia-content h3 {

        font-size: 22px;

    }


    .emb-noticia-content blockquote {

        padding: 18px 20px;

        font-size: 16px;

    }


    .emb-noticia-footer {

        margin-top: 50px;

    }


    .emb-noticia-back {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   IMPRESIÓN
   ========================================================= */

@media print {

    .emb-noticia-header {

        border-top: 0;

        background: #ffffff;

    }


    .emb-noticia-breadcrumb,
    .emb-noticia-back {

        display: none;

    }


    .emb-noticia-title {

        color: #000000;

    }


    .emb-noticia-content {

        max-width: 100%;

        color: #000000;

    }


    .emb-noticia-cover {

        box-shadow: none;

    }

}