.wl-news-topbar {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(10, 12, 16, .88);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 12px;
    z-index: 50;
}
.wl-news-brand {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.wl-news-nav,
.wl-news-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.wl-news-nav a,
.wl-news-actions a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 999px;
}
.wl-news-nav a:hover,
.wl-news-nav a.active,
.wl-news-actions a:hover {
    color: #fff;
    background: rgba(255,123,0,.18);
}
.wl-news-register {
    background: linear-gradient(135deg, #ff7b00, #ff4d00);
    color: #fff !important;
}
.wl-news-page,
.wl-news-detail-page {
    padding-top: 70px;
}
.wl-news-head {
    text-align: center;
    margin-bottom: 32px;
}
.wl-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.wl-news-card,
.wl-news-detail-card,
.wl-news-empty {
    background: rgba(18, 20, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0,0,0,0.35);
}
.wl-news-empty {
    padding: 24px;
    color: rgba(255,255,255,.8);
}
.wl-news-image {
    display: block;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}
.wl-news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.wl-news-card:hover .wl-news-image img {
    transform: scale(1.04);
}
.wl-news-content,
.wl-news-detail-content {
    padding: 24px;
}
.wl-news-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--accent, #ff7b00);
    font-weight: 800;
}
.wl-news-meta small {
    color: var(--muted, #aeb4be);
    font-weight: 500;
}
.wl-news-content h2 {
    margin: 0 0 12px;
}
.wl-news-content h2 a {
    color: var(--text, #fff);
    text-decoration: none;
}
.wl-news-content h2 a:hover {
    color: var(--accent, #ff7b00);
}
.wl-news-content p {
    color: var(--muted, #c4c8cf);
    line-height: 1.65;
}
.wl-news-detail-container {
    max-width: 1050px;
}
.wl-news-detail-hero img {
    width: 100%;
    height: min(440px, 48vw);
    object-fit: cover;
    display: block;
}
.wl-news-detail-content h1 {
    font-size: clamp(32px, 5vw, 58px);
    margin: 0 0 22px;
}
.wl-news-detail-text {
    color: var(--muted, #d1d5db);
    line-height: 1.78;
    font-size: 1.05rem;
}
.wl-news-detail-text h1,
.wl-news-detail-text h2,
.wl-news-detail-text h3,
.wl-news-detail-text strong {
    color: #fff;
}
.wl-back-link {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--accent, #ff7b00);
    text-decoration: none;
    font-weight: 800;
}
@media (max-width: 760px) {
    .wl-news-topbar {
        align-items: flex-start;
        flex-direction: column;
        position: relative;
        top: auto;
    }
    .wl-news-nav,
    .wl-news-actions {
        width: 100%;
    }
}
