.newspaper-page { 
    height: 100%;
    width: 100%;
    background-color: #f4f1ea;
    color: #1a1a1a;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
    user-select: none;
    overflow: hidden;
}

.news-scroll-content { 
    height: 100%;
    overflow-y: auto; 
    padding: 25px;
    scrollbar-width: none;
}

.news-scroll-content::-webkit-scrollbar { 
    display: none; 
}

.news-header { 
    text-align: center; 
    border-bottom: 6px solid #1a1a1a; 
    margin-bottom: 25px; 
    padding-bottom: 10px; 
}

.news-title { 
    font-family: var(--font-ui);
    font-size: 64px;
    font-weight: 900; 
    letter-spacing: -3px; 
    margin: 0; 
    text-transform: uppercase;
    line-height: 0.9;
}

.news-meta { 
    display: flex; 
    justify-content: space-between; 
    font-size: 13px; 
    font-weight: bold; 
    border-top: 2px solid #1a1a1a; 
    border-bottom: 2px solid #1a1a1a;
    margin-top: 8px; 
    padding: 6px 0; 
    font-family: var(--font-bios);
}

.news-layout { 
    display: grid; 
    grid-template-columns: 1fr 260px;
    gap: 30px; 
    padding-bottom: 50px;
}

.main-article {
    border-right: 2px solid #ddd;
    padding-right: 25px;
}

.headline-xl {
    font-size: 42px;
    line-height: 1.0;
    margin: 0 0 15px 0;
    font-weight: 900;
    text-transform: uppercase;
}

.lead-text {
    column-count: 2;
    column-gap: 30px;
    column-rule: 1px solid #ddd;
    font-size: 18px;
    line-height: 1.4;
    text-align: justify;
}

.lead-text::first-letter {
    font-size: 70px;
    line-height: 55px;
    float: left;
    padding-top: 6px;
    padding-right: 12px;
}

.quote-container {
    margin: 25px 0;
    padding: 20px;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    background: rgba(0,0,0,0.03);
}

.quote-text {
    font-size: 22px;
    font-style: italic;
    font-weight: bold;
    line-height: 1.3;
}

.secondary-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.news-item h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    border-bottom: 2px solid #1a1a1a;
}

.news-item p {
    font-size: 16px;
    line-height: 1.35;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-section {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.short-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #c00;
}

.short-text {
    font-size: 15px;
    line-height: 1.3;
}

.news-ad-box {
    background: #000;
    color: #fff;
    padding: 25px 15px;
    text-align: center;
}

.ad-brand { font-size: 28px; font-weight: 900; }
.ad-slogan { font-size: 14px; margin-top: 10px; }

@media (max-width: 768px) {
    .news-layout {
        grid-template-columns: 1fr;
    }
    .main-article {
        border-right: none;
        padding-right: 0;
    }
    .lead-text {
        column-count: 1;
    }
    .secondary-articles {
        grid-template-columns: 1fr;
    }
    .news-title {
        font-size: 42px;
    }
}