:root {
    --news-blue: #273376;
    --news-deep: #1b275c;
    --news-gold: #d8a52d;
    --news-paper: #f4f7f8;
}
.news-masthead {
    background-color: #273376 !important;
    background: linear-gradient(120deg, #273376 0%, #1b275c 100%) !important;
    color: #fff;
    padding: 76px 0;
    font-family: "Georama", Arial, sans-serif;
}
.news-masthead span,
.section-title span {
    color: #f1c65c;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.13em;
    font-size: 0.76rem;
}
.news-masthead h1 {
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 850;
    margin: 0.05em 0;
    font-family: "Georama", Arial, sans-serif;
}
.news-masthead p {
    font-size: 1.15rem;
    color: #d9ebf1;
    font-family: "Georama", Arial, sans-serif;
}
.news-page {
    padding-top: 55px;
    padding-bottom: 80px;
}
.featured-news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    box-shadow: 0 18px 55px rgba(16, 59, 80, 0.13);
    border-radius: 20px;
    overflow: hidden;
}
.featured-news > img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}
.featured-news > div {
    padding: clamp(28px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-news h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin: 13px 0;
}
.featured-news a,
.news-card h3 a {
    color: var(--news-deep);
    text-decoration: none;
}
.featured-news > a {
    font-weight: 800;
}
.news-category {
    color: #946b0d;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}
.news-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #6d7d84;
    font-size: 0.83rem;
    margin: 15px 0;
}
.section-title {
    margin: 70px 0 25px;
    border-bottom: 2px solid #dfe7e9;
    padding-bottom: 15px;
}
.section-title h2 {
    font-weight: 800;
    margin: 5px 0;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    background: #fff;
    border: 1px solid #e2e9eb;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.25s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 59, 80, 0.1);
}
.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.news-card > div {
    padding: 24px;
}
.news-card h3 {
    font-size: 1.35rem;
    margin: 10px 0;
}
.news-article-header {
    background: var(--news-paper);
    padding: 65px 0 80px;
}
.narrow {
    max-width: 1050px;
}
.news-article-header > a,
.news-article-header a {
    display: block;
    color: var(--news-blue);
    text-decoration: none;
    margin-bottom: 30px;
}
.news-article-header h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.06;
    margin: 14px 0;
}
.subtitle {
    font-size: 1.35rem;
    color: #526870;
    max-width: 850px;
}
.news-cover {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 18px;
    margin-top: -42px;
    position: relative;
}
.article-copy {
    max-width: 850px;
    padding-top: 65px;
    padding-bottom: 90px;
    font-size: 1.1rem;
    line-height: 1.85;
}
.article-copy img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.article-copy table {
    width: 100%;
    border-collapse: collapse;
}
.article-copy th,
.article-copy td {
    border: 1px solid #ccd9dd;
    padding: 10px;
}
.article-copy blockquote {
    border-left: 5px solid var(--news-gold);
    background: #f4f7f8;
    padding: 20px 28px;
    margin: 30px 0;
    font-size: 1.35rem;
}
.public-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 70px;
    background: #fff;
}
@media (max-width: 900px) {
    .featured-news {
        grid-template-columns: 1fr;
    }
    .featured-news > img {
        min-height: 280px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-article-header {
        padding: 45px 0 65px;
    }
    .article-copy {
        font-size: 1rem;
    }
}
