/* Newspaper Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .headlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .headline-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .brief-memories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets and large phones */
@media (max-width: 768px) {
    .newspaper {
        padding: 20px;
    }
    
    .newspaper-interior {
        padding: 20px;
    }
    
    .masthead-title {
        font-size: 2.5rem;
    }
    
    .lead-headline {
        font-size: 2rem;
    }
    
    .main-headline {
        font-size: 1.5rem;
    }
    
    .article-body {
        columns: 1 !important;
    }
    
    .headlines-grid {
        grid-template-columns: 1fr;
    }
    
    .headline-card--featured {
        grid-column: span 1;
    }
    
    .brief-memories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        font-size: 1.4rem;
    }
    
    .article-headline {
        font-size: 1.3rem;
    }
    
    .search-term {
        font-size: 1.8rem;
    }
    
    .page-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .interior-article-body,
    .article-preview {
        columns: 1;
    }
}

/* Print styles */
@media print {
    .newspaper-wrapper {
        background-color: white;
    }
    
    .newspaper {
        box-shadow: none;
    }
    
    .newspaper-interior {
        box-shadow: none;
    }
    
    /* Hide navigation and controls in print */
    .page-controls,
    .time-filter-btn,
    .back-btn {
        display: none;
    }
}