/* Portada destacada del módulo Noticias/Blog. Sin dependencias externas. */
.gf-news-cover {
    --gf-news-bg-a: #eef4ff;
    --gf-news-bg-b: #ffffff;
    --gf-news-bg-c: #eaf7ff;
    --gf-news-ink: #0f172a;
    --gf-news-muted: #64748b;
    --gf-news-accent: #2563eb;
    --gf-news-card: #ffffff;
    --gf-news-radius: 28px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 26px;
    padding: clamp(16px, 2.4vw, 30px);
    border: 1px solid #dbeafe;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gf-news-bg-a), var(--gf-news-bg-b) 52%, var(--gf-news-bg-c));
    box-shadow: 0 22px 58px rgba(15, 23, 42, .12);
    color: var(--gf-news-ink);
}
.gf-news-cover.gf-news-cover-full {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    margin-left: -50vw;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
.gf-news-cover *,
.gf-news-cover *::before,
.gf-news-cover *::after { box-sizing: border-box; }
.gf-news-cover-shell {
    width: min(1480px, 100%);
    margin: 0 auto;
}
.gf-news-cover-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
}
.gf-news-cover-heading { min-width: 0; }
.gf-news-cover-title {
    margin: 0;
    color: var(--gf-news-ink);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.045em;
}
.gf-news-cover-subtitle {
    max-width: 800px;
    margin: 9px 0 0;
    color: var(--gf-news-muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}
.gf-news-cover-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--gf-news-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}
.gf-news-cover-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,.16);
}
.gf-news-cover-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 18px;
    min-width: 0;
}
.gf-news-cover-no-side .gf-news-cover-grid { grid-template-columns: minmax(0, 1fr); }
.gf-news-cover-stage {
    position: relative;
    min-width: 0;
    height: 440px;
    min-height: 440px;
    border-radius: var(--gf-news-radius);
    overflow: hidden;
    isolation: isolate;
    background: #0f172a;
    box-shadow: 0 26px 64px rgba(15, 23, 42, .24);
}
.gf-news-cover-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .55s ease, visibility .55s ease;
}
.gf-news-cover-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gf-news-cover-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #1e293b;
    transform: scale(1.015);
    transition: transform 7s linear;
}
.gf-news-cover-slide.is-active > img { transform: scale(1.065); }
.gf-news-cover-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, .95) 0%, rgba(15, 23, 42, .66) 48%, rgba(15, 23, 42, .12) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, .88) 0%, transparent 64%);
}
.gf-news-cover-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-width: 850px;
    padding: clamp(22px, 3vw, 40px);
    color: #fff;
}
.gf-news-cover-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 850;
}
.gf-news-cover-meta span {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(15,23,42,.26);
    backdrop-filter: blur(8px);
}
.gf-news-cover-content h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.05em;
    text-wrap: balance;
}
.gf-news-cover-content p {
    max-width: 720px;
    margin: 0 0 19px;
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.6;
}
.gf-news-cover-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 17px;
    border-radius: 999px;
    background: #fff;
    color: #1d4ed8 !important;
    text-decoration: none !important;
    font-weight: 950;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.gf-news-cover-button::after { content: "→"; font-size: 19px; line-height: 1; }
.gf-news-cover-button:hover,
.gf-news-cover-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,.24);
}
.gf-news-cover-controls {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}
.gf-news-cover-actions,
.gf-news-cover-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}
.gf-news-cover-control {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    background: rgba(15,23,42,.48);
    color: #fff;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}
.gf-news-cover-control:hover,
.gf-news-cover-control:focus-visible {
    background: rgba(37,99,235,.90);
    transform: translateY(-1px);
    outline: 3px solid rgba(255,255,255,.45);
    outline-offset: 2px;
}
.gf-news-cover-dots {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}
.gf-news-cover-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.50);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.gf-news-cover-dot.is-active { width: 30px; background: #fff; }
.gf-news-cover-dot:focus-visible { outline: 3px solid #93c5fd; outline-offset: 3px; }
.gf-news-cover-side {
    min-width: 0;
    height: 440px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: var(--gf-news-radius);
    background: var(--gf-news-card);
    box-shadow: 0 20px 50px rgba(15,23,42,.13);
}
.gf-news-cover-side-head {
    padding: 16px 17px 13px;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #fff, #f8fafc);
}
.gf-news-cover-side-head h3 {
    margin: 0;
    color: #111827;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 950;
}
.gf-news-cover-side-head p {
    margin: 5px 0 0;
    color: var(--gf-news-muted);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}
.gf-news-cover-side-viewport {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.gf-news-cover-side-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    will-change: transform;
}
.gf-news-cover-side-track.is-auto-scroll {
    animation: gfNewsCoverSide var(--gf-news-side-duration, 34s) linear infinite;
}
.gf-news-cover-side:hover .gf-news-cover-side-track,
.gf-news-cover-side:focus-within .gf-news-cover-side-track { animation-play-state: paused; }
.gf-news-cover-mini {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 11px;
    min-width: 0;
    padding: 10px;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    background: #f8fafc;
    color: #111827 !important;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.gf-news-cover-mini:hover,
.gf-news-cover-mini:focus-visible {
    transform: translateY(-2px);
    background: #edf5ff;
    box-shadow: 0 10px 24px rgba(37,99,235,.14);
    outline: 0;
}
.gf-news-cover-mini img {
    display: block;
    width: 94px;
    height: 70px;
    object-fit: cover;
    border-radius: 13px;
    background: #e5e7eb;
}
.gf-news-cover-mini-body { min-width: 0; }
.gf-news-cover-mini h4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 1px 0 6px;
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
}
.gf-news-cover-mini small {
    display: block;
    color: var(--gf-news-muted);
    font-size: 11px;
    line-height: 1.35;
    font-weight: 750;
}
.gf-news-cover-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.gf-news-cover-compact .gf-news-cover-stage,
.gf-news-cover-compact .gf-news-cover-side {
    height: 360px;
    min-height: 360px;
}
.gf-news-cover-compact .gf-news-cover-content h2 { font-size: clamp(27px, 3.2vw, 46px); }
.gf-news-cover-compact .gf-news-cover-content p { display: none; }
@keyframes gfNewsCoverSide {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}
@media (max-width: 980px) {
    .gf-news-cover,
    .gf-news-cover.gf-news-cover-full {
        width: 100%;
        max-width: 100%;
        left: auto;
        margin-left: 0;
        padding: 14px;
        border-radius: 22px;
    }
    .gf-news-cover-head { align-items: flex-start; flex-direction: column; margin-bottom: 13px; }
    .gf-news-cover-badge { display: none; }
    .gf-news-cover-grid { grid-template-columns: 1fr; }
    .gf-news-cover-stage,
    .gf-news-cover-compact .gf-news-cover-stage { height: 330px; min-height: 330px; border-radius: 21px; }
    .gf-news-cover-content { padding: 21px; }
    .gf-news-cover-content h2 { font-size: clamp(25px, 7vw, 38px); }
    .gf-news-cover-content p { display: none; }
    .gf-news-cover-side,
    .gf-news-cover-compact .gf-news-cover-side { height: auto; min-height: 0; border-radius: 21px; }
    .gf-news-cover-side-viewport { overflow-x: auto; overflow-y: hidden; }
    .gf-news-cover-side-track,
    .gf-news-cover-side-track.is-auto-scroll {
        flex-direction: row;
        animation: none;
        transform: none !important;
    }
    .gf-news-cover-mini { flex: 0 0 270px; grid-template-columns: 84px 1fr; }
    .gf-news-cover-mini img { width: 84px; height: 66px; }
}
@media (max-width: 560px) {
    .gf-news-cover { padding: 10px; margin-bottom: 18px; }
    .gf-news-cover-title { font-size: 27px; }
    .gf-news-cover-subtitle { font-size: 13px; }
    .gf-news-cover-stage,
    .gf-news-cover-compact .gf-news-cover-stage { height: 280px; min-height: 280px; }
    .gf-news-cover-content { padding: 16px; }
    .gf-news-cover-content h2 { font-size: 24px; }
    .gf-news-cover-button { min-height: 40px; padding: 9px 13px; font-size: 13px; }
    .gf-news-cover-controls { top: 12px; left: 12px; right: 12px; }
    .gf-news-cover-control { width: 38px; height: 38px; }
    .gf-news-cover-dots { right: 13px; bottom: 13px; }
    .gf-news-cover-mini { flex-basis: 235px; grid-template-columns: 74px 1fr; padding: 9px; }
    .gf-news-cover-mini img { width: 74px; height: 59px; }
    .gf-news-cover-mini h4 { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
    .gf-news-cover *,
    .gf-news-cover *::before,
    .gf-news-cover *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .gf-news-cover-slide > img { transform: none !important; }
}
