body {
    background: #f5f7fa;
}
.news-header {
    background: #001B30;
    color: #FFFFFF;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 60px;
}
.news-header h1 {
    font-size: 42px;
    margin: 0 0 15px 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}
.news-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.news-card-header {
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 2px solid #1D9E75;
}
.news-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.news-card h3 {
    margin: 0;
    font-size: 18px;
    color: #001B30;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.4;
}
.news-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-excerpt {
    color: #4D4D4D;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}
.news-author {
    font-size: 12px;
    color: #999;
}
.btn-read-more {
    display: inline-block;
    padding: 8px 16px;
    background: #1D9E75;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-read-more:hover {
    background: #178a63;
}
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}
.empty-state p {
    font-size: 16px;
    margin-bottom: 30px;
}

/* ===== PAGINATION ===== */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}

.pagination-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

ul.pagination-custom {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

ul.pagination-custom li.page-item {
    display: inline-block;
    margin: 0;
}

ul.pagination-custom li.page-item a.page-link,
ul.pagination-custom li.page-item span.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1.5px solid #dce4ef;
    border-radius: 6px;
    background: white;
    color: #001B30;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
    line-height: 1;
}

ul.pagination-custom li.page-item a.page-link i,
ul.pagination-custom li.page-item span.page-link i {
    font-size: 12px;
}

ul.pagination-custom li.page-item a.page-link:hover {
    background: #eaf5f0;
    border-color: #1D9E75;
    transform: translateY(-1px);
}

ul.pagination-custom li.page-item.active span.page-link {
    background: #1D9E75;
    color: #FFFFFF;
    border-color: #1D9E75;
    font-weight: 600;
}

ul.pagination-custom li.page-item.disabled span.page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}
.lang-btn {
    padding: 6px 12px;
    border: 2px solid transparent;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.2s;
}
.lang-btn.active {
    color: #1D9E75;
    border-bottom: 2px solid #1D9E75;
}
.lang-btn:hover {
    color: #1D9E75;
}
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}
.lang-btn {
    padding: 6px 12px;
    border: 2px solid transparent;
    background: transparent;
    color: #4D4D4D;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.2s;
}
.lang-btn.active {
    color: #1D9E75;
    border-bottom: 2px solid #1D9E75;
}
.lang-btn:hover {
    color: #1D9E75;
}
