﻿:root {
    --font-body: "Muli", sans-serif;
    --font-ui: "Lato", sans-serif;
    --bg-deep: #0f131a;
    --bg-mid: #171c25;
    --panel: rgba(18, 23, 33, 0.85);
    --line: rgba(255, 255, 255, 0.2);
    --text: #f7f8fb;
    --muted: #d7dce5;
    --accent: #cbb17a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(9, 12, 18, 0.95), rgba(9, 12, 18, 0.95)),
        url("https://global-files-nginx.builderall.com/c664dcaa-16b0-45ef-b175-be2775e771fc/6c95f3b777297156730fa2eb08bb5db387a38ef67b906c60008ca4dffcb8e3ac.png") center top / cover fixed;
    line-height: 1.45;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.news-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
    backdrop-filter: blur(3px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
}

.brand img {
    width: 142px;
    height: auto;
}

.news-nav {
    display: flex;
    gap: 1.1rem;
}

.news-nav a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.2rem;
    transition: border-color 0.25s ease, opacity 0.25s ease;
}

.news-nav a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.65);
    opacity: 0.9;
}

.hero-news {
    position: relative;
    min-height: min(84vh, 700px);
    display: flex;
    align-items: flex-end;
    background: url("https://global-files-nginx.builderall.com/c664dcaa-16b0-45ef-b175-be2775e771fc/cbc6778ef108456185fad5a5fb0ebd86271f59da8202e2cdf8c6135e10c6e957.png") center 22% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 18, 0.2) 0%, rgba(10, 12, 18, 0.84) 76%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 7.2rem 0 2.8rem;
    width: min(760px, 100%);
}

.kicker {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #d8dce3;
    margin-bottom: 0.65rem;
}

.hero-content h1 {
    font-family: var(--font-ui);
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #e4e8ef;
}

.news-quickline {
    padding: 1.15rem 0 0.35rem;
}

.quickline-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.quickline-item {
    border: 1px solid var(--line);
    background: rgba(17, 23, 32, 0.86);
    padding: 0.95rem 1rem;
}

.quickline-value {
    font-family: var(--font-ui);
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.quickline-label {
    color: #d9dfea;
    font-size: 0.9rem;
}

.spotlight-news {
    padding: 2.1rem 0 0.5rem;
}

.spotlight-wrap {
    background: var(--panel);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 420px;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.25);
}

.spotlight-media {
    min-height: 100%;
}

.spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.spotlight-content {
    padding: clamp(1.2rem, 2.8vw, 2.4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-tag {
    font-family: var(--font-ui);
    font-size: 0.77rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.spotlight-content h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.7rem;
    line-height: 1.1;
}

.spotlight-content p {
    color: var(--muted);
    font-size: clamp(0.97rem, 1.8vw, 1.08rem);
}

.spotlight-actions {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.news-section {
    padding: 2rem 0 4rem;
}

.section-head {
    width: min(760px, 100%);
    margin-bottom: 1.2rem;
}

.section-head h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.section-head p {
    color: var(--muted);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.news-stream {
    display: grid;
    gap: 1.2rem;
}

.news-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--panel);
    border: 1px solid var(--line);
    min-height: 340px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.news-story:hover {
    transform: translateY(-2px);
    border-color: rgba(203, 177, 122, 0.58);
}

.news-story:nth-child(even) .news-media {
    order: 2;
}

.news-story:nth-child(even) .news-copy {
    order: 1;
}

.news-media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.news-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.35));
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.news-story:hover .news-media img {
    transform: scale(1.04);
}

.news-copy {
    padding: clamp(1.1rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-label {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.news-copy h3 {
    font-family: var(--font-ui);
    font-size: clamp(1.25rem, 2.8vw, 2rem);
    line-height: 1.14;
    margin-bottom: 0.45rem;
}

.news-meta {
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-ui);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f2f6ff;
    background: rgba(207, 179, 124, 0.18);
    border: 1px solid rgba(207, 179, 124, 0.44);
    padding: 0.26rem 0.46rem;
    margin-bottom: 0.62rem;
}

.news-date {
    font-size: 0.95rem;
    color: #d4dae4;
    margin-bottom: 0.55rem;
}

.news-excerpt {
    color: #e4e8ef;
    font-size: clamp(0.95rem, 1.8vw, 1.03rem);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 46px;
    border: 2px solid #fff;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.news-btn-solid {
    background: #fff;
    color: #101318;
}

.news-btn-solid:hover {
    background: transparent;
    color: #fff;
}

.news-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}

.news-btn-outline:hover {
    background: #fff;
    color: #101318;
}

.news-footer {
    background: #1c222d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 1.35rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-content p {
    font-family: var(--font-ui);
    font-size: 0.88rem;
}

.agency {
    opacity: 0.85;
}

@media (max-width: 980px) {
    .quickline-wrap {
        grid-template-columns: 1fr;
    }

    .spotlight-wrap,
    .news-story {
        grid-template-columns: 1fr;
    }

    .news-story:nth-child(even) .news-media,
    .news-story:nth-child(even) .news-copy {
        order: initial;
    }

    .spotlight-media {
        max-height: 320px;
    }

    .news-media {
        max-height: 300px;
    }
}

@media (max-width: 720px) {
    .hero-news {
        min-height: 520px;
        background-position: center;
    }

    .news-nav {
        gap: 0.7rem;
    }

    .news-nav a {
        font-size: 0.82rem;
    }

    .news-copy {
        padding: 1rem;
    }

    .news-btn {
        min-width: min(240px, 90vw);
    }
}
