/* ════════════════════════════════════════════
   1. VARIABLES & BASE
   ════════════════════════════════════════════ */

:root {
    --bg: #efefef;
    --surface: #ffffff;
    --text: #111111;
    --muted: #666666;
    --accent: #d71920;
    --dark: #11346f;
    --border: #000000;
    --shadow: 8px 8px 0 #000;
    --shadow-lg: 10px 10px 0 #000;
    --container: 1280px;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; }

body {
    margin: 0;
    padding-top: 0 !important;
    background: #ffffff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; }

.ap-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}


/* ════════════════════════════════════════════
   2. HEADER (versión final)
   ════════════════════════════════════════════ */

.ap-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
    width: 100% !important;
    background: transparent !important;
    transition: box-shadow .2s !important;
}

.ap-header.is-stuck {
    box-shadow: 0 2px 12px rgba(0,0,0,.2) !important;
}

/* ─── Topbar ─────────────────────────────────────────────── */

.ap-topbar {
    background: #11346f !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    overflow: hidden !important;
    max-height: 40px !important;
    opacity: 1 !important;
    transition: max-height .25s ease, opacity .25s ease !important;
}

.ap-topbar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 34px !important;
    min-height: 34px !important;
}

.ap-topbar-date {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
}

.ap-topbar-actions {
    display: flex;
    gap: 20px;
}

.ap-topbar-actions a {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
}

.ap-topbar-actions a:hover { color: #fff; }

.ap-header.is-stuck .ap-topbar {
    max-height: 0 !important;
    opacity: 0 !important;
}

/* ─── Brandbar ───────────────────────────────────────────── */

.ap-brandbar {
    background: #11346f !important;
    border-bottom: 3px solid #d71920 !important;
    padding: 14px 0 !important;
    transition: padding .25s ease !important;
}

.ap-brandbar-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    background: transparent !important;
}

.ap-header.is-stuck .ap-brandbar {
    padding: 7px 0 !important;
}

/* Logo */
.ap-logo a,
.ap-logo img {
    display: block;
    max-height: 56px;
    width: auto;
    transition: max-height .25s ease;
}

.ap-logo-text {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -.02em;
    transition: font-size .25s ease;
}

.ap-header.is-stuck .ap-logo img  { max-height: 36px !important; }
.ap-header.is-stuck .ap-logo-text { font-size: 20px !important; }

/* Herramientas */
.ap-header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ap-search-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 0.5px solid rgba(255,255,255,.2);
    border-radius: 3px;
    overflow: hidden;
    transition: background .2s;
}

.ap-search-wrap:focus-within {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.4);
}

.ap-search-field {
    background: none !important;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    font-size: 13px;
    padding: 8px 12px;
    width: 220px;
    height: auto !important;
    font-family: inherit;
    transition: width .25s ease;
}

.ap-search-field::placeholder { color: rgba(255,255,255,.4); }

.ap-header.is-stuck .ap-search-field { width: 160px !important; }

.ap-search-submit {
    background: none !important;
    border: none !important;
    border-left: 0.5px solid rgba(255,255,255,.15) !important;
    color: rgba(255,255,255,.6);
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: auto !important;
    transition: color .2s;
}

.ap-search-submit:hover { color: #fff; }

/* Hamburger — oculto en desktop */
.ap-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.1);
    border: 0.5px solid rgba(255,255,255,.2) !important;
    border-radius: 3px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.ap-menu-toggle__bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: rgba(255,255,255,.85);
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}

.ap-menu-toggle[aria-expanded="true"] .ap-menu-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ap-menu-toggle[aria-expanded="true"] .ap-menu-toggle__bar:nth-child(2) { opacity: 0; }
.ap-menu-toggle[aria-expanded="true"] .ap-menu-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Nav ────────────────────────────────────────────────── */

.ap-nav {
    background: #fff !important;
    border-bottom: 1px solid #ddd !important;
    border-top: none !important;
    position: static !important;
    overflow: hidden !important;
    max-height: 60px !important;
    opacity: 1 !important;
    transition: max-height .25s ease, opacity .25s ease !important;
    z-index: 100;
}

.ap-header.is-stuck .ap-nav {
    max-height: 0 !important;
    opacity: 0 !important;
    border-bottom: none !important;
}

.ap-nav-spacer { display: none !important; height: 0 !important; }

/* ─── Menú desktop ───────────────────────────────────────── */

.ap-menu {
    list-style: none !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.ap-menu > li {
    position: relative;
    list-style: none;
}

.ap-menu > li > a {
    display: block !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #000 !important;
    text-decoration: none;
    padding: 15px 16px;
    transition: color .2s;
    white-space: nowrap;
}

.ap-menu > li > a:hover,
.ap-menu > li.current-menu-item > a,
.ap-menu > li.current-menu-ancestor > a {
    color: #d71920 !important;
}

.ap-menu > li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 200;
}

.ap-menu > li:hover > .sub-menu,
.ap-menu > li:focus-within > .sub-menu { display: block; }

.ap-menu > li > .sub-menu li { list-style: none; }

.ap-menu > li > .sub-menu li a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000 !important;
    text-decoration: none;
    padding: 10px 16px;
    transition: background .15s;
}

.ap-menu > li > .sub-menu li a:hover {
    background: #f5f5f5;
    color: #d71920 !important;
}

/* ─── Header Responsive ──────────────────────────────────── */

@media (max-width: 768px) {
    .ap-topbar { display: none !important; }

    .ap-brandbar { padding: 10px 0 !important; }

    .ap-logo img  { max-height: 40px !important; }
    .ap-logo-text { font-size: 18px !important; }

    .ap-menu-toggle { display: flex !important; }

    .ap-search-field { width: 120px !important; }

    .ap-nav {
        max-height: none !important;
        opacity: 1 !important;
        border-bottom: 1px solid #eee !important;
        overflow: visible !important;
    }

    .ap-header.is-stuck .ap-nav {
        max-height: none !important;
        opacity: 1 !important;
        border-bottom: 1px solid #eee !important;
    }

    .ap-nav .ap-container { padding: 0 !important; }

    .ap-menu {
        flex-direction: column !important;
        align-items: stretch !important;
        max-height: 0 !important;
        overflow: hidden !important;
        background: #fff !important;
        transition: max-height .3s ease !important;
    }

    .ap-menu.is-open {
        max-height: 700px !important;
        overflow-y: auto !important;
    }

    .ap-menu > li { border-bottom: 1px solid #f0f0f0 !important; }
    .ap-menu > li:last-child { border-bottom: none !important; }

    .ap-menu > li > a {
        padding: 14px 16px !important;
        font-size: 13px !important;
        color: #111 !important;
        white-space: normal !important;
    }

    .ap-menu > li > a:hover,
    .ap-menu > li.current-menu-item > a {
        color: #d71920 !important;
        background: #fafaf8 !important;
    }

    .ap-menu > li > .sub-menu {
        display: block !important;
        position: static !important;
        border: none !important;
        box-shadow: none !important;
        background: #f7f7f5 !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height .25s ease !important;
    }

    .ap-menu > li.is-open > .sub-menu { max-height: 400px !important; }

    .ap-menu > li > .sub-menu li { border-top: 1px solid #ececec !important; }

    .ap-menu > li > .sub-menu li a {
        padding: 11px 16px 11px 28px !important;
        font-size: 12px !important;
        color: #555 !important;
    }

    .ap-menu > li > .sub-menu li a:hover {
        color: #d71920 !important;
        background: #f0f0ee !important;
    }
}

@media (max-width: 400px) {
    .ap-search-wrap { display: none !important; }
}


/* ════════════════════════════════════════════
   3. FOOTER
   ════════════════════════════════════════════ */

.ap-footer {
    margin-top: 40px;
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 80px 0 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    width: 100%;
}

.ap-footer .ap-container { background: transparent !important; }

.ap-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: start;
}

.ap-footer-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 15px;
    color: #fff;
}

.ap-footer-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 25px;
    color: #fff;
}

.ap-footer-text {
    color: #a1a1a1;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 300px;
}

.ap-footer-menu,
.ap-footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ap-footer-menu li,
.ap-footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a1a1a1;
}

.ap-footer-menu a {
    color: #a1a1a1;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 1.1rem;
}

.ap-footer-menu a:hover {
    color: #c1121f;
    padding-left: 5px;
}

.ap-footer-contact span {
    font-size: 1.2rem;
    filter: grayscale(100%);
}

.ap-footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 30px 0;
    margin-top: 20px;
    background-color: #050505;
}

.ap-footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.ap-footer-legal {
    display: flex;
    gap: 25px;
}

.ap-footer-legal a {
    color: #666;
    text-decoration: none;
    transition: color .3s;
}

.ap-footer-legal a:hover { color: #fff; }

@media (max-width: 991px) {
    .ap-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .ap-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .ap-footer-text { margin: 0 auto; }
    .ap-footer-menu li, .ap-footer-contact li { justify-content: center; }
    .ap-footer-bottom-flex { flex-direction: column; gap: 15px; text-align: center; }
}


/* ════════════════════════════════════════════
   4. HOME
   ════════════════════════════════════════════ */

.ap-home--pro {
    padding: 24px 0 50px;
}

.ap-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.7fr) minmax(280px,.8fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.ap-home-hero-main,
.ap-home-hero-rail { min-width: 0; }

/* Hero */
.ap-hero-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.ap-hero-story__media {
    min-height: 480px;
    background: #d8d8d8;
}

.ap-hero-story__content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ap-hero-story__title {
    margin: 0 0 14px;
    font-size: 4.6rem;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.02em;
}

.ap-hero-story__title a { color: #111; }
.ap-hero-story__title a:hover { color: var(--accent); }

.ap-hero-story__excerpt {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.6;
    color: #333;
}

/* Rail derecha */
.ap-rail-block {
    background: #fff;
    border-left: 1px solid #ddd;
    padding-left: 24px;
}

.ap-rail-block__title {
    margin: 0 0 18px;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
}

.ap-rail-story {
    padding: 0 0 16px;
    margin: 0 0 16px;
    border-bottom: 1px solid #e4e4e4;
}

.ap-rail-story:last-child { margin-bottom: 0; }

.ap-rail-story__title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
}

.ap-rail-story__title a { color: #111; }
.ap-rail-story__title a:hover { color: var(--accent); }

/* Strip de noticias */
.ap-news-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
    margin-bottom: 30px;
}

.ap-news-strip__label {
    flex-shrink: 0;
    background: #111;
    color: #fff;
    padding: 8px 12px;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ap-news-strip__items {
    display: flex;
    gap: 18px;
    overflow: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.ap-news-strip__items::-webkit-scrollbar { display: none; }

.ap-news-strip__item {
    font-size: 1.45rem;
    color: #111;
}

.ap-news-strip__item:hover { color: var(--accent); }

/* Secondary row */
.ap-home-secondary-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
    margin-bottom: 34px;
}

.ap-story-card {
    background: #fff;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.ap-story-card--horizontal .ap-story-card__media {
    height: 220px;
    background: #d8d8d8;
}

.ap-story-card__content { padding: 16px 0 0; }

.ap-story-card__title {
    margin: 0 0 10px;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 900;
}

.ap-story-card__title a { color: #111; }
.ap-story-card__title a:hover { color: var(--accent); }

.ap-story-card__excerpt {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.6;
    color: #333;
}

/* Home grid */
.ap-home-grid-section { margin-bottom: 40px; }

.ap-home-section-head {
    margin-bottom: 18px;
    border-bottom: 2px solid #111;
    padding-bottom: 10px;
}

.ap-home-section-head h2 {
    margin: 0;
    font-size: 2.6rem;
    text-transform: uppercase;
    font-weight: 900;
}

.ap-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 24px;
}

.ap-story-card--vertical {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.ap-story-card--vertical .ap-story-card__media--fixed {
    height: 220px;
    background: #d8d8d8;
}

.ap-story-card__content--grid { padding: 14px 0 0; }

.ap-story-card__title--small {
    margin: 0 0 8px;
    font-size: 1.9rem;
    line-height: 1.15;
    font-weight: 900;
}

.ap-story-card__title--small a { color: #111; }
.ap-story-card__title--small a:hover { color: var(--accent); }

.ap-story-card__excerpt--small {
    font-size: 1.4rem;
    line-height: 1.55;
    color: #333;
}

/* Shared card tags/meta */
.ap-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.ap-card-categories a {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #1a6bbf;
    background: #e8f1fb;
    padding: 3px 7px;
    border-radius: 3px;
    text-decoration: none;
    margin-right: 4px;
    margin-bottom: 4px;
    transition: background .2s, color .2s;
}

.ap-card-categories a:hover {
    background: #1a6bbf;
    color: #fff;
}

.ap-card-categories--small a { font-size: .95rem; padding: 3px 6px; }

.ap-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 8px;
}

/* Remove heavy shadows from home cards */
.ap-home--pro .ap-card,
.ap-home--pro .ap-story-card,
.ap-home--pro .ap-hero-story,
.ap-home--pro .ap-rail-block {
    box-shadow: none !important;
    border: 0 !important;
}

@media (max-width: 1199px) {
    .ap-hero-story__title { font-size: 3.8rem; }
    .ap-home-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 991px) {
    .ap-home-hero-grid { grid-template-columns: 1fr; }
    .ap-hero-story { grid-template-columns: 1fr; }
    .ap-hero-story__media { min-height: 340px; }
    .ap-rail-block { border-left: 0; padding-left: 0; }
    .ap-home-secondary-row { grid-template-columns: 1fr 1fr; }
    .ap-home-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .ap-hero-story__title { font-size: 2.8rem; }
    .ap-home-secondary-row, .ap-home-grid { grid-template-columns: 1fr; }
    .ap-hero-story__content { padding: 18px 0 0; }
    .ap-story-card__content { padding: 14px 0 0; }
}


/* ════════════════════════════════════════════
   5. HERO ASIMÉTRICO
   ════════════════════════════════════════════ */

.ap-section-hero { margin-bottom: 40px; }

.ap-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid rgba(0,0,0,.15);
}

.ap-hero__img {
    position: relative;
    overflow: hidden;
    background: #1a1a18;
}

.ap-hero__img a { display: block; width: 100%; height: 100%; }

.ap-hero__img img,
.ap-hero__img .ap-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.ap-hero__img a:hover img,
.ap-hero__img a:hover .ap-img-cover { transform: scale(1.04); }

.ap-hero__no-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: #2a2a28;
}

.ap-hero__body {
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 32px;
    position: relative;
}

.ap-hero__body::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: #e63329;
}

.ap-hero__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ap-hero__cats { display: flex; gap: 8px; flex-wrap: wrap; }

.ap-hero__cat {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #e63329;
    border: 0.5px solid #e63329;
    padding: 3px 8px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.ap-hero__cat:hover { background: #e63329; color: #fff; }

.ap-hero__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #f5f5f0;
    font-family: Georgia, serif;
    margin: 0;
}

.ap-hero__title a { color: inherit; text-decoration: none; }
.ap-hero__title a:hover { opacity: .85; }

.ap-hero__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #888;
    margin: 0;
}

.ap-hero__bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.ap-hero__meta {
    font-size: 12px;
    color: #555;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.ap-hero__meta-dot {
    width: 3px; height: 3px;
    background: #444;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.ap-hero__read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #f5f5f0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-bottom: 1px solid #333;
    padding-bottom: 4px;
    width: fit-content;
    transition: border-color .2s;
}

.ap-hero__read:hover { border-color: #e63329; }
.ap-hero__read:hover .ap-hero__read-arrow { transform: translateX(4px); }
.ap-hero__read-arrow { transition: transform .2s; }

@media (max-width: 768px) {
    .ap-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ap-hero__img { aspect-ratio: 16/9; min-height: auto; }
    .ap-hero__img a { aspect-ratio: 16/9; }
    .ap-hero__body { padding: 24px 20px; }
    .ap-hero__body::before { width: 100%; height: 3px; top: 0; left: 0; }
    .ap-hero__title { font-size: 20px; }
}


/* ════════════════════════════════════════════
   6. LO ÚLTIMO (versión final)
   ════════════════════════════════════════════ */

.ap-section-lo-ultimo {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-lo-ultimo .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.ap-section-block__title--label {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.ap-lo-ultimo__cat {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #d71920;
    margin-bottom: 4px;
}

/* Layout: featured | lista */
.ap-lo-ultimo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    border-top: 2px solid #111;
    padding-top: 20px;
}

/* Featured */
.ap-lo-ultimo-featured {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: start;
    padding-right: 32px;
    border-right: 0.5px solid rgba(0,0,0,.1);
    min-width: 0;
}

.ap-lo-ultimo-featured__img {
    display: block;
    width: 220px;
    aspect-ratio: 3/4;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e8e4;
}

.ap-lo-ultimo-featured__img img,
.ap-lo-ultimo-featured__img .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-lo-ultimo-featured__img:hover img,
.ap-lo-ultimo-featured__img:hover .ap-img-cover { transform: scale(1.03); }

.ap-lo-ultimo-featured__no-img {
    width: 100%; height: 100%; min-height: 280px;
    background: #e8e8e4;
}

.ap-lo-ultimo-featured__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.ap-lo-ultimo-featured__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0;
}

.ap-lo-ultimo-featured__title a { color: #111; text-decoration: none; }
.ap-lo-ultimo-featured__title a:hover { color: #d71920; }

.ap-lo-ultimo-featured__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Lista derecha */
.ap-lo-ultimo-list {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ap-lo-ultimo-row {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
}

.ap-lo-ultimo-row:first-child { padding-top: 0; }
.ap-lo-ultimo-row:last-child { border-bottom: none; padding-bottom: 0; }

.ap-lo-ultimo-row__body {
    display: flex; flex-direction: column; gap: 6px; min-width: 0;
}

.ap-lo-ultimo-row__title {
    font-size: 18px; font-weight: 700;
    line-height: 1.2; letter-spacing: -.01em; margin: 0;
}

.ap-lo-ultimo-row__title a { color: #111; text-decoration: none; }
.ap-lo-ultimo-row__title a:hover { color: #d71920; }

.ap-lo-ultimo-row__thumb {
    display: block; width: 110px; aspect-ratio: 3/2;
    overflow: hidden; flex-shrink: 0; background: #e8e8e4;
}

.ap-lo-ultimo-row__thumb img,
.ap-lo-ultimo-row__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-lo-ultimo-row__thumb:hover img,
.ap-lo-ultimo-row__thumb:hover .ap-img-cover { transform: scale(1.05); }

.ap-lo-ultimo-row__no-img {
    width: 100%; height: 100%; background: #e8e8e4;
}

.ap-section-lo-ultimo .ap-card-meta {
    font-size: 12px; color: #999;
    display: flex; gap: 5px; flex-wrap: wrap;
}

@media (max-width: 900px) {
    .ap-lo-ultimo-layout { grid-template-columns: 1fr; }
    .ap-lo-ultimo-featured {
        padding-right: 0; border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,.1);
        padding-bottom: 24px; margin-bottom: 8px;
    }
    .ap-lo-ultimo-list { padding-left: 0; }
}

@media (max-width: 600px) {
    .ap-lo-ultimo-featured { grid-template-columns: 140px 1fr; gap: 14px; }
    .ap-lo-ultimo-featured__img { width: 140px; }
    .ap-lo-ultimo-featured__title { font-size: 18px; }
    .ap-lo-ultimo-row { grid-template-columns: 1fr 80px; gap: 12px; }
    .ap-lo-ultimo-row__thumb { width: 80px; }
    .ap-lo-ultimo-row__title { font-size: 15px; }
}


/* ════════════════════════════════════════════
   7. SECCIÓN POLÍTICA (versión final)
   ════════════════════════════════════════════ */

.ap-section-politica {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-politica .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 2px solid currentColor;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.ap-section-politica .ap-section-block__title a {
    color: inherit;
    text-decoration: none;
}

/* Layout: side | main | side  — 1 : 1.5 : 1 */
.ap-politica-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 0;
    align-items: start;
}

.ap-politica-col--side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Columna lateral izquierda */
.ap-politica-col--side:first-child .ap-politica-side-featured {
    padding-right: 20px;
    border-right: 0.5px solid rgba(0,0,0,.12);
}

.ap-politica-col--side:last-child .ap-politica-side-featured {
    padding-left: 20px;
    border-left: 0.5px solid rgba(0,0,0,.12);
}

.ap-politica-side-featured__media {
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ap-politica-side-featured__media img,
.ap-politica-side-featured__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-politica-side-featured__media:hover img,
.ap-politica-side-featured__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-politica-side-featured__body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 0.5px solid rgba(0,0,0,.12);
}

.ap-politica-side-featured__title {
    font-size: 15px; font-weight: 500; line-height: 1.35; margin: 0;
}

.ap-politica-side-featured__title a { color: inherit; text-decoration: none; }
.ap-politica-side-featured__title a:hover { opacity: .75; }

/* Nota menor lateral */
.ap-politica-col--side:first-child .ap-politica-side-minor {
    padding-right: 20px;
    border-right: 0.5px solid rgba(0,0,0,.12);
}

.ap-politica-col--side:last-child .ap-politica-side-minor {
    padding-left: 20px;
    border-left: 0.5px solid rgba(0,0,0,.12);
}

.ap-politica-side-minor {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: start;
}

.ap-politica-side-minor__thumb {
    display: block; width: 64px; height: 52px;
    border-radius: 4px; overflow: hidden; flex-shrink: 0;
}

.ap-politica-side-minor__thumb img,
.ap-politica-side-minor__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-politica-side-minor__thumb:hover img,
.ap-politica-side-minor__thumb:hover .ap-img-cover { transform: scale(1.06); }

.ap-politica-side-minor__body { display: flex; flex-direction: column; gap: 4px; }

.ap-politica-side-minor__title {
    font-size: 13px; font-weight: 500; line-height: 1.35; margin: 0;
}

.ap-politica-side-minor__title a { color: inherit; text-decoration: none; }
.ap-politica-side-minor__title a:hover { opacity: .75; }

/* Columna central */
.ap-politica-col--main { padding: 0 20px; }

.ap-politica-main__media {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 14px;
}

.ap-politica-main__media img,
.ap-politica-main__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-politica-main__media:hover img,
.ap-politica-main__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-politica-main__body { display: flex; flex-direction: column; gap: 7px; }

.ap-politica-main__title {
    font-size: 21px; font-weight: 500; line-height: 1.3; margin: 0;
}

.ap-politica-main__title a { color: inherit; text-decoration: none; }
.ap-politica-main__title a:hover { opacity: .75; }

.ap-politica-main__excerpt {
    font-size: 14px; line-height: 1.6; color: #555; margin: 0;
}

@media (max-width: 960px) {
    .ap-politica-layout { grid-template-columns: 1fr 1fr; gap: 20px; }
    .ap-politica-col--main {
        grid-column: 1/-1; padding: 0 0 20px;
        border-bottom: 0.5px solid rgba(0,0,0,.12); order: -1;
    }
    .ap-politica-col--side:first-child .ap-politica-side-featured,
    .ap-politica-col--side:first-child .ap-politica-side-minor {
        padding-right: 0; border-right: none;
    }
    .ap-politica-col--side:last-child .ap-politica-side-featured,
    .ap-politica-col--side:last-child .ap-politica-side-minor {
        padding-left: 0; border-left: none;
    }
}

@media (max-width: 600px) {
    .ap-politica-layout { grid-template-columns: 1fr; }
    .ap-politica-col--side:first-child {
        border-bottom: 0.5px solid rgba(0,0,0,.12); padding-bottom: 20px;
    }
}


/* ════════════════════════════════════════════
   8. SECCIÓN INTERNACIONAL (versión final)
   ════════════════════════════════════════════ */

.ap-section-internacional {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-internacional .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.ap-section-internacional .ap-section-block__title {
    font-size: 22px; font-weight: 500; margin: 0;
}

.ap-section-internacional .ap-section-block__title a {
    color: #2453ff; text-decoration: none;
}

.ap-section-internacional .ap-section-block__title a:hover { text-decoration: underline; }

/* Layout */
.ap-internacional-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 0;
    align-items: start;
}

.ap-internacional-layout > * { min-width: 0; }

.ap-internacional-main {
    min-width: 0;
    padding-right: 24px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-internacional-side { padding-left: 24px; }

/* Hero */
.ap-int-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
    overflow: hidden;
}

.ap-int-hero__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ap-int-hero__cats a {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: #2453ff; border: 1px solid #2453ff;
    padding: 2px 7px; border-radius: 2px; text-decoration: none;
    margin-right: 4px;
    transition: background .15s, color .15s;
}

.ap-int-hero__cats a:hover { background: #2453ff; color: #fff; }

.ap-int-hero__title {
    font-size: 20px; font-weight: 600;
    line-height: 1.28; margin: 0;
    word-break: break-word; overflow-wrap: break-word;
}

.ap-int-hero__title a { color: #111; text-decoration: none; }
.ap-int-hero__title a:hover { opacity: .75; }

.ap-int-hero__excerpt {
    font-size: 13px; line-height: 1.6; color: #555; margin: 0;
}

.ap-int-hero__media {
    display: block; width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden; border-radius: 5px; min-width: 0;
}

.ap-int-hero__media img,
.ap-int-hero__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-int-hero__media:hover img,
.ap-int-hero__media:hover .ap-img-cover { transform: scale(1.03); }

/* Mini grid 2x2 con thumbnail */
.ap-int-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ap-int-mini-story {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.08);
}

.ap-int-mini-story:nth-child(odd) {
    padding-right: 16px;
    border-right: 0.5px solid rgba(0,0,0,.08);
}

.ap-int-mini-story:nth-child(even) { padding-left: 16px; }

.ap-int-mini-story:nth-child(3),
.ap-int-mini-story:nth-child(4) { border-bottom: none; padding-bottom: 0; }

.ap-int-mini-story__thumb {
    display: block; width: 56px; height: 44px;
    border-radius: 3px; overflow: hidden; flex-shrink: 0;
    background: #e8e8e4;
}

.ap-int-mini-story__thumb img,
.ap-int-mini-story__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-int-mini-story__thumb:hover img,
.ap-int-mini-story__thumb:hover .ap-img-cover { transform: scale(1.06); }

.ap-int-mini-story__body { display: flex; flex-direction: column; gap: 4px; }

.ap-int-mini-story__title {
    font-size: 13px; font-weight: 600; line-height: 1.3; margin: 0;
}

.ap-int-mini-story__title a { color: #111; text-decoration: none; }
.ap-int-mini-story__title a:hover { opacity: .75; }

/* Commentary sidebar */
.ap-commentary-label {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: #2453ff;
    margin-bottom: 14px; padding-bottom: 8px;
    border-bottom: 2px solid #2453ff;
}

.ap-commentary-card {
    display: flex; flex-direction: column; gap: 0;
}

.ap-commentary-card__media {
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden; border-radius: 4px; margin-bottom: 12px;
}

.ap-commentary-card__media img,
.ap-commentary-card__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-commentary-card__media:hover img,
.ap-commentary-card__media:hover .ap-img-cover { transform: scale(1.04); }

.ap-commentary-card__body { display: flex; flex-direction: column; gap: 7px; }

.ap-commentary-card__cats { display: flex; flex-wrap: wrap; gap: 4px; }

.ap-commentary-card__cats a {
    display: inline-block;
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: #2453ff; border: 1px solid #2453ff;
    padding: 2px 6px; border-radius: 2px; text-decoration: none;
    transition: background .15s, color .15s;
}

.ap-commentary-card__cats a:hover { background: #2453ff; color: #fff; }

.ap-commentary-card__title {
    font-size: 14px; font-weight: 600;
    line-height: 1.3; margin: 0;
    font-family: Georgia, serif;
}

.ap-commentary-card__title a { color: #111; text-decoration: none; }
.ap-commentary-card__title a:hover { opacity: .75; }

.ap-commentary-card__author {
    font-size: 12px; color: #2453ff; font-style: italic;
}

.ap-commentary-empty {
    font-size: 13px; color: #999; line-height: 1.5;
    padding: 14px; background: #f7f7f5;
    border-radius: 4px;
    border: 0.5px dashed rgba(0,0,0,.12);
}

.ap-commentary-more {
    margin-top: 16px; padding-top: 12px;
    border-top: 0.5px solid rgba(0,0,0,.1);
}

.ap-commentary-more a {
    font-size: 12px; color: #2453ff; text-decoration: none; font-weight: 500;
}

.ap-commentary-more a:hover { text-decoration: underline; }

.ap-section-block__more {
    font-size: 13px; color: #888;
    text-decoration: none; margin-left: auto;
}

.ap-section-block__more:hover { color: inherit; }

@media (max-width: 900px) {
    .ap-internacional-layout { grid-template-columns: 1fr; }
    .ap-internacional-main {
        padding-right: 0; border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,.1);
        padding-bottom: 24px; margin-bottom: 24px;
    }
    .ap-internacional-side { padding-left: 0; }
}

@media (max-width: 768px) {
    .ap-int-hero {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .ap-int-hero__media {
        order: -1;
        aspect-ratio: 16/9; width: 100%; min-width: 0;
    }
    .ap-int-hero__title { font-size: 18px; }
    .ap-int-mini-grid { grid-template-columns: 1fr; }
    .ap-int-mini-story {
        padding: 12px 0;
        border-right: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        border-bottom: 0.5px solid rgba(0,0,0,.08);
    }
    .ap-int-mini-story:nth-child(3),
    .ap-int-mini-story:nth-child(4) { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 400px) {
    .ap-int-hero__title { font-size: 16px; }
    .ap-int-mini-story__title { font-size: 12px; }
}


/* ════════════════════════════════════════════
   9. SECCIÓN OPINIÓN (versión final)
   ════════════════════════════════════════════ */

.ap-section-opinion {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-opinion .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.ap-section-block__title--serif {
    font-size: 38px; font-weight: 700;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic; margin: 0; line-height: 1;
}

.ap-section-block__title--serif a { color: #111; text-decoration: none; }
.ap-section-block__title--serif a:hover { color: #d71920; }

/* Layout: hero | minis */
.ap-opinion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Hero */
.ap-opinion-hero {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
}

.ap-opinion-hero__media {
    display: block; width: 180px;
    aspect-ratio: 3/2; overflow: hidden;
    border-radius: 4px; flex-shrink: 0;
}

.ap-opinion-hero__media img,
.ap-opinion-hero__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-opinion-hero__media:hover img,
.ap-opinion-hero__media:hover .ap-img-cover { transform: scale(1.04); }

.ap-opinion-hero__body {
    display: flex; flex-direction: column; gap: 10px;
}

.ap-opinion-hero__cats a {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: #111; border: 1px solid #111;
    padding: 3px 7px; border-radius: 2px; text-decoration: none;
    margin-right: 5px;
    transition: background .2s, color .2s;
}

.ap-opinion-hero__cats a:hover { background: #111; color: #fff; }

.ap-opinion-hero__title {
    font-size: 22px; font-weight: 800;
    line-height: 1.2; margin: 0;
}

.ap-opinion-hero__title a { color: #111; text-decoration: none; }
.ap-opinion-hero__title a:hover { color: #d71920; }

.ap-opinion-hero__author { font-size: 13px; color: #1a6bbf; font-style: italic; }

/* Lista de minis */
.ap-opinion-mini-list {
    display: flex; flex-direction: column; gap: 0;
    border-left: 0.5px solid rgba(0,0,0,.1);
    padding-left: 32px;
}

.ap-opinion-mini {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.08);
}

.ap-opinion-mini:first-child { padding-top: 0; }
.ap-opinion-mini:last-child { border-bottom: none; padding-bottom: 0; }

.ap-opinion-mini__avatar {
    display: block; width: 64px; height: 64px;
    border-radius: 50%; overflow: hidden;
    flex-shrink: 0; background: #e8e8e4;
}

.ap-opinion-mini__avatar img,
.ap-opinion-mini__avatar .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-opinion-mini__avatar:hover img,
.ap-opinion-mini__avatar:hover .ap-img-cover { transform: scale(1.06); }

.ap-opinion-mini__body { display: flex; flex-direction: column; gap: 5px; }

.ap-opinion-mini__title {
    font-size: 13px; font-weight: 800; line-height: 1.3;
    text-transform: uppercase; letter-spacing: .01em; margin: 0;
}

.ap-opinion-mini__title a { color: #111; text-decoration: none; }
.ap-opinion-mini__title a:hover { color: #d71920; }

.ap-opinion-mini__author { font-size: 12px; color: #1a6bbf; font-style: italic; }

@media (max-width: 900px) {
    .ap-opinion-layout { grid-template-columns: 1fr; gap: 0; }
    .ap-opinion-mini-list {
        border-left: none; padding-left: 0;
        border-top: 0.5px solid rgba(0,0,0,.1);
        padding-top: 4px; margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .ap-opinion-hero { grid-template-columns: 120px 1fr; gap: 14px; }
    .ap-opinion-hero__media { width: 120px; }
    .ap-opinion-hero__title { font-size: 18px; }
    .ap-section-block__title--serif { font-size: 28px; }
}


/* ════════════════════════════════════════════
   10. SECCIÓN ECONOMÍA (versión final)
   ════════════════════════════════════════════ */

.ap-section-economia {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-economia .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 2px solid currentColor;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.ap-section-economia .ap-section-block__title a {
    color: inherit; text-decoration: none;
}

/* Layout 3 cols: 1 : 1.4 : 1 */
.ap-econ-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 0;
    align-items: start;
}

/* Columna izquierda */
.ap-econ-left {
    padding-right: 20px;
    border-right: 0.5px solid rgba(0,0,0,.12);
}

.ap-econ-left__media {
    display: block; aspect-ratio: 3/2;
    overflow: hidden; border-radius: 6px; margin-bottom: 12px;
}

.ap-econ-left__media img,
.ap-econ-left__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-econ-left__media:hover img,
.ap-econ-left__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-econ-left__body { display: flex; flex-direction: column; gap: 6px; }

.ap-econ-left__title { font-size: 16px; font-weight: 500; line-height: 1.35; margin: 0; }
.ap-econ-left__title a { color: inherit; text-decoration: none; }
.ap-econ-left__title a:hover { opacity: .75; }

.ap-econ-left__excerpt { font-size: 13px; line-height: 1.6; color: #666; margin: 0; }

/* Columna central */
.ap-econ-main {
    padding: 0 20px;
    border-right: 0.5px solid rgba(0,0,0,.12);
}

.ap-econ-main__media {
    display: block; aspect-ratio: 16/10;
    overflow: hidden; border-radius: 6px; margin-bottom: 14px;
}

.ap-econ-main__media img,
.ap-econ-main__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-econ-main__media:hover img,
.ap-econ-main__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-econ-main__body { display: flex; flex-direction: column; gap: 7px; }

.ap-econ-main__title { font-size: 20px; font-weight: 500; line-height: 1.3; margin: 0; }
.ap-econ-main__title a { color: inherit; text-decoration: none; }
.ap-econ-main__title a:hover { opacity: .75; }

.ap-econ-main__excerpt { font-size: 14px; line-height: 1.6; color: #555; margin: 0; }

/* Columna derecha: lista */
.ap-econ-list {
    padding-left: 20px;
    display: flex; flex-direction: column; gap: 0;
}

.ap-econ-list__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.12);
}

.ap-econ-list__item:first-child { padding-top: 0; }
.ap-econ-list__item:last-child { border-bottom: none; padding-bottom: 0; }

.ap-econ-list__thumb {
    display: block; width: 72px; height: 54px;
    border-radius: 4px; overflow: hidden; flex-shrink: 0;
}

.ap-econ-list__thumb img,
.ap-econ-list__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-econ-list__thumb:hover img,
.ap-econ-list__thumb:hover .ap-img-cover { transform: scale(1.06); }

.ap-econ-list__body { display: flex; flex-direction: column; gap: 4px; }

.ap-econ-list__title { font-size: 13px; font-weight: 500; line-height: 1.35; margin: 0; }
.ap-econ-list__title a { color: inherit; text-decoration: none; }
.ap-econ-list__title a:hover { opacity: .75; }

@media (max-width: 900px) {
    .ap-econ-layout { grid-template-columns: 1fr 1fr; gap: 20px; }
    .ap-econ-left {
        padding-right: 0; border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,.12);
        padding-bottom: 20px; grid-column: 1/-1;
    }
    .ap-econ-main { padding: 0; border-right: none; }
}

@media (max-width: 600px) {
    .ap-econ-layout { grid-template-columns: 1fr; }
    .ap-econ-main {
        border-bottom: 0.5px solid rgba(0,0,0,.12); padding-bottom: 20px;
    }
    .ap-econ-list { padding-left: 0; }
}


/* ════════════════════════════════════════════
   11. SECCIÓN ENERGÍA
   ════════════════════════════════════════════ */

.ap-section-energia {
    background-color: #eef4ee;
    border-radius: 10px;
    margin-bottom: 40px;
}

.ap-energia-inner { padding: 28px 32px 32px; }

.ap-section-energia .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 2px solid #4a7c4e;
    padding-bottom: 6px;
    margin-bottom: 22px;
}

.ap-section-energia .ap-section-block__title {
    font-size: 22px; font-weight: 500; margin: 0;
}

.ap-section-energia .ap-section-block__title a { color: #2d5a31; text-decoration: none; }

.ap-section-energia .ap-section-block__more { font-size: 13px; color: #6a9a6e; text-decoration: none; margin-left: auto; }
.ap-section-energia .ap-section-block__more:hover { color: #2d5a31; }

/* Layout */
.ap-energia-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 0;
    align-items: start;
}

.ap-energia-left {
    padding-right: 20px;
    border-right: 0.5px solid #c2d9c4;
}

.ap-energia-main {
    padding: 0 20px;
    border-right: 0.5px solid #c2d9c4;
}

.ap-energia-list { padding-left: 20px; }

/* Izquierda */
.ap-energia-left__media {
    display: block; aspect-ratio: 3/2;
    overflow: hidden; border-radius: 6px; margin-bottom: 12px;
}

.ap-energia-left__media img,
.ap-energia-left__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-energia-left__media:hover img,
.ap-energia-left__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-energia-left__body { display: flex; flex-direction: column; gap: 6px; }

.ap-energia-left__title { font-size: 16px; font-weight: 500; line-height: 1.35; margin: 0; }
.ap-energia-left__title a { color: #1e3d21; text-decoration: none; }
.ap-energia-left__title a:hover { opacity: .75; }

.ap-energia-left__excerpt { font-size: 13px; line-height: 1.6; color: #5a7a5d; margin: 0; }

/* Central */
.ap-energia-main__media {
    display: block; aspect-ratio: 16/10;
    overflow: hidden; border-radius: 6px; margin-bottom: 14px;
}

.ap-energia-main__media img,
.ap-energia-main__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-energia-main__media:hover img,
.ap-energia-main__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-energia-main__body { display: flex; flex-direction: column; gap: 7px; }

.ap-energia-main__title { font-size: 20px; font-weight: 500; line-height: 1.3; margin: 0; }
.ap-energia-main__title a { color: #1e3d21; text-decoration: none; }
.ap-energia-main__title a:hover { opacity: .75; }

.ap-energia-main__excerpt { font-size: 14px; line-height: 1.6; color: #5a7a5d; margin: 0; }

/* Lista derecha */
.ap-energia-list__item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 0.5px solid #c2d9c4;
}

.ap-energia-list__item:first-child { padding-top: 0; }
.ap-energia-list__item:last-child { border-bottom: none; padding-bottom: 0; }

.ap-energia-list__thumb {
    display: block; width: 68px; height: 52px;
    border-radius: 4px; overflow: hidden; flex-shrink: 0;
}

.ap-energia-list__thumb img,
.ap-energia-list__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-energia-list__thumb:hover img,
.ap-energia-list__thumb:hover .ap-img-cover { transform: scale(1.06); }

.ap-energia-list__body { display: flex; flex-direction: column; gap: 4px; }

.ap-energia-list__title { font-size: 13px; font-weight: 500; line-height: 1.35; margin: 0; }
.ap-energia-list__title a { color: #1e3d21; text-decoration: none; }
.ap-energia-list__title a:hover { opacity: .75; }

.ap-section-energia .ap-card-meta {
    font-size: 12px; color: #6a9a6e;
    display: flex; gap: 5px;
}

@media (max-width: 900px) {
    .ap-energia-layout { grid-template-columns: 1fr 1fr; gap: 20px; }
    .ap-energia-left {
        padding-right: 0; border-right: none;
        border-bottom: 0.5px solid #c2d9c4;
        padding-bottom: 20px; grid-column: 1/-1;
    }
    .ap-energia-main { padding: 0; border-right: none; }
    .ap-energia-list {
        border-left: 0.5px solid #c2d9c4;
        padding-left: 20px;
    }
}

@media (max-width: 600px) {
    .ap-energia-inner { padding: 20px 18px 24px; }
    .ap-energia-layout { grid-template-columns: 1fr; gap: 0; }
    .ap-energia-main {
        padding: 0; border-right: none;
        border-bottom: 0.5px solid #c2d9c4;
        padding-bottom: 20px; margin-bottom: 20px;
    }
    .ap-energia-list { padding-left: 0; border-left: none; }
}


/* ════════════════════════════════════════════
   12. SINGLE POST (versión final)
   ════════════════════════════════════════════ */

.ap-single-wrap { padding: 36px 0 64px; }

.ap-single-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 48px;
    align-items: start;
}

.ap-single { min-width: 0; }

.ap-sidebar-column { position: sticky; top: 24px; }

/* Categorías */
.ap-single-cats {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}

.ap-single-cat {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: #1a6bbf; background: #e8f1fb;
    padding: 3px 8px; border-radius: 3px; text-decoration: none;
    transition: background .2s, color .2s;
}

.ap-single-cat:hover { background: #1a6bbf; color: #fff; }

/* Título */
.ap-single-title {
    font-size: 36px; font-weight: 800;
    line-height: 1.12; letter-spacing: -.02em;
    margin: 0 0 16px; color: #111;
}

/* Bajada */
.ap-single-deck {
    font-size: 19px; line-height: 1.55; color: #444;
    font-weight: 400; margin: 0 0 18px;
    border-left: 3px solid #d71920; padding-left: 16px;
}

/* Meta */
.ap-single-meta {
    display: flex; align-items: center; gap: 6px;
    flex-wrap: wrap; font-size: 13px; color: #888;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
}

.ap-single-meta__author { font-weight: 600; color: #444; }
.ap-single-meta__sep { color: #ccc; }

/* Imagen */
.ap-single-media { margin: 0 0 32px; }

.ap-single-media__img {
    width: 100%; height: auto; display: block; border-radius: 6px;
}

.ap-single-media__caption {
    font-size: 12px; color: #999; margin-top: 8px;
    font-style: italic; line-height: 1.5;
}

/* Contenido */
.ap-single-content { font-size: 18px; line-height: 1.78; color: #222; }
.ap-single-content p { margin: 0 0 22px; }
.ap-single-content h2 { font-size: 24px; font-weight: 700; line-height: 1.2; margin: 36px 0 14px; color: #111; }
.ap-single-content h3 { font-size: 20px; font-weight: 700; line-height: 1.25; margin: 28px 0 12px; color: #111; }
.ap-single-content ul, .ap-single-content ol { padding-left: 24px; margin: 0 0 22px; }
.ap-single-content li { margin-bottom: 8px; }

.ap-single-content blockquote {
    margin: 28px 0; padding: 20px 24px;
    border-left: 3px solid #d71920;
    background: #fafaf8;
    font-size: 19px; line-height: 1.6; color: #333; font-style: italic;
}

.ap-single-content blockquote p { margin: 0; }

.ap-single-content a { color: #1a6bbf; text-decoration: underline; text-underline-offset: 2px; }
.ap-single-content a:hover { color: #d71920; }
.ap-single-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 8px 0; }

/* Footer del artículo */
.ap-single-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-top: 40px; padding: 20px 0;
    border-top: 0.5px solid rgba(0,0,0,.1);
    border-bottom: 0.5px solid rgba(0,0,0,.1);
}

.ap-single-footer__author { font-size: 13px; color: #888; font-style: italic; white-space: nowrap; }

/* Label de sección */
.ap-block-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    color: #111; border-bottom: 2px solid #111; padding-bottom: 8px; margin-bottom: 20px;
}

/* Seguí leyendo */
.ap-next-reading { margin-top: 48px; }

.ap-next-reading-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    border: 0.5px solid rgba(0,0,0,.1);
    border-radius: 6px;
    overflow: hidden;
}

.ap-next-reading-card__media {
    display: block; overflow: hidden; background: #e8e8e4;
}

.ap-next-reading-card__media img,
.ap-next-reading-card__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s ease;
}

.ap-next-reading-card__media:hover img,
.ap-next-reading-card__media:hover .ap-img-cover { transform: scale(1.04); }

.ap-next-reading-card__no-img {
    width: 100%; height: 100%; min-height: 200px; background: #e8e8e4;
}

.ap-next-reading-card__body {
    padding: 24px 28px;
    display: flex; flex-direction: column; justify-content: center; gap: 10px;
    background: #fafaf8;
}

.ap-next-reading-card__title { font-size: 20px; font-weight: 700; line-height: 1.25; margin: 0; }
.ap-next-reading-card__title a { color: #111; text-decoration: none; }
.ap-next-reading-card__title a:hover { color: #d71920; }

.ap-next-reading-card__excerpt { font-size: 14px; line-height: 1.6; color: #666; margin: 0; }

.ap-next-reading-card__cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
    color: #111; text-decoration: none;
    border-bottom: 1px solid #ccc; padding-bottom: 2px; width: fit-content; margin-top: 4px;
    transition: border-color .2s, color .2s;
}

.ap-next-reading-card__cta:hover { color: #d71920; border-color: #d71920; }

/* Notas relacionadas */
.ap-related { margin-top: 48px; }

.ap-related-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}

.ap-related-card__media {
    display: block; aspect-ratio: 3/2;
    overflow: hidden; border-radius: 5px; margin-bottom: 12px; background: #e8e8e4;
}

.ap-related-card__media img,
.ap-related-card__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-related-card__media:hover img,
.ap-related-card__media:hover .ap-img-cover { transform: scale(1.04); }

.ap-related-card__body { display: flex; flex-direction: column; gap: 6px; }

.ap-related-card__title { font-size: 15px; font-weight: 600; line-height: 1.35; margin: 0; }
.ap-related-card__title a { color: #111; text-decoration: none; }
.ap-related-card__title a:hover { color: #d71920; }

@media (max-width: 1024px) {
    .ap-single-layout { grid-template-columns: 1fr; }
    .ap-sidebar-column { position: static; }
}

@media (max-width: 768px) {
    .ap-single-title { font-size: 26px; }
    .ap-single-deck { font-size: 16px; }
    .ap-single-content { font-size: 17px; }
    .ap-next-reading-card { grid-template-columns: 1fr; }
    .ap-next-reading-card__media { aspect-ratio: 16/9; }
    .ap-next-reading-card__body { padding: 20px; }
    .ap-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .ap-single-title { font-size: 22px; }
    .ap-related-grid { grid-template-columns: 1fr; }
    .ap-single-footer { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════════
   13. ARCHIVO / CATEGORÍA (versión final)
   ════════════════════════════════════════════ */

.ap-main-archive { padding: 32px 0 60px; }

.ap-archive-header {
    margin-bottom: 32px; padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(0,0,0,.12);
}

.ap-archive-header__kicker {
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .1em;
    color: #999; margin-bottom: 6px;
}

.ap-archive-header__title {
    font-size: 32px; font-weight: 500;
    line-height: 1.15; color: #111;
    margin: 0 0 8px; text-transform: none;
}

.ap-archive-header__desc {
    font-size: 15px; line-height: 1.6; color: #666;
    max-width: 640px; margin: 0;
}

/* Featured */
.ap-archive-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; align-items: center;
    margin-bottom: 40px; padding-bottom: 40px;
    border-bottom: 0.5px solid rgba(0,0,0,.12);
}

.ap-archive-featured__media {
    display: block; aspect-ratio: 16/10;
    overflow: hidden; border-radius: 8px;
}

.ap-archive-featured__media img,
.ap-archive-featured__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s ease;
}

.ap-archive-featured__media:hover img,
.ap-archive-featured__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-archive-featured__body {
    display: flex; flex-direction: column; gap: 12px;
}

.ap-archive-featured__title { font-size: 26px; font-weight: 500; line-height: 1.25; margin: 0; }
.ap-archive-featured__title a { color: inherit; text-decoration: none; }
.ap-archive-featured__title a:hover { opacity: .75; }

.ap-archive-featured__excerpt { font-size: 15px; line-height: 1.65; color: #555; margin: 0; }

/* Grilla */
.ap-archive-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 32px 24px;
}

.ap-archive-card { display: flex; flex-direction: column; gap: 0; }

.ap-archive-card__media {
    display: block; aspect-ratio: 3/2;
    overflow: hidden; border-radius: 6px; margin-bottom: 12px;
}

.ap-archive-card__media img,
.ap-archive-card__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-archive-card__media:hover img,
.ap-archive-card__media:hover .ap-img-cover { transform: scale(1.04); }

.ap-archive-card__body { display: flex; flex-direction: column; gap: 6px; }

.ap-archive-card__title { font-size: 16px; font-weight: 500; line-height: 1.35; margin: 0; }
.ap-archive-card__title a { color: inherit; text-decoration: none; }
.ap-archive-card__title a:hover { opacity: .75; }

.ap-archive-card__excerpt { font-size: 13px; line-height: 1.6; color: #666; margin: 0; }

/* Paginación */
.ap-pagination {
    margin-top: 48px; padding-top: 24px;
    border-top: 0.5px solid rgba(0,0,0,.12);
}

.ap-pagination .nav-links {
    display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}

.ap-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    font-size: 13px; color: #444; text-decoration: none;
    border: 0.5px solid rgba(0,0,0,.15); border-radius: 4px;
    transition: background .2s, color .2s;
}

.ap-pagination .page-numbers:hover { background: #f5f5f3; }

.ap-pagination .page-numbers.current {
    background: #111; color: #fff; border-color: #111;
}

.ap-pagination .page-numbers.dots { border: none; background: none; }

.ap-archive-empty { padding: 48px 0; font-size: 15px; color: #888; }

@media (max-width: 900px) { .ap-archive-grid { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 640px) {
    .ap-archive-featured { grid-template-columns: 1fr; gap: 16px; }
    .ap-archive-featured__title { font-size: 20px; }
    .ap-archive-grid { grid-template-columns: 1fr; gap: 24px; }
    .ap-archive-header__title { font-size: 24px; }
}


/* ════════════════════════════════════════════
   14. WIDGETS / SIDEBAR
   ════════════════════════════════════════════ */

.ap-widget {
    background: #fff;
    border: 4px solid #000;
    box-shadow: var(--shadow);
    padding: 18px;
    margin-bottom: 24px;
}

.ap-widget-title {
    margin: 0 0 14px;
    font-size: 2rem; font-weight: 900; text-transform: uppercase;
}

.ap-side-list { list-style: none; }

.ap-side-list li {
    border-top: 1px solid #ddd; padding: 12px 0;
}

.ap-side-list li:first-child { border-top: none; padding-top: 0; }


/* ════════════════════════════════════════════
   15. SECCIÓN RECIENTES / RECENT GRID
   ════════════════════════════════════════════ */

.ap-recientes-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.ap-section-header {
    display: flex; align-items: center; gap: 20px; margin-bottom: 35px;
}

.ap-section-title {
    font-size: 1.5rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1px;
    color: #000; white-space: nowrap; margin: 0;
}

.ap-section-line { height: 2px; background-color: #e5e7eb; width: 100%; }

/* Grid 4 columnas */
.ap-recientes-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 25px;
}

.ap-reciente-card { display: flex; flex-direction: column; gap: 15px; }

.ap-reciente-media {
    position: relative; display: block; width: 100%;
    overflow: hidden; border-radius: 4px;
}

.ap-reciente-media img {
    width: 100%; height: auto;
    aspect-ratio: 3/2; object-fit: cover; display: block;
    transition: transform .4s ease;
}

.ap-reciente-card:hover .ap-reciente-media img { transform: scale(1.05); }

.ap-reciente-tag {
    position: absolute; bottom: 10px; left: 10px;
    background: #c1121f; color: #fff;
    padding: 3px 8px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
}

.ap-reciente-title { font-size: 1.25rem; line-height: 1.3; font-weight: 800; margin: 0; }
.ap-reciente-title a { color: #111; text-decoration: none; transition: color .2s; }
.ap-reciente-title a:hover { color: #c1121f; }

.ap-reciente-meta {
    font-size: 0.85rem; color: #6b7280; margin-top: 8px;
    display: flex; align-items: center; gap: 6px;
}

.ap-dot { color: #d1d5db; }

/* Recent Grid 3 cols */
.ap-recent-grid-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.ap-recent-label {
    font-size: 1.2rem; font-weight: 900;
    text-transform: uppercase; color: #c1121f;
    margin-bottom: 25px;
    border-bottom: 3px solid #000;
    display: inline-block; padding-bottom: 5px;
}

.ap-recent-wrapper {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
}

.ap-recent-card { display: flex; flex-direction: column; }

.ap-recent-card__image { display: block; margin-bottom: 15px; overflow: hidden; }
.ap-recent-card__image img {
    width: 100%; height: auto;
    aspect-ratio: 16/9; object-fit: cover; transition: opacity .3s;
}

.ap-recent-card__image:hover img { opacity: 0.8; }

.ap-recent-card__cat {
    font-size: 0.75rem; font-weight: 800; color: #6b7280;
    text-transform: uppercase; margin-bottom: 8px; display: block;
}

.ap-recent-card__title { font-size: 1.4rem; line-height: 1.2; font-weight: 900; margin-bottom: 10px; }
.ap-recent-card__title a { color: #111; text-decoration: none; }
.ap-recent-card__title a:hover { color: #c1121f; }

.ap-recent-card__excerpt { font-size: 1rem; color: #4b5563; line-height: 1.5; margin-bottom: 15px; }

.ap-recent-card__meta { font-size: 0.85rem; color: #9ca3af; margin-top: auto; }

@media (max-width: 1024px) { .ap-recientes-grid { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 991px) { .ap-recent-wrapper { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 600px) {
    .ap-recientes-grid { grid-template-columns: 1fr; }
    .ap-reciente-title { font-size: 1.4rem; }
    .ap-recent-wrapper { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════
   16. UTILIDADES COMPARTIDAS
   ════════════════════════════════════════════ */

.ap-img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

.ap-card {
    background: #fff;
    border: 4px solid #000;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ap-section-block { margin: 40px 0; padding-top: 24px; border-top: 1px solid #cfcfcf; }

.ap-section-block__head { margin-bottom: 22px; }

.ap-section-block__title {
    margin: 0; font-size: 4rem; font-weight: 800;
    line-height: 1; font-family: Georgia, "Times New Roman", serif;
}

.ap-section-block__title a { color: #2453ff; text-decoration: none; }
.ap-section-block__title a:hover { text-decoration: underline; }

@media (max-width: 767px) {
    .ap-section-block__title { font-size: 3rem; }
}
.ap-single-content p,
.ap-single-content li,
.ap-single-deck {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}/* ─── Share on highlight ─────────────────────────────────── */

.ap-share-tooltip {
    position: absolute;
    z-index: 9999;
    background: #111;
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transform: translateX(-50%);
    white-space: nowrap;
}

.ap-share-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #111;
}

.ap-share-tooltip__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background .15s;
    font-family: inherit;
}

.ap-share-tooltip__btn:hover {
    background: rgba(255,255,255,.12);
}

.ap-share-tooltip__btn--x:hover { color: #fff; }
.ap-share-tooltip__btn--wa { color: #25d366; }
.ap-share-tooltip__btn--wa:hover { background: rgba(37,211,102,.15); }
.ap-single-meta__author a,
.ap-single-footer__author a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.2);
    transition: border-color .2s;
}

.ap-single-meta__author a:hover,
.ap-single-footer__author a:hover {
    border-bottom-color: #d71920;
    color: #d71920;
}/* ─── Item activo del menú ───────────────────────────────── */

.ap-menu > li > a {
    border-bottom: 2px solid transparent !important;
}

.ap-menu > li.current-menu-item > a,
.ap-menu > li.current-menu-ancestor > a,
.ap-menu > li.current_page_item > a,
.ap-menu > li.current_page_ancestor > a {
    color: #d71920 !important;
    border-bottom: 2px solid #d71920 !important;
    background: none !important;
}.ap-nav {
    background: #fff !important;
    border-bottom: 1px solid #ddd !important;
    border-top: none !important;
    position: static !important;
    overflow: visible !important;    /* ← cambiar de hidden a visible */
    max-height: 60px !important;
    opacity: 1 !important;
    transition: max-height .25s ease, opacity .25s ease !important;
    z-index: 100;
}.ap-menu > li > a {
    padding: 13px 10px !important;
    font-size: 11px !important;
    letter-spacing: .03em !important;
}
/* ════════════════════════════════════════════
   17. COMENTARIOS
   ════════════════════════════════════════════ */

.ap-comments-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 0.5px solid rgba(0,0,0,.1);
}

/* Lista */
.ap-comment-list {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
}

.ap-comment-list .children {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ap-comment {
    border-bottom: 0.5px solid rgba(0,0,0,.08);
    padding: 24px 0;
}

.ap-comment:last-child { border-bottom: none; }

/* Anidado */
.ap-comment .ap-comment {
    margin-left: 56px;
    border-bottom: none;
    padding-bottom: 0;
}

/* Body */
.ap-comment-body { display: flex; flex-direction: column; gap: 12px; }

/* Header */
.ap-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ap-comment-avatar { flex-shrink: 0; }

.ap-comment-avatar__img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: block;
    border: 0.5px solid rgba(0,0,0,.1);
}

.ap-comment-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.ap-comment-author {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.ap-comment-author a {
    color: #111;
    text-decoration: none;
    transition: color .2s;
}

.ap-comment-author a:hover { color: #d71920; }

.ap-comment-date {
    font-size: 12px;
    color: #999;
}

.ap-comment-edit {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    text-decoration: none;
    margin-left: auto;
    flex-shrink: 0;
    transition: color .2s;
}

.ap-comment-edit:hover { color: #111; }

/* Texto */
.ap-comment-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    padding-left: 56px;
}

.ap-comment-text p { margin: 0 0 10px; }
.ap-comment-text p:last-child { margin-bottom: 0; }

.ap-comment-pending {
    font-size: 12px;
    color: #999;
    font-style: italic;
    padding-left: 56px;
    margin: 0;
}

/* Footer / reply */
.ap-comment-footer { padding-left: 56px; }

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}

.comment-reply-link:hover {
    color: #d71920;
    border-bottom-color: #d71920;
}

/* Navegación entre páginas de comentarios */
.ap-comment-nav {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 0.5px solid rgba(0,0,0,.08);
    margin-bottom: 48px;
    font-size: 13px;
    font-weight: 600;
}

.ap-comment-nav a {
    color: #111;
    text-decoration: none;
    transition: color .2s;
}

.ap-comment-nav a:hover { color: #d71920; }

/* Formulario */
.ap-comment-form-wrap { margin-top: 8px; }

.ap-comment-cancel-reply {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    text-decoration: none;
    margin-left: 16px;
    transition: color .2s;
}

.ap-comment-cancel-reply:hover { color: #d71920; }

.ap-comment-logged-in {
    font-size: 13px;
    color: #888;
    margin: 0 0 20px;
}

.ap-comment-logged-in a {
    color: #1a6bbf;
    text-decoration: none;
}

.ap-comment-logged-in a:hover { text-decoration: underline; }

.ap-comment-form { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }

/* Fila de campos nombre + email */
.ap-comment-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ap-comment-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ap-comment-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #444;
}

.ap-req { color: #d71920; }

.ap-comment-input,
.ap-comment-textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: #111;
    background: #fff;
    border: 0.5px solid rgba(0,0,0,.25);
    border-radius: 4px;
    padding: 10px 14px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.ap-comment-input:focus,
.ap-comment-textarea:focus {
    border-color: #11346f;
    box-shadow: 0 0 0 3px rgba(17,52,111,.08);
}

.ap-comment-input::placeholder,
.ap-comment-textarea::placeholder {
    color: #bbb;
}

.ap-comment-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Cookies */
.ap-comment-cookies {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.ap-comment-cookies label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.ap-comment-cookies input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: #11346f; }

/* Botón submit */
.ap-comment-submit-wrap { display: flex; align-items: center; gap: 16px; }

.ap-comment-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    background: #11346f;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.ap-comment-submit:hover { background: #0d2755; }
.ap-comment-submit:active { transform: scale(.98); }

/* Cerrado */
.ap-comments-closed,
.ap-comments-protected {
    font-size: 14px;
    color: #999;
    font-style: italic;
    padding: 20px 0;
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .ap-comment-fields-row { grid-template-columns: 1fr; }
    .ap-comment .ap-comment { margin-left: 32px; }
    .ap-comment-text,
    .ap-comment-pending,
    .ap-comment-footer { padding-left: 0; }
}
.ap-comment .comment-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    padding-left: 56px;
}

.ap-comment .comment-content p {
    margin: 0 0 10px;
}

.ap-comment .comment-content p:last-child {
    margin-bottom: 0;
}.ap-comment .comment-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    padding-left: 56px !important;
}/* ════════════════════════════════════════════
   SECCIÓN PROVINCIAS — layout Bloomberg
   ════════════════════════════════════════════ */

.ap-section-provincias {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-provincias .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.ap-section-provincias .ap-section-block__title--label a {
    color: #2d7a3a;
    text-decoration: none;
}

.ap-section-provincias .ap-section-block__title--label a:hover {
    text-decoration: underline;
}

/* ─── Fila superior: 2 columnas ─────────────────────────── */

.ap-provincias-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.ap-provincias-top__card {
    padding-right: 20px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-provincias-top__card:last-child {
    padding-right: 0;
    padding-left: 20px;
    border-right: none;
}

.ap-provincias-top__media {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 12px;
}

.ap-provincias-top__media img,
.ap-provincias-top__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-provincias-top__media:hover img,
.ap-provincias-top__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-provincias-top__body { display: flex; flex-direction: column; gap: 6px; }

.ap-provincias-top__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.ap-provincias-top__title a { color: #111; text-decoration: none; }
.ap-provincias-top__title a:hover { opacity: .75; }

.ap-provincias-top__excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ─── Fila inferior: featured + lista ───────────────────── */

.ap-provincias-bottom {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.ap-provincias-bottom__featured {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    align-items: start;
    padding-right: 20px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-provincias-bottom__media {
    display: block;
    width: 140px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.ap-provincias-bottom__media img,
.ap-provincias-bottom__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-provincias-bottom__media:hover img,
.ap-provincias-bottom__media:hover .ap-img-cover { transform: scale(1.04); }

.ap-provincias-bottom__body { display: flex; flex-direction: column; gap: 5px; }

.ap-provincias-bottom__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ap-provincias-bottom__title a { color: #111; text-decoration: none; }
.ap-provincias-bottom__title a:hover { opacity: .75; }

.ap-provincias-bottom__excerpt {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Lista de títulos */
.ap-provincias-bottom__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ap-provincias-list-item {
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.08);
}

.ap-provincias-list-item:first-child { padding-top: 0; }
.ap-provincias-list-item:last-child { border-bottom: none; padding-bottom: 0; }

.ap-provincias-list-item__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 4px 0 0;
}

.ap-provincias-list-item__title a { color: #111; text-decoration: none; }
.ap-provincias-list-item__title a:hover { opacity: .75; }

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
    .ap-provincias-top { grid-template-columns: 1fr; gap: 20px; }
    .ap-provincias-top__card { padding-right: 0; border-right: none; padding-left: 0 !important; border-bottom: 0.5px solid rgba(0,0,0,.1); padding-bottom: 20px; }
    .ap-provincias-top__card:last-child { border-bottom: none; padding-bottom: 0; }
    .ap-provincias-bottom { grid-template-columns: 1fr; }
    .ap-provincias-bottom__featured { padding-right: 0; border-right: none; border-bottom: 0.5px solid rgba(0,0,0,.1); padding-bottom: 20px; }
}

@media (max-width: 600px) {
    .ap-provincias-bottom__featured { grid-template-columns: 100px 1fr; gap: 10px; }
    .ap-provincias-bottom__media { width: 100px; }
    .ap-provincias-top__title { font-size: 16px; }
}.ap-nf-card-wrap {
    position: relative;
    display: block;
}/* ════════════════════════════════════════════
   SECCIÓN NEGOCIOS — estilo banner horizontal
   ════════════════════════════════════════════ */

.ap-section-negocios {
    margin: 40px 0;
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    border-top: none;
}

.ap-section-negocios .ap-section-block__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px 0;
    margin-bottom: 16px;
}

.ap-section-negocios .ap-section-block__title--label a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.ap-section-negocios .ap-section-block__more {
    color: rgba(255,255,255,.4);
    font-size: 12px;
}

.ap-section-negocios .ap-section-block__more:hover {
    color: #fff;
}

/* Fila superior: horizontal sobre fondo negro */
.ap-negocios-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 28px 24px;
    border-bottom: 0.5px solid rgba(255,255,255,.1);
}

.ap-negocios-top__card {
    padding-right: 20px;
    border-right: 0.5px solid rgba(255,255,255,.1);
}

.ap-negocios-top__card:last-child {
    padding-right: 0;
    padding-left: 20px;
    border-right: none;
}

.ap-negocios-top__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ap-negocios-top__media img,
.ap-negocios-top__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-negocios-top__media:hover img,
.ap-negocios-top__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-negocios-top__body { display: flex; flex-direction: column; gap: 6px; }

.ap-negocios-top__body .ap-card-categories a {
    color: rgba(255,255,255,.5) !important;
    background: rgba(255,255,255,.08) !important;
    font-size: 9px;
}

.ap-negocios-top__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: #fff;
}

.ap-negocios-top__title a {
    color: #fff;
    text-decoration: none;
}

.ap-negocios-top__title a:hover { opacity: .75; }

.ap-negocios-top__excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.ap-negocios-top__body .ap-card-meta {
    color: rgba(255,255,255,.35);
    font-size: 11px;
}

/* Fila inferior: lista sobre fondo negro */
.ap-negocios-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 16px 28px 20px;
}

.ap-negocios-list__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: start;
    padding-right: 20px;
    border-right: 0.5px solid rgba(255,255,255,.08);
}

.ap-negocios-list__item:last-child {
    padding-right: 0;
    border-right: none;
}

.ap-negocios-list__item:nth-child(2),
.ap-negocios-list__item:nth-child(3) {
    padding-left: 20px;
}

.ap-negocios-list__thumb {
    display: block;
    width: 72px; height: 54px;
    border-radius: 3px; overflow: hidden; flex-shrink: 0;
}

.ap-negocios-list__thumb img,
.ap-negocios-list__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-negocios-list__thumb:hover img,
.ap-negocios-list__thumb:hover .ap-img-cover { transform: scale(1.05); }

.ap-negocios-list__body { display: flex; flex-direction: column; gap: 4px; }

.ap-negocios-list__body .ap-card-categories a {
    color: rgba(255,255,255,.45) !important;
    background: transparent !important;
    font-size: 9px;
    padding: 0;
}

.ap-negocios-list__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #fff;
}

.ap-negocios-list__title a {
    color: #fff;
    text-decoration: none;
}

.ap-negocios-list__title a:hover { opacity: .75; }

.ap-negocios-list__body .ap-card-meta {
    color: rgba(255,255,255,.3);
    font-size: 11px;
}

/* Responsive */
@media (max-width: 900px) {
    .ap-negocios-top { grid-template-columns: 1fr; padding: 0 20px 20px; }
    .ap-negocios-top__card {
        padding-right: 0 !important;
        padding-left: 0 !important;
        border-right: none;
        border-bottom: 0.5px solid rgba(255,255,255,.1);
        padding-bottom: 20px;
    }
    .ap-negocios-top__card:last-child { border-bottom: none; padding-bottom: 0; }
    .ap-negocios-list { grid-template-columns: 1fr; padding: 16px 20px 20px; gap: 14px; }
    .ap-negocios-list__item {
        padding: 0 0 14px !important;
        border-right: none !important;
        border-bottom: 0.5px solid rgba(255,255,255,.08);
    }
    .ap-negocios-list__item:last-child { border-bottom: none; padding-bottom: 0 !important; }
    .ap-section-negocios .ap-section-block__head { padding: 16px 20px 0; }
}

@media (max-width: 600px) {
    .ap-negocios-top__title { font-size: 16px; }
}/* ════════════════════════════════════════════
   SECCIÓN BREAKING — fila horizontal 3 notas
   ════════════════════════════════════════════ */

.ap-section-breaking {
    margin: 32px 0;
    border-top: 0.5px solid rgba(0,0,0,.12);
    border-bottom: 0.5px solid rgba(0,0,0,.12);
    padding: 16px 0;
}

.ap-breaking-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0;
    align-items: start;
}

/* Item con imagen — primera columna */
.ap-breaking-item {
    padding-right: 24px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-breaking-item:last-child {
    border-right: none;
    padding-right: 0;
}

.ap-breaking-item:not(:first-child) {
    padding-left: 24px;
}

.ap-breaking-item--with-img {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    align-items: start;
}

.ap-breaking-item__thumb {
    display: block;
    width: 100px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.ap-breaking-item__thumb img,
.ap-breaking-item__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-breaking-item__thumb:hover img,
.ap-breaking-item__thumb:hover .ap-img-cover { transform: scale(1.04); }

.ap-breaking-item__body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ap-breaking-item__body .ap-card-categories a {
    font-size: 9px !important;
    padding: 2px 5px !important;
}

.ap-breaking-item__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.28;
    margin: 0;
}

.ap-breaking-item__title a {
    color: #111;
    text-decoration: none;
}

.ap-breaking-item__title a:hover { opacity: .75; }

.ap-breaking-item__excerpt {
    font-size: 12px;
    line-height: 1.55;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .ap-breaking-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ap-breaking-item {
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 0.5px solid rgba(0,0,0,.1);
        padding-bottom: 16px !important;
    }

    .ap-breaking-item:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .ap-breaking-row { grid-template-columns: 1fr; }
    .ap-breaking-item:last-child { grid-column: auto; }
    .ap-breaking-item__title { font-size: 14px; }
}/* ════════════════════════════════════════════
   SECCIÓN POLICIALES
   ════════════════════════════════════════════ */

.ap-section-policiales {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-policiales .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.ap-section-policiales .ap-section-block__title--label a {
    color: #111;
    text-decoration: none;
}

/* Layout: imagen grande | col texto | col thumb */
.ap-policiales-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    align-items: start;
}

/* Hero izquierda */
.ap-policiales-hero {
    padding-right: 24px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-policiales-hero__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 14px;
}

.ap-policiales-hero__media img,
.ap-policiales-hero__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-policiales-hero__media:hover img,
.ap-policiales-hero__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-policiales-hero__body { display: flex; flex-direction: column; gap: 7px; }

.ap-policiales-hero__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.ap-policiales-hero__title a { color: #111; text-decoration: none; }
.ap-policiales-hero__title a:hover { opacity: .75; }

.ap-policiales-hero__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Columnas */
.ap-policiales-col {
    padding: 0 24px;
    border-right: 0.5px solid rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ap-policiales-col--right {
    padding-right: 0;
    border-right: none;
}

.ap-policiales-col__item {
    padding: 16px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ap-policiales-col__item:first-child { padding-top: 0; }
.ap-policiales-col__item:last-child { border-bottom: none; padding-bottom: 0; }

/* Item con thumb */
.ap-policiales-col__item--thumb {
    gap: 0;
}

.ap-policiales-col__thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 10px;
}

.ap-policiales-col__thumb img,
.ap-policiales-col__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-policiales-col__thumb:hover img,
.ap-policiales-col__thumb:hover .ap-img-cover { transform: scale(1.04); }

.ap-policiales-col__body { display: flex; flex-direction: column; gap: 5px; }

.ap-policiales-col__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.ap-policiales-col__title a { color: #111; text-decoration: none; }
.ap-policiales-col__title a:hover { opacity: .75; }

.ap-policiales-col__excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .ap-policiales-layout { grid-template-columns: 1fr 1fr; }
    .ap-policiales-hero {
        grid-column: 1 / -1;
        padding-right: 0;
        border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,.1);
        padding-bottom: 20px;
        margin-bottom: 4px;
    }
    .ap-policiales-hero__media { aspect-ratio: 16 / 9; }
    .ap-policiales-col { padding: 0; border-right: none; }
    .ap-policiales-col:first-of-type { padding-right: 20px; border-right: 0.5px solid rgba(0,0,0,.1); }
}

@media (max-width: 600px) {
    .ap-policiales-layout { grid-template-columns: 1fr; }
    .ap-policiales-col:first-of-type { padding-right: 0; border-right: none; border-bottom: 0.5px solid rgba(0,0,0,.1); padding-bottom: 20px; }
    .ap-policiales-hero__title { font-size: 18px; }
    .ap-policiales-col__title { font-size: 14px; }
}/* ════════════════════════════════════════════
   SECCIÓN TECNOLOGÍA
   ════════════════════════════════════════════ */

.ap-section-tecnologia {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-tecnologia .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.ap-section-tecnologia .ap-section-block__title a {
    color: #111;
    text-decoration: none;
}

/* ─── Fila superior ──────────────────────────────────────── */

.ap-tec-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

/* Hero izquierda */
.ap-tec-hero {
    padding-right: 28px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-tec-hero__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 14px;
}

.ap-tec-hero__media img,
.ap-tec-hero__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-tec-hero__media:hover img,
.ap-tec-hero__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-tec-hero__body { display: flex; flex-direction: column; gap: 7px; }

.ap-tec-hero__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.ap-tec-hero__title a { color: #111; text-decoration: none; }
.ap-tec-hero__title a:hover { opacity: .75; }

.ap-tec-hero__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Aside derecha */
.ap-tec-aside {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
}

.ap-tec-aside__label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.ap-tec-aside__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(0,0,0,.07);
}

.ap-tec-aside__item:first-of-type { padding-top: 0; }
.ap-tec-aside__item:last-child { border-bottom: none; padding-bottom: 0; }

.ap-tec-aside__thumb {
    display: block;
    width: 72px; height: 54px;
    border-radius: 4px; overflow: hidden; flex-shrink: 0;
}

.ap-tec-aside__thumb img,
.ap-tec-aside__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-tec-aside__thumb:hover img,
.ap-tec-aside__thumb:hover .ap-img-cover { transform: scale(1.05); }

.ap-tec-aside__body { display: flex; flex-direction: column; gap: 4px; }

.ap-tec-aside__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.ap-tec-aside__title a { color: #111; text-decoration: none; }
.ap-tec-aside__title a:hover { opacity: .75; }

/* ─── Fila inferior ──────────────────────────────────────── */

.ap-tec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ap-tec-row__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    align-items: start;
    padding-right: 28px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-tec-row__item:last-child {
    padding-right: 0;
    padding-left: 28px;
    border-right: none;
}

.ap-tec-row__thumb {
    display: block;
    width: 100px; height: 75px;
    border-radius: 4px; overflow: hidden; flex-shrink: 0;
}

.ap-tec-row__thumb img,
.ap-tec-row__thumb .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-tec-row__thumb:hover img,
.ap-tec-row__thumb:hover .ap-img-cover { transform: scale(1.04); }

.ap-tec-row__body { display: flex; flex-direction: column; gap: 6px; }

.ap-tec-row__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ap-tec-row__title a { color: #111; text-decoration: none; }
.ap-tec-row__title a:hover { opacity: .75; }

.ap-tec-row__excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 960px) {
    .ap-tec-top { grid-template-columns: 1fr; gap: 20px; }
    .ap-tec-hero { padding-right: 0; border-right: none; border-bottom: 0.5px solid rgba(0,0,0,.1); padding-bottom: 20px; }
    .ap-tec-aside { padding-left: 0; }
    .ap-tec-row { grid-template-columns: 1fr; gap: 16px; }
    .ap-tec-row__item { padding: 0 0 16px !important; border-right: none !important; border-bottom: 0.5px solid rgba(0,0,0,.1); }
    .ap-tec-row__item:last-child { border-bottom: none; padding-bottom: 0 !important; }
}

@media (max-width: 600px) {
    .ap-tec-hero__title { font-size: 18px; }
    .ap-tec-row__title  { font-size: 14px; }
}/* ════════════════════════════════════════════
   SECCIÓN CAMPO
   ════════════════════════════════════════════ */

.ap-section-campo {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
}

.ap-section-campo .ap-section-block__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.ap-section-campo .ap-section-block__title a {
    color: #111;
    text-decoration: none;
}

/* Layout: 2 columnas */
.ap-campo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

/* ─── Columna izquierda ──────────────────────────────────── */

.ap-campo-main {
    padding-right: 32px;
    border-right: 0.5px solid rgba(0,0,0,.1);
}

.ap-campo-main__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ap-campo-main__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.01em;
}

.ap-campo-main__title a { color: #111; text-decoration: none; }
.ap-campo-main__title a:hover { opacity: .75; }

.ap-campo-main__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

.ap-campo-main__author {
    font-size: 13px;
    color: #666;
}

.ap-campo-main__author a {
    color: #c8891a;
    text-decoration: none;
    font-weight: 600;
}

.ap-campo-main__author a:hover { text-decoration: underline; }

.ap-campo-main__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}

.ap-campo-main__media img,
.ap-campo-main__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-campo-main__media:hover img,
.ap-campo-main__media:hover .ap-img-cover { transform: scale(1.03); }

/* ─── Columna derecha ────────────────────────────────────── */

.ap-campo-right {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ap-campo-right__item {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 0.5px solid rgba(0,0,0,.1);
}

.ap-campo-right__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.ap-campo-right__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ap-campo-right__media img,
.ap-campo-right__media .ap-img-cover {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .3s ease;
}

.ap-campo-right__media:hover img,
.ap-campo-right__media:hover .ap-img-cover { transform: scale(1.03); }

.ap-campo-right__body { display: flex; flex-direction: column; gap: 8px; }

.ap-campo-right__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ap-campo-right__title a { color: #111; text-decoration: none; }
.ap-campo-right__title a:hover { opacity: .75; }

.ap-campo-right__author {
    font-size: 13px;
    color: #666;
}

.ap-campo-right__author a {
    color: #c8891a;
    text-decoration: none;
    font-weight: 600;
}

.ap-campo-right__author a:hover { text-decoration: underline; }

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
    .ap-campo-layout {
        grid-template-columns: 1fr;
    }

    .ap-campo-main {
        padding-right: 0;
        border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,.1);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .ap-campo-right { padding-left: 0; }

    .ap-campo-main__title { font-size: 22px; }
    .ap-campo-right__title { font-size: 16px; }
}/* ════════════════════════════════════════════
   SIDEBAR — Últimas noticias + En foco
   ════════════════════════════════════════════ */

/* ─── Últimas ────────────────────────────────────────────── */

.ap-sidebar-latest {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.ap-sidebar-latest__head {
    padding: 14px 16px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.ap-sidebar-latest__title {
    font-size: 16px;
    font-weight: 800;
    color: #d71920;
    margin: 0;
    letter-spacing: -.01em;
}

.ap-sidebar-latest__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ap-sidebar-latest__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}

.ap-sidebar-latest__item:last-child {
    border-bottom: none;
}

.ap-sidebar-latest__item:hover {
    background: #fafafa;
}

.ap-sidebar-latest__time {
    font-size: 12px;
    font-weight: 700;
    color: #d71920;
    padding-top: 2px;
    white-space: nowrap;
}

.ap-sidebar-latest__link {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #111;
    text-decoration: none;
    display: block;
}

.ap-sidebar-latest__link:hover {
    color: #d71920;
}

.ap-sidebar-latest__more {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    padding: 10px 16px;
    border-top: 1px solid #f3f4f6;
    transition: color .15s;
}

.ap-sidebar-latest__more:hover {
    color: #d71920;
}

/* ─── En foco (tags) ─────────────────────────────────────── */

.ap-sidebar-tags {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 24px;
}

.ap-sidebar-tags__title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.ap-sidebar-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ap-sidebar-tags__tag {
    display: inline-block;
    background: #f3f4f6;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all .15s;
    white-space: nowrap;
}

.ap-sidebar-tags__tag:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}.ap-footer-fomeb {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ap-footer-fomeb-logo {
    height: 48px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    display: block;
    margin: 0 auto;
}

.ap-footer-fomeb a:hover .ap-footer-fomeb-logo {
    opacity: 1;
}