.news-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-description {
    color: var(--muted);
    margin-top: 10px;
    font-size: 0.95rem;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
@media (min-width: 900px) {
    .news-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.widget-container {
    background: rgba(179, 147, 89, 0.05);
    border: 1px solid rgba(179, 147, 89, 0.2);
    border-radius: 8px;
    padding: 10px;
    height: 650px;
    overflow: hidden;
}

.theme-switch {
    font-size: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
}

.news-digest-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
}

.news-quiet-btn {
    font-family: inherit;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    border: 1px solid rgba(179, 147, 89, 0.45);
    background: transparent;
    color: var(--gold, #b39359);
}

.news-quiet-btn[aria-pressed="true"] {
    background: var(--gold, #b39359);
    color: #1a140c;
    border-color: transparent;
}

.news-quiet-hint {
    font-size: 0.82rem;
    color: var(--muted, #8a8a92);
}

.news-grid.is-quiet .widget-container {
    height: 320px;
}

.news-grid.is-quiet .widget-container:nth-child(n+2) {
    opacity: 0.55;
}

.tv-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.tv-widget {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}