:root {
    --bg: #101010;
    --card: #1C1C1C;
    --gold: #C9A45C;
    --text: #F7F3EA;
    --muted: #B8B2A7;
    --line: rgba(255, 255, 255, .08);
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 80% 10%, rgba(201, 164, 92, .08), transparent 35%), var(--bg);
    color: var(--text);
    line-height: 1.7;
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.page {
    padding: 80px 0 110px;
}

.card {
    background: rgba(28, 28, 28, .88);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    padding: 48px;
}

.date {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.title {
    font-family: var(--font-title);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1;
    margin-bottom: 24px;
}

.text {
    color: var(--muted);
    font-size: 1.05rem;
    white-space: pre-line;
}

.news-page-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

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

.news-list-card {
    min-height: 100%;
    overflow: hidden;
    background: rgba(28, 28, 28, .88);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
}

.news-list-card:not(.has-image) .news-list-content {
    padding-top: 34px;
}

.news-list-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.news-list-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-list-card:hover .news-list-image img {
    transform: scale(1.04);
}

.news-list-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.news-list-content h2 {
    font-family: var(--font-title);
    font-size: 1.7rem;
    line-height: 1.14;
    font-weight: 600;
    margin-bottom: 14px;
}

.news-list-content p {
    color: var(--muted);
    font-size: .96rem;
    margin-bottom: 24px;
}

.read-link {
    margin-top: auto;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    font-weight: 800;
}

.news-hero-image {
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.news-hero-image img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.news-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #000;
    padding: 14px 24px;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
}

.news-back-btn.is-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.empty-title {
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

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

@media (max-width: 700px) {
    .page {
        padding: 56px 0 82px;
    }

    .card {
        padding: 30px 24px;
    }

    .news-page-head {
        display: block;
    }

    .news-page-head .news-back-btn {
        margin-top: 18px;
        width: 100%;
    }

    .news-list-grid {
        grid-template-columns: 1fr;
    }

    .news-actions-row .news-back-btn {
        width: 100%;
    }
}
