/* Newspaper Templates - Frontend Styles */

/* Professional newspaper typography */
body {
    font-family: Georgia, 'Times New Roman', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

/* Newspaper-style separators */
.wp-block-separator {
    border-color: #000;
    border-width: 1px;
    opacity: 0.2;
}

/* Ensure responsive images */
.wp-block-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* News card hover effects */
.wp-block-group.has-border-color {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-group.has-border-color:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Pullquote styling */
.wp-block-pullquote {
    border-left: 4px solid #000;
    padding-left: 2rem;
    font-style: italic;
}

.wp-block-pullquote blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Button styling */
.wp-block-button__link {
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 781px) {
    .wp-block-columns {
        flex-direction: column !important;
    }
    
    .wp-block-column {
        flex-basis: 100% !important;
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
}

/* Print-style layout helpers */
.newspaper-masthead {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

/* Byline styling */
.byline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Date styling */
.article-date {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
