:root {
    --news-accent: #ffe100;
    --news-accent-soft: rgba(255, 225, 0, 0.16);
    --news-accent-border: rgba(255, 225, 0, 0.45);
    --news-accent-light: #fff8cc;
    --news-accent-text: #5f5600;

    --news-border: rgba(0, 0, 0, 0.08);
    --news-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.05);
    --news-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
    --news-shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.08);

    --news-radius-lg: 28px;
    --news-radius-md: 22px;
    --news-radius-sm: 18px;
}

.news-topbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    flex-wrap: wrap;
}

.news-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--news-accent-soft);
    color: #2b2b2b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    word-spacing: 4px;
}

.featured-news-card {
    background: #fff;
    border: 1px solid var(--news-border);
    border-radius: var(--news-radius-lg);
    overflow: hidden;
    box-shadow: var(--news-shadow-md);
}

.featured-news-media img {
    min-height: 100%;
    object-fit: cover;
}

.featured-news-content {
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--news-accent-soft);
    color: #2b2b2b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.featured-news-meta,
.news-card-meta {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 12px;
}

.featured-news-title {
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.featured-news-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.news-card {
    background: #fff;
    border: 1px solid var(--news-border);
    border-radius: var(--news-radius-lg);
    overflow: hidden;
    box-shadow: var(--news-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--news-shadow-lg);
    border-color: var(--news-accent-border);
}

.news-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card-body {
    padding: 24px;
}

.news-card-title {
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 12px;
}

.news-link {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-page {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--news-border);
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.news-page.active,
.news-page:hover {
    background: linear-gradient(135deg, var(--news-accent), #ffd500);
    border-color: var(--news-accent-border);
}

@media (max-width: 991.98px) {
    .featured-news-title {
        font-size: 1.5rem;
    }

    .featured-news-content {
        padding: 24px;
    }
}