* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #172033;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: #0b1f3a;
    color: #fff;
    border-bottom: 4px solid #f28c28;
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #f28c28;
}

nav {
    display: flex;
    gap: 18px;
    font-size: 15px;
}

nav a {
    opacity: 0.9;
}

nav a:hover {
    color: #f28c28;
}

.hero {
    margin: 32px 0;
    padding: 42px;
    background: linear-gradient(135deg, #0b1f3a, #123b6d);
    color: #fff;
    border-radius: 22px;
}

.kicker {
    color: #f28c28;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.hero h1 {
    margin: 10px 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.02;
    max-width: 850px;
}

.hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.55;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 20px;
}

.meta {
    margin: 0 0 10px;
    font-size: 13px;
    color: #667085;
}

.card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.18;
}

.card h2 a:hover {
    color: #f28c28;
}

.card p {
    line-height: 1.5;
}

.readmore {
    display: inline-block;
    margin-top: 8px;
    color: #f28c28;
    font-weight: 700;
}

.empty {
    grid-column: 1 / -1;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
}

.article-wrap {
    margin-top: 36px;
    margin-bottom: 48px;
}

.article {
    background: #fff;
    padding: min(48px, 7vw);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.article h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    margin: 0 0 18px;
}

.lead {
    font-size: 21px;
    line-height: 1.55;
    font-weight: 600;
    color: #344054;
}

.article figure {
    margin: 28px 0;
}

.article figure img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.article figcaption {
    margin-top: 8px;
    font-size: 14px;
    color: #667085;
}

.article-body {
    font-size: 19px;
    line-height: 1.75;
}

.keywords {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #667085;
}

.site-footer {
    padding: 28px 0;
    background: #0b1f3a;
    color: #fff;
    margin-top: 40px;
}

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

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }
}

@media (max-width: 620px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    nav {
        flex-wrap: wrap;
    }

    .hero {
        padding: 28px;
    }
}

input,
textarea,
button {
    font: inherit;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd4dc;
    border-radius: 10px;
    background: #fff;
}

textarea {
    resize: vertical;
}

button {
    background: #f28c28;
    color: #101828;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
}

button:hover {
    filter: brightness(0.95);
}

table th,
table td {
    padding: 10px 8px;
    font-size: 14px;
}