.noticias-page-wrapper {
    color: #1b1c19;
}

.noticias-container {
    width: 1440px;
    margin: 0 auto;
    max-width: 100%;
    background: #fff;
    overflow: hidden;
}

.noticias-header {
    padding: 42px 0 26px 0;
}

.noticias-eyebrow {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #37bad9;
}

.noticias-title {
    margin: 8px 0 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
}

.noticias-desc {
    margin: 10px 0 0;
    font-size: 16px;
    color: #707b7b;
    max-width: 720px;
}

.noticias-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0;
}

@media (max-width: 991px) {
    .noticias-layout {
        grid-template-columns: 1fr;
    }
}

.noticias-main {
    padding: 8px 40px 30px 0px;
}

@media (max-width: 767px) {
    .noticias-main {
        padding: 24px;
    }
}

.noticias-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-row {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #e6e9e9;
    border-radius: 12px;
    padding: 16px 20px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.news-row:visited {
    color: inherit;
}

.news-row:hover {
    border-color: #37bad9;
    background: #fbfdfe;
}

.news-row:focus-visible {
    outline: 3px solid #008a9c;
    outline-offset: 2px;
    border-radius: 12px;
}

.news-thumbnail {
    width: 120px;
    height: 78px;
    flex-shrink: 0;
    border-radius: 8px;
    background: repeating-linear-gradient(45deg, #e9edec 0 11px, #f4f6f6 11px 22px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', monospace;
    font-size: 10px;
    color: #9aa3a1;
    overflow: hidden;
}

.news-thumbnail img {
    height: 100%;
}

@media (max-width: 480px) {
    .news-thumbnail {
        display: none;
    }
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    margin: 0;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
}

.news-meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #707b7b;
    flex-wrap: wrap;
}

.news-source {
    font-weight: 700;
    color: #008a9c;
}

.news-arrow {
    flex-shrink: 0;
    color: #008a9c;
    font-size: 18px;
    font-weight: 700;
}

/* Sidebar Noticias */
.noticias-sidebar {
    border-left: 1px solid #e6e9e9;
    padding: 30px 26px;
    background: #f4f5f5;
}

.noticias-sidebar-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #707b7b;
    margin-bottom: 16px;
}

.noticias-year-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.noticias-year-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    color: #1b1c19;
    background: transparent;
    border-radius: 8px;
    padding: 11px 14px;
    transition: background 0.2s, color 0.2s;
}

.noticias-year-btn:visited {
    color: #1b1c19;
}

.noticias-year-btn:hover {
    background: #e2e5e5;
}

.noticias-year-btn span {
    color: #9aa3a1;
}

.noticias-year-btn.active {
    background: #008a9c;
    color: #fff;
    font-weight: 900;
}

.noticias-year-btn.active span {
    color: #fff;
}

.noticias-sidebar-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e2e5e5;
}

.noticias-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    color: #8a6d1a;
    background: #fbf3d6;
    border: 1px solid #ecdda8;
    border-radius: 20px;
    padding: 3px 9px;
    display: inline-block;
}

/* Paginación Noticias */
.noticias-pagination-wrapper {
    margin-top: 28px;
}

.noticias-pagination-wrapper .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.noticias-pagination-wrapper .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e9e9;
    border-radius: 8px;
    color: #1b1c19;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.noticias-pagination-wrapper .page-numbers:hover {
    background: #f0f3f3;
}

.noticias-pagination-wrapper .page-numbers.current {
    background: #008a9c;
    color: #fff;
    font-weight: 900;
    border-color: #008a9c;
}

.noticias-pagination-wrapper .page-numbers.dots {
    border: none;
    background: transparent;
}