.featured-news-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.featured-news-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.featured-news-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--united-blue, #1e40af);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
}

.featured-news-section-heading h2,
.news-page-hero h1 {
    margin: 0;
    color: var(--united-dark-blue, #1e3a8a);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 850;
}

.featured-news-section-heading p,
.news-page-hero p {
    max-width: 720px;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.65;
}

.featured-news-view-all,
.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--united-blue, #1e40af);
    font-weight: 800;
    text-decoration: none;
}

.featured-news-view-all:hover,
.news-back-link:hover {
    color: var(--united-dark-blue, #1e3a8a);
}

.featured-news-container {
    min-height: 340px;
}

.featured-news-card {
    display: grid;
    grid-template-columns: minmax(300px, .95fr) minmax(0, 1.25fr);
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, .12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(15, 23, 42, .10);
    animation: featuredNewsFade .35s ease-out;
}

@keyframes featuredNewsFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.featured-news-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.featured-news-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #eef2ff);
    color: var(--united-dark-blue, #1e3a8a);
}

.featured-news-placeholder span {
    font-size: clamp(38px, 8vw, 76px);
    font-weight: 900;
    letter-spacing: .08em;
    opacity: .32;
}

.featured-news-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 56px);
}

.featured-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.featured-news-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: #e0e7ff;
    color: #3730a3;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.featured-news-badge.green {
    background: #dcfce7;
    color: #166534;
}

.featured-news-date {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.featured-news-heading {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2;
    font-weight: 850;
}

.featured-news-desc {
    margin: 0 0 24px;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.featured-news-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    align-self: flex-start;
    min-width: 142px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--united-blue, #1e40af);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.featured-news-read-more:hover {
    color: #ffffff;
    background: var(--united-dark-blue, #1e3a8a);
    transform: translateY(-1px);
}

.featured-news-loading,
.featured-news-empty {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    background: #ffffff;
    color: #64748b;
    font-weight: 700;
    text-align: center;
    padding: 28px;
}

.featured-news-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.featured-news-controls button {
    width: 40px;
    height: 40px;
    border: 1px solid #dbe4f0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--united-dark-blue, #1e3a8a);
    font-size: 25px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.featured-news-dots {
    display: flex;
    gap: 7px;
}

.featured-news-dot {
    width: 9px !important;
    height: 9px !important;
    padding: 0;
    border: 0 !important;
    background: #cbd5e1 !important;
    box-shadow: none !important;
}

.featured-news-dot.active {
    width: 24px !important;
    border-radius: 999px !important;
    background: var(--united-blue, #1e40af) !important;
}

.news-page-shell {
    min-height: 60vh;
}

.news-page-hero {
    padding: 76px 0 58px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 58%, #eef2ff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.news-page-content {
    padding: 46px 0 78px;
}

.news-page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.news-result-count {
    color: #64748b;
    font-weight: 700;
}

.all-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-grid-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, .12);
}

.news-grid-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #eff6ff;
}

.news-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-grid-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.news-grid-title {
    margin: 12px 0 10px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 850;
}

.news-grid-description {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.65;
}

.news-grid-open {
    margin-top: auto;
    border: 0;
    background: transparent;
    color: var(--united-blue, #1e40af);
    font-weight: 800;
    text-align: left;
    padding: 0;
}

.news-detail-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, .70);
}

.news-detail-modal {
    position: relative;
    width: min(100%, 980px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.news-detail-close {
    position: sticky;
    top: 14px;
    float: right;
    z-index: 3;
    width: 44px;
    height: 44px;
    margin: 14px 14px -58px 0;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .16);
}

.news-detail-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.news-detail-body {
    padding: clamp(26px, 5vw, 52px);
}

.news-detail-body h2 {
    margin: 14px 0 8px;
    color: #0f172a;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.16;
    font-weight: 900;
}

.news-detail-subheading {
    margin: 0 0 14px;
    color: #475569;
    font-size: 20px;
    line-height: 1.5;
}

.news-detail-description {
    margin-top: 24px;
    color: #334155;
    font-size: 17px;
    line-height: 1.78;
    overflow-wrap: anywhere;
}

.news-detail-description img {
    max-width: 100%;
    height: auto;
}

.news-detail-description a {
    color: var(--united-blue, #1e40af);
    text-decoration: underline;
}

body.news-modal-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .all-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .featured-news-section { padding: 48px 0; }
    .featured-news-section-heading { align-items: flex-start; flex-direction: column; }
    .featured-news-card { grid-template-columns: 1fr; }
    .featured-news-image, .featured-news-image img { min-height: 230px; height: 230px; }
    .featured-news-body { padding: 26px 22px 30px; }
    .all-news-grid { grid-template-columns: 1fr; }
    .news-page-hero { padding: 54px 0 40px; }
    .news-page-toolbar { align-items: flex-start; flex-direction: column; }
    .news-detail-backdrop { padding: 10px; }
    .news-detail-modal { max-height: calc(100vh - 20px); border-radius: 16px; }
}
