.noticia-page {
    width: 100%;
    padding: 48px 20px 60px;
    background: #f5f8fc;
}

.noticia-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.noticia-topbar {
    margin-bottom: 18px;
}

.noticia-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #0072bc;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.noticia-back-link:hover {
    color: #0b3264;
}

.noticia-date {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 8px;

    color: #75869a;

    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.noticia-header {
    width: 100%;
    margin-bottom: 28px;
}

.noticia-category {
    display: block;
    margin-bottom: 8px;

    color: #0072bc;

    font-family: "Open Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.noticia-header h1 {
    max-width: 900px;

    margin: 0;

    color: #0b3264;

    font-family: "Open Sans", Arial, sans-serif;
    font-size: 34px;
    font-weight: 800;

    line-height: 1.25;
    letter-spacing: -0.3px;
}

.noticia-gallery {
    width: 100%;
    margin-bottom: 30px;
}

.noticia-gallery-stage {
    position: relative;

    width: 100%;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 18px;

    border: 1px solid #dde6ef;
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 8px 28px
        rgba(11, 50, 100, .08);
}

.noticia-gallery-slide {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;
}

.noticia-gallery-slide.is-active {
    position: relative;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.noticia-gallery-slide img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 650px;

    margin: 0 auto;

    object-fit: contain;

    border-radius: 10px;

    background: #ffffff;
}

.noticia-gallery-arrow {
    position: absolute;
    top: 50%;

    z-index: 10;

    transform: translateY(-50%);

    width: 42px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    background: rgba(11, 50, 100, .78);

    color: #ffffff;

    cursor: pointer;
}

.noticia-gallery-prev {
    left: 14px;
}

.noticia-gallery-next {
    right: 14px;
}

.noticia-gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 12px;
}

.noticia-gallery-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #b8c2ce;
}

.noticia-gallery-dot.is-active {
    width: 24px;

    border-radius: 12px;

    background: #0b3264;
}

.noticia-content {
    width: 100%;

    padding: 30px 34px;

    border: 1px solid #dde6ef;
    border-radius: 14px;

    background: #ffffff;

    color: #34495e;

    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;

    line-height: 1.8;

    box-shadow:
        0 5px 18px
        rgba(11, 50, 100, .05);
}

.noticia-content p {
    margin-top: 0;
    margin-bottom: 18px;
}

.noticia-content strong {
    color: #0b3264;
}

.noticia-footer-actions {
    margin-top: 28px;
}

.noticia-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 18px;

    border-radius: 8px;

    background: #0b3264;

    color: #ffffff;

    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.noticia-back-button:hover {
    background: #0072bc;
    color: #ffffff;
}

@media (max-width: 991.98px) {

    .noticia-page {
        padding: 38px 18px 50px;
    }

    .noticia-header h1 {
        font-size: 29px;
    }

    .noticia-gallery-stage {
        padding: 14px;
    }

    .noticia-content {
        padding: 26px;
    }
}

@media (max-width: 575.98px) {

    .noticia-page {
        padding: 24px 12px 36px;
    }

    .noticia-container {
        max-width: 100%;
    }

    .noticia-topbar {
        margin-bottom: 20px;
    }

    .noticia-date {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .noticia-category {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .noticia-header {
        margin-bottom: 20px;
    }

    .noticia-header h1 {
        font-size: 21px;
        line-height: 1.3;
    }

    .noticia-gallery {
        margin-bottom: 22px;
    }

    .noticia-gallery-stage {
        min-height: 0;

        padding: 6px;

        border-radius: 10px;
    }

    .noticia-gallery-slide img {
        width: 100%;
        height: auto;

        max-height: none;

        object-fit: contain;

        border-radius: 7px;
    }

    .noticia-gallery-arrow {
        width: 32px;
        height: 40px;

        font-size: 14px;
    }

    .noticia-gallery-prev {
        left: 6px;
    }

    .noticia-gallery-next {
        right: 6px;
    }

    .noticia-content {
        padding: 18px;

        border-radius: 10px;

        font-size: 14px;

        line-height: 1.7;
    }

    .noticia-footer-actions {
        margin-top: 20px;
    }

    .noticia-back-button {
        width: 100%;
    }
}
/* =========================================================
   FIX RESPONSIVE - TÍTULO NO SE MONTA SOBRE LA IMAGEN
   ========================================================= */

@media (max-width: 575.98px) {

    .noticia-page .noticia-header {
        display: block !important;
        position: relative !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 0 24px 0 !important;
        padding: 0 !important;

        overflow: visible !important;

        clear: both !important;
        z-index: 5 !important;
    }

    .noticia-page .noticia-header h1 {
        display: block !important;
        position: relative !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 20px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;

        color: #0b3264 !important;

        overflow: visible !important;

        clear: both !important;
        z-index: 6 !important;
    }

    .noticia-page .noticia-gallery {
        display: block !important;
        position: relative !important;

        width: 100% !important;

        margin-top: 0 !important;
        margin-bottom: 22px !important;

        clear: both !important;

        top: auto !important;
        left: auto !important;

        transform: none !important;

        z-index: 1 !important;
    }

    .noticia-page .noticia-gallery-stage {
        position: relative !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 6px !important;

        top: auto !important;
        left: auto !important;

        transform: none !important;
    }

    .noticia-page .noticia-gallery-slide {
        top: auto !important;
        left: auto !important;

        transform: none !important;
    }

    .noticia-page .noticia-gallery-slide.is-active {
        position: relative !important;

        display: block !important;

        width: 100% !important;
        height: auto !important;
    }

    .noticia-page .noticia-gallery-slide img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: none !important;

        margin: 0 auto !important;

        object-fit: contain !important;
    }
}
@media (max-width: 991.98px) {

    .noticia-page .noticia-header {
        position: relative !important;
        display: block !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 0 28px 0 !important;
        padding: 0 !important;

        clear: both !important;

        overflow: visible !important;

        z-index: 5 !important;
    }


    .noticia-page .noticia-header h1 {
        position: relative !important;
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        color: #0b3264 !important;

        font-family: "Open Sans", Arial, sans-serif !important;

        font-size: 27px !important;
        font-weight: 700 !important;

        line-height: 1.3 !important;

        letter-spacing: 0 !important;

        text-align: left !important;

        overflow: visible !important;

        z-index: 6 !important;
    }


    .noticia-page .noticia-gallery {
        position: relative !important;
        display: block !important;

        width: 100% !important;

        margin-top: 0 !important;
        margin-bottom: 28px !important;

        clear: both !important;

        top: auto !important;
        left: auto !important;

        transform: none !important;

        z-index: 1 !important;
    }


    .noticia-page .noticia-gallery-stage {
        position: relative !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;

        top: auto !important;
        left: auto !important;

        transform: none !important;

        overflow: hidden !important;
    }


    .noticia-page .noticia-gallery-slide.is-active {
        position: relative !important;

        display: block !important;

        width: 100% !important;
        height: auto !important;
    }


    .noticia-page .noticia-gallery-slide img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        max-width: 100% !important;
        max-height: none !important;

        margin: 0 auto !important;

        object-fit: contain !important;
    }

}
@media (max-width: 575.98px) {

    .noticia-page .noticia-header {
        margin-bottom: 24px !important;
    }

    .noticia-page .noticia-header h1 {
        font-size: 20px !important;
        line-height: 1.35 !important;
    }

}