body {
    background-color: #020617;
}

.news-list {
    padding: 32px 0 64px;
}

.news-list-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.news-list-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.news-list-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #7dd3fc;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-list-hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 12px;
    color: #f8fafc;
}

.news-list-hero p {
    color: #cbd5f5;
    font-size: 16px;
    max-width: 520px;
}

.news-hero-cta {
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 999px;
    padding: 10px 20px;
    color: #e2e8f0;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.6);
    transition: border-color 0.2s ease;
}

.news-hero-cta:hover {
    border-color: rgba(56, 189, 248, 0.6);
}

.news-featured {
    margin-bottom: 28px;
}

.news-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    text-decoration: none;
    color: #e2e8f0;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 24px;
    overflow: hidden;
}

.news-featured-media img,
.news-featured-media .news-thumb {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.news-featured-body {
    padding: 22px 24px 26px;
}

.news-featured-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.news-featured-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f8fafc;
}

.news-featured-body p {
    color: #cbd5f5;
    line-height: 1.6;
}

.news-featured-link {
    display: inline-block;
    margin-top: 14px;
    color: #7dd3fc;
}

.news-list-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.news-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.news-card {
    background: #0b1224;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #e2e8f0;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.6);
}

.news-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.news-thumb--placeholder {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.news-card-body {
    padding: 14px 16px 18px;
}

.news-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-card-excerpt {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.news-card-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.news-card-link {
    color: #7dd3fc;
    font-size: 13px;
    margin-top: 10px;
}

.news-list-sidebar .news-widget {
    position: sticky;
    top: 96px;
}

.news-widget {
    background: #0b1224;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 18px;
}

.news-widget h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.news-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: #e2e8f0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-thumb-sm {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-list-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.news-list-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

@media (min-width: 960px) {
    .news-featured-card {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .news-list-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
        align-items: start;
    }
}

@media (max-width: 960px) {
    .news-list-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list-sidebar .news-widget {
        position: static;
    }
}

@media (max-width: 640px) {
    .news-featured-media img,
    .news-featured-media .news-thumb {
        height: 200px;
    }
}
