.news-main {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.news-panel,
.news-detail {
    border: 1px solid #5a5e64;
    padding: clamp(28px, 5vw, 64px);
    background: rgba(16, 18, 21, 0.95);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.news-heading {
    max-width: 820px;
}

.news-kicker {
    margin: 0 0 12px;
    color: #d5b65f;
    font-family: "OpenSans SemiBold", "Open Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.news-heading h1,
.news-detail h1 {
    margin: 0;
    color: #d8ba66;
    text-shadow: 0 1px 0 #5c451c;
    font-family: Colus, Georgia, serif;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    text-transform: uppercase;
}

.news-heading > p:last-child {
    max-width: 720px;
    margin: 22px 0 0;
    color: #afc0d3;
    font-size: 17px;
    line-height: 1.75;
}

.news-filters {
    margin: 36px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-filters button {
    border: 1px solid #50545a;
    padding: 10px 15px;
    color: #c7aa5d;
    background: linear-gradient(180deg, #292c30, #1b1d20);
    cursor: pointer;
    font: 600 12px/1.2 "Open Sans", sans-serif;
    text-transform: uppercase;
}

.news-filters button:hover,
.news-filters button.active {
    border-color: #6b7077;
    color: #f0d889;
    background: linear-gradient(180deg, #383c41, #25282c);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    min-height: 260px;
    border: 1px solid rgba(118, 123, 130, 0.50);
    padding: 25px;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(32, 34, 38, 0.96), rgba(10, 11, 13, 0.97));
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card-cover {
    width: calc(100% + 50px);
    height: 170px;
    margin: -25px -25px 22px;
    border-bottom: 1px solid rgba(118, 123, 130, 0.50);
    object-fit: cover;
}

.news-card:hover {
    border-color: #d5b65f;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.news-card-label {
    color: #d5b65f;
    font: 600 11px/1.3 "Open Sans", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-card h2 {
    margin: 16px 0 10px;
    color: #e4c979;
    font-family: Colus, Georgia, serif;
    font-size: 27px;
    line-height: 1.2;
    text-transform: uppercase;
}

.news-card-summary {
    margin: 0;
    color: #afc0d3;
    font-size: 14px;
    line-height: 1.7;
}

.news-card-meta {
    margin: auto 0 0;
    padding-top: 22px;
    color: #7f9ab5;
    font-size: 11px;
}

.news-message {
    grid-column: 1 / -1;
    border: 1px dashed rgba(126, 130, 136, 0.55);
    padding: 36px;
    color: #d5b65f;
    text-align: center;
}

.news-back {
    color: #d5b65f;
    font: 600 12px/1.3 "Open Sans", sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

.news-detail-heading {
    max-width: 900px;
    margin-top: 36px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(126, 130, 136, 0.48);
}

.news-detail-meta {
    margin: 20px 0 0;
    color: #7f9ab5;
    font-size: 12px;
}

.news-detail-summary {
    margin: 24px 0 0;
    color: #d4e2f0;
    font-size: 20px;
    line-height: 1.65;
}

.news-detail-cover {
    width: 100%;
    max-height: 500px;
    margin-top: 30px;
    border: 1px solid rgba(126, 130, 136, 0.48);
    object-fit: cover;
}

.news-detail-content {
    max-width: 900px;
    padding-top: 28px;
}

.news-detail-content p {
    margin: 0 0 22px;
    color: #b8c9db;
    font-size: 16px;
    line-height: 1.85;
    white-space: pre-wrap;
}

.news-detail-content img {
    display: block;
    width: 100%;
    max-height: 700px;
    margin: 30px 0;
    border: 1px solid rgba(126, 130, 136, 0.48);
    object-fit: contain;
    background: #07090c;
}

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

    .news-card {
        min-height: 230px;
    }
}
