/* ==============================================
   DV25 News Widgets — Frontend Styles
   ============================================== */

/* ── Shared utilities ── */
.dv25-badge {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.9px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    padding: 6px 22px 6px 9px !important;
    background: #ce1f17 !important;
    color: #fff !important;
    margin-bottom: 7px !important;
    opacity: 1 !important;
    filter: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer !important;
}
.dv25-badge.dv25-badge-diagonal {
    clip-path: polygon(0 0,100% 0,calc(100% - 13px) 100%,0 100%) !important;
}

.dv25-sk-dark {
    border-radius: 3px;
    background: linear-gradient(90deg,#2a2a3a 25%,#3a3a4a 50%,#2a2a3a 75%);
    background-size: 200% 100%;
    animation: dv25-shimmer-dark 1.4s infinite;
    display: block;
}
.dv25-sk-light {
    border-radius: 3px;
    background: linear-gradient(90deg,#e5e7eb 25%,#f3f4f6 50%,#e5e7eb 75%);
    background-size: 200% 100%;
    animation: dv25-shimmer-light 1.4s infinite;
    display: block;
}
@keyframes dv25-shimmer-dark {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes dv25-shimmer-light {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.dv25-ticker-wrap {
    width: 100%;
    display: flex;
    align-items: stretch;
    height: 48px;
    overflow: hidden;
    font-family: 'Arial Narrow', Arial, sans-serif;
}
.dv25-ticker-label {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0 20px 0 14px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.dv25-ticker-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}
.dv25-ticker-body::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 80px; height: 100%;
    background: linear-gradient(to right, transparent, #ffffff);
    z-index: 1;
    pointer-events: none;
}
.dv25-ticker-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.dv25-ticker-item {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    padding-right: 88px;
}
.dv25-ticker-item.active {
    opacity: 1;
    pointer-events: auto;
}
.dv25-ticker-item a {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.dv25-ticker-item a:hover {
    color: #fff;
    text-decoration: none !important;
    text-shadow: 0 0 14px rgba(255,255,255,0.65), 0 1px 3px rgba(0,0,0,0.3);
}
.dv25-ticker-loading {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-style: italic;
}
.dv25-ticker-dots {
    position: absolute;
    bottom: 5px; right: 10px;
    display: flex;
    gap: 4px;
    z-index: 2;
}
.dv25-ticker-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.3s;
}
.dv25-ticker-dot.active { background: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.dv25-hero-wrap { width: 100%; }
.dv25-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #111827;
}
.dv25-hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
    pointer-events: none;
}
.dv25-hero:hover .dv25-hero-img { transform: scale(1.03); }
.dv25-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.dv25-hero-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 58%;
    padding: 32px 36px;
    z-index: 3;
}
.dv25-hero-skeleton {
    display: block;
}
.dv25-hero-title,
.dv25-hero-title:link,
.dv25-hero-title:visited,
.dv25-hero-title:hover,
.dv25-hero-title:focus,
.dv25-hero-title:active {
    font-weight: 900;
    color: #fff !important;
    line-height: 1.12;
    margin: 14px 0 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    text-decoration: none !important;
    display: block;
    outline: none;
}
.dv25-hero-excerpt {
    color: rgba(255,255,255,0.86);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dv25-hero-btn,
.dv25-hero-btn:link,
.dv25-hero-btn:visited {
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    padding: 10px 28px 10px 14px !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    outline: none;
    color: #fff !important;
}
.dv25-hero-btn.dv25-btn-diagonal {
    clip-path: polygon(0 0,100% 0,calc(100% - 14px) 100%,0 100%);
}
.dv25-hero-btn:hover,
.dv25-hero-btn:focus,
.dv25-hero-btn:active {
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}
.dv25-hero-date {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    display: block;
}

/* ══════════════════════════════════════
   GRID
══════════════════════════════════════ */
.dv25-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.dv25-gcard,
.dv25-gcard:link,
.dv25-gcard:visited,
.dv25-gcard:hover,
.dv25-gcard:focus,
.dv25-gcard:active {
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
}
.dv25-gcard {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111827;
}
.dv25-gimg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    pointer-events: none;
    -webkit-user-drag: none;
}
.dv25-gcard:hover .dv25-gimg { transform: scale(1.05); }
.dv25-govlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.dv25-gcontent {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 14px 14px 16px;
}
.dv25-gtitle {
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
h3.dv25-gtitle, h4.dv25-gtitle { margin: 0; padding: 0; }
.dv25-gdate {
    font-size: 11px;
    color: rgba(255,255,255,0.62);
    margin-top: 5px;
}
/* Reset for related posts heading tags */
h4.dv25-rp-title { margin: 0; padding: 0; }

/* ══════════════════════════════════════
   SEPARADOR
══════════════════════════════════════ */
.dv25-sep {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.dv25-sep-text {
    font-weight: 700;
    color: #1a3a6b;
    font-size: 2.3em;
    line-height: 1.1;
    white-space: nowrap;
}

/* ══════════════════════════════════════
   SLIDER
══════════════════════════════════════ */
.dv25-slider-wrap { width: 100%; }
.dv25-viewport {
    overflow: hidden;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}
.dv25-viewport.dv25-dragging { cursor: grabbing; }
.dv25-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.dv25-track.dv25-notrans { transition: none !important; }
.dv25-viewport.dv25-dragging .dv25-spage { pointer-events: none; }
.dv25-spage {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 0;
}
.dv25-sitem,
.dv25-sitem:link,
.dv25-sitem:visited,
.dv25-sitem:hover,
.dv25-sitem:focus,
.dv25-sitem:active {
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
}
.dv25-sitem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.18s;
}
.dv25-sitem:hover { background: #f3f4f6; }
.dv25-simg-wrap {
    flex-shrink: 0;
    width: 118px; height: 86px;
    overflow: hidden;
    background: #f3f4f6;
}
.dv25-simg {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
    -webkit-user-drag: none;
}
.dv25-sitem:hover .dv25-simg { transform: scale(1.06); }
.dv25-sbody {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.dv25-stitle {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
h3.dv25-stitle, h4.dv25-stitle { margin: 0; padding: 0; }
.dv25-sdate {
    font-size: 11px;
    color: #6b7280;
    flex-shrink: 0;
}
.dv25-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0 4px;
}
.dv25-arrow {
    width: 34px; height: 34px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #111827;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.dv25-arrow:hover         { background: #ce1f17; color: #fff; border-color: #ce1f17; }
.dv25-arrow:disabled      { opacity: 0.3; cursor: default; }
.dv25-arrow:disabled:hover{ background: #fff; color: #111827; border-color: #e5e7eb; }
.dv25-dots { display: flex; gap: 8px; align-items: center; }
.dv25-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 1.5px solid #b0b7c3;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
}
.dv25-dot.dv25-active { background: #1a3a6b; border-color: #1a3a6b; }

/* skeleton slider */
.dv25-ssk {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* ══════════════════════════════════════
   RESPONSIVE — TICKER
══════════════════════════════════════ */
@media (max-width: 600px) {
    .dv25-ticker-wrap {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    .dv25-ticker-label {
        font-size: 18px;
        padding: 6px 12px 3px 10px;
        height: auto;
    }
    .dv25-ticker-body {
        padding: 0 10px 8px 10px;
        height: auto;
        overflow: visible;
        display: block;
    }
    .dv25-ticker-body::after { display: none; }
    .dv25-ticker-container {
        position: relative;
        width: 100%;
        display: block;
        min-height: 38px;
    }
    .dv25-ticker-item {
        position: absolute;
        left: 0; top: 0;
        width: 100%;
        padding-right: 0;
        min-height: 38px;
        height: auto;
    }
    .dv25-ticker-item.active  { position: relative; }
    .dv25-ticker-item:not(.active) { position: absolute; }
    .dv25-ticker-item a {
        font-size: 15px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.35;
    }
    .dv25-ticker-dots {
        position: static;
        justify-content: flex-end;
        padding-top: 4px;
    }
}
@media (max-width: 380px) {
    .dv25-ticker-label { font-size: 15px; }
    .dv25-ticker-item a { font-size: 14px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — HERO
══════════════════════════════════════ */
@media (max-width: 900px) {
    .dv25-hero-content { width: 80%; padding: 22px 24px; }
}
@media (max-width: 540px) {
    .dv25-hero-content { width: 100%; padding: 16px; }
    .dv25-hero-excerpt { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — GRID (Mobile-first)
══════════════════════════════════════ */
@media (max-width: 900px) {
    .dv25-gcard { aspect-ratio: 16/9; }
}
@media (max-width: 540px) {
    .dv25-grid { grid-template-columns: 1fr !important; }
    .dv25-gcard {
        aspect-ratio: auto !important;
        height: clamp(160px, 56vw, 280px) !important;
    }
    .dv25-gcontent {
        padding: 10px 12px !important;
    }
    .dv25-gtitle {
        font-size: 15px !important;
        -webkit-line-clamp: 2 !important;
    }
    .dv25-gdate {
        font-size: 10px !important;
        margin-top: 3px !important;
    }
}
@media (max-width: 380px) {
    .dv25-gcard {
        height: clamp(140px, 50vw, 220px) !important;
    }
    .dv25-gtitle {
        font-size: 14px !important;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — SLIDER
══════════════════════════════════════ */
@media (max-width: 900px) {
    .dv25-spage { grid-template-columns: 1fr !important; column-gap: 0; }
    .dv25-simg-wrap { width: 130px; height: 96px; }
    .dv25-stitle { font-size: 16px; }
}
@media (max-width: 540px) {
    .dv25-simg-wrap { width: 96px; height: 72px; }
    .dv25-stitle { font-size: 14px; }
    .dv25-sitem { gap: 10px; padding: 12px 0; }
    .dv25-controls { padding: 16px 0 4px; }
    .dv25-sep-text { font-size: 1.7em; }
}
@media (max-width: 380px) {
    .dv25-simg-wrap { width: 80px; height: 62px; }
    .dv25-stitle { font-size: 13px; }
    .dv25-sep-text { font-size: 1.4em; }
}

/* ══════════════════════════════════════
   HERO + CARRUSEL WIDGET
══════════════════════════════════════ */
.hc-block { width: 100%; font-family: 'Source Sans 3', sans-serif; }
.hc-block * { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Hero ── */
.hc-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #111827;
    margin-bottom: 20px;
}
.hc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
    pointer-events: none;
}
.hc-hero:hover .hc-hero-img { transform: scale(1.03); }
.hc-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hc-hero-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 58%;
    padding: 32px 36px;
}
.hc-sk-dark {
    display: block;
    border-radius: 4px;
    background: linear-gradient(90deg,#2a2a3a 25%,#3a3a4a 50%,#2a2a3a 75%);
    background-size: 200% 100%;
    animation: hc-shimmer-dark 1.4s infinite;
    margin-bottom: 0;
}
@keyframes hc-shimmer-dark {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.hc-hero-badge,
.hc-hero-badge:link,
.hc-hero-badge:visited,
.hc-hero-badge:hover,
.hc-hero-badge:focus,
.hc-hero-badge:active {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.9px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    padding: 8px 30px 8px 12px !important;
    opacity: 1 !important;
    filter: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.hc-hero-badge.hc-diag { clip-path: polygon(0 0,100% 0,calc(100% - 16px) 100%,0 100%) !important; }
.hc-hero-badge.hc-clickable { cursor: pointer !important; }

.hc-hero-title,
.hc-hero-title:link,
.hc-hero-title:visited,
.hc-hero-title:hover,
.hc-hero-title:focus,
.hc-hero-title:active {
    font-weight: 900;
    color: #fff !important;
    line-height: 1.12;
    margin: 14px 0 16px;
    text-decoration: none !important;
    display: block;
    outline: none;
}
.hc-hero-title.hc-shadow { text-shadow: 0 2px 12px rgba(0,0,0,0.4); }

.hc-hero-excerpt {
    color: rgba(255,255,255,0.86);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hc-hero-date {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.hc-hero-btn,
.hc-hero-btn:link,
.hc-hero-btn:visited {
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    outline: none;
    color: #fff !important;
}
.hc-hero-btn.hc-diag { clip-path: polygon(0 0,100% 0,calc(100% - 14px) 100%,0 100%); }
.hc-hero-btn:hover,
.hc-hero-btn:focus,
.hc-hero-btn:active {
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* ── Carrusel ── */
.hc-carousel-wrap {
    position: relative;
    width: 100%;
}
.hc-viewport {
    overflow: hidden;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}
.hc-viewport.hc-dragging { cursor: grabbing; }
.hc-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.hc-track.hc-notrans { transition: none !important; }
.hc-viewport.hc-dragging .hc-card { pointer-events: none; }

/* Tarjeta */
.hc-card,
.hc-card:link,
.hc-card:visited,
.hc-card:hover,
.hc-card:focus,
.hc-card:active {
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
}
.hc-card {
    flex-shrink: 0;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.hc-card.hc-shadow     { box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.hc-card.hc-hover-lift:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }

.hc-card-img-wrap {
    position: relative;
    width: 100%;
    height: 155px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}
.hc-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
    -webkit-user-drag: none;
}
.hc-card:hover .hc-card-img { transform: scale(1.06); }

.hc-card-badge-wrap {
    position: absolute;
    top: 0; left: 0;
    line-height: 0;
}
.hc-card-badge,
.hc-card-badge:link,
.hc-card-badge:visited,
.hc-card-badge:hover,
.hc-card-badge:focus,
.hc-card-badge:active {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    color: #fff !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.9px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    padding: 7px 26px 7px 9px !important;
    opacity: 1 !important;
    filter: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.hc-card-badge.hc-diag     { clip-path: polygon(0 0,100% 0,calc(100% - 13px) 100%,0 100%) !important; }
.hc-card-badge.hc-clickable { cursor: pointer !important; }
.hc-card-badge.hc-not-click { cursor: default !important; }

.hc-card-body {
    padding: 12px 13px 13px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hc-card-title,
.hc-card-title:hover {
    font-size: 18px;
    font-weight: 700;
    color: #111827 !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    text-decoration: none !important;
}
.hc-card-date {
    font-size: 11px;
    color: #6b7280;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Skeleton tarjeta */
.hc-sk-card { flex-shrink: 0; background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.hc-sk-line {
    border-radius: 3px;
    background: linear-gradient(90deg,#e5e7eb 25%,#f3f4f6 50%,#e5e7eb 75%);
    background-size: 200% 100%;
    animation: hc-shimmer-light 1.4s infinite;
    margin-bottom: 8px;
}
@keyframes hc-shimmer-light {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Flechas */
.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #111827;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}
.hc-arrow.hc-shadow-on { box-shadow: 0 2px 10px rgba(0,0,0,0.18); }
.hc-arrow:hover         { background: #C0281C; color: #fff; }
.hc-arrow:disabled      { opacity: 0.3; cursor: default; }
.hc-arrow:disabled:hover{ background: #fff; color: #111827; }
.hc-prev { left: -4px; }
.hc-next { right: -4px; }

/* ══════════════════════════════════════
   RESPONSIVE — HERO CARRUSEL
══════════════════════════════════════ */
@media (max-width: 900px) {
    .hc-hero-content { width: 72%; padding: 22px 24px; }
}
@media (max-width: 600px) {
    .hc-hero-content { width: 100%; padding: 16px; }
    .hc-hero-excerpt { display: none; }
    .hc-carousel-wrap { padding: 0 16px; }
    .hc-arrow { width: 32px; height: 32px; font-size: 15px; }
    .hc-prev { left: -3px; }
    .hc-next { right: -3px; }
}

/* ══════════════════════════════════════
   NUEVOS WIDGETS v5.0.0
══════════════════════════════════════ */

/* ── Heading ── */
.dv25-heading { margin: 0; line-height: 1.2; }
.dv25-heading a { color: inherit; text-decoration: none; }
.dv25-heading-sep { display: block; height: 3px; width: 40px; background: #C0281C; margin-top: 8px; }

/* ── Image ── */
.dv25-image-wrap img { display: block; max-width: 100%; height: auto; }
.dv25-image-caption { font-size: 13px; color: #6b7280; margin: 8px 0 0; }

/* ── Button ── */
.dv25-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; cursor: pointer; transition: background-color .2s ease, color .2s ease, opacity .2s ease; }
.dv25-btn-full { width: 100%; }
.dv25-btn:hover { opacity: .9; }

/* ── Divider ── */
.dv25-divider-wrap { display: flex; align-items: center; }
.dv25-divider-line {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #e5e7eb;
    width: 100%;
}
.dv25-divider-icon { display: inline-flex; align-items: center; }

/* ── Video ── */
.dv25-video-wrap { position: relative; overflow: hidden; }
.dv25-video-wrap iframe,
.dv25-video-wrap video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── Text Editor ── */
.dv25-text-editor { line-height: 1.7; }
.dv25-text-editor p { margin: 0 0 1em; }
.dv25-text-editor p:last-child { margin-bottom: 0; }
.dv25-text-editor ul, .dv25-text-editor ol { margin: 0 0 1em; padding-left: 1.4em; }
.dv25-text-editor a { color: inherit; }

/* ── Icon ── */
.dv25-icon-wrap { display: inline-block; }
.dv25-icon { display: inline-flex; align-items: center; justify-content: center; transition: color .2s, fill .2s; }
.dv25-icon svg { width: 1em; height: 1em; fill: currentColor; }

/* ── Call To Action ── */
.dv25-cta { overflow: hidden; }
.dv25-cta-btn { display: inline-flex; align-items: center; padding: 12px 28px; font-weight: 700; text-decoration: none; transition: background .2s, color .2s; border-radius: 4px; }
.dv25-cta-btn:hover { opacity: .9; }
.dv25-cta-title { margin: 0 0 16px; }

/* ── Accordion ── */
.dv25-acc-item { border: 1px solid #e5e7eb; overflow: hidden; }
.dv25-acc-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; border: 0; background: #f9fafb; text-align: left; transition: background .2s; }
.dv25-acc-header:hover { background: #f3f4f6; }
.dv25-acc-item.dv25-open .dv25-acc-header { background: #1a3a6b; color: #fff; }
.dv25-acc-icon { transition: transform .3s; flex-shrink: 0; }
.dv25-acc-item.dv25-open .dv25-acc-icon { transform: rotate(180deg); }
.dv25-acc-body { padding: 16px 20px; }

/* ── Social Share ── */
.dv25-social-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.dv25-ss-wrap { display: flex; flex-wrap: wrap; align-items: center; }
.dv25-ss-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: opacity .2s; border-radius: 4px; }
.dv25-ss-btn:hover { opacity: .8; }

/* ── Nav Menu ── */
.dv25-nav { position: relative; }
.dv25-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.dv25-nav-list.dv25-nav-vertical { flex-direction: column; align-items: flex-start; }
.dv25-nav-list a { text-decoration: none; color: inherit; transition: color .2s; }
.dv25-nav-list li { position: relative; }
.dv25-nav-list .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 180px; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.12); padding: 8px 0; border-radius: 4px; z-index: 100; list-style: none; margin: 0; }
.dv25-nav-list li:hover > .sub-menu { display: block; }
.dv25-nav-list .sub-menu a { display: block; padding: 8px 16px; font-size: 14px; white-space: nowrap; }

/* ── Site Logo / Title ── */
.dv25-logo-wrap img { display: block; }
.dv25-site-title { margin: 0; }
.dv25-site-tagline { margin: 4px 0 0; }
.dv25-page-title { margin: 0; }

/* ── WooCommerce ── */
.dv25-woo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:900px){ .dv25-woo-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px){ .dv25-woo-grid { grid-template-columns: 1fr; } }
.dv25-woo-card { background: #fff; overflow: hidden; }
.dv25-woo-card-title a { text-decoration: none; color: inherit; }
.dv25-woo-card-title a:hover { color: #C0281C; }
.dv25-mini-cart a { text-decoration: none; }
.dv25-cart-count { min-width: 18px; height: 18px; font-size: 10px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.dv25-add-to-cart { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dv25-atc-btn { cursor: pointer; border: 0; font-weight: 700; transition: background .2s; }
.dv25-woo-img img { display: block; width: 100%; height: auto; }
.dv25-product-price .price { font-weight: 700; }

/* ══════════════════════════════════════
   YOUTUBE VIDEO GRID
══════════════════════════════════════ */
.dv25-ytg-card,
.dv25-ytg-card:link,
.dv25-ytg-card:visited,
.dv25-ytg-card:hover,
.dv25-ytg-card:focus,
.dv25-ytg-card:active {
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
}
.dv25-ytg-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 6px;
}
.dv25-ytg-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1.3;
}
.dv25-ytg-ch-icon {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   GRID ARCHIVE
══════════════════════════════════════ */
.dv25-ga-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.dv25-ga-card,
.dv25-ga-card:link,
.dv25-ga-card:visited,
.dv25-ga-card:hover,
.dv25-ga-card:focus,
.dv25-ga-card:active {
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
}
.dv25-ga-title {
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.dv25-ga-date {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 5px;
}

/* ══════════════════════════════════════
   ARCHIVE HEADER
══════════════════════════════════════ */
.dv25-ah-wrap { position: relative; }
.dv25-ah-bc { list-style: none; margin: 0; padding: 0; }
.dv25-ah-bc li { display: inline-flex; align-items: center; }
.dv25-ah-bc a { text-decoration: none; transition: color .2s; }
.dv25-ah-title { margin: 0; }
.dv25-ah-desc { margin: 0; }
.dv25-ah-sep { border: 0; }
