@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Abril+Fatface&family=Cinzel:wght@400;700;900&family=UnifrakturMaguntia&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lora:ital,wght@0,400;0,700;1,400&family=Oswald:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #2c241b; /* Dark wood/desk background */
    font-family: 'Lora', serif;
    color: #1a1a1a;
    line-height: 1.5;
}

.newspaper-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fdf1dc; /* Light classic brown / parchment */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #d4c5a9;
    width: 100%; /* Ensure it doesn't overflow on small screens */
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Lora', serif;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newspaper-title {
    font-family: 'Cormorant Garamond', serif; /* Extremely elegant, high-contrast serif */
    font-size: 95px;
    font-weight: 700;
    font-style: italic;
    margin: 5px 0;
    line-height: 0.9;
    color: #111;
    letter-spacing: -2px;
    text-transform: none; /* Allow mixed case for elegance */
}

.header-meta-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 5px 0;
    margin-top: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-center {
    flex-grow: 1;
    text-align: center;
}

.header-line-double {
    border: 0;
    border-top: 4px double #000;
    margin-top: 2px;
    margin-bottom: 5px;
}

.header-slogan {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    margin: 5px 0;
    color: #444;
}

.header-line {
    border: 0;
    border-top: 1px solid #000;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Layout */
.content-wrapper {
    display: flex;
    gap: 40px;
}

.main-column {
    flex: 2; /* Takes up 2/3 space */
    padding-right: 20px;
    border-right: 1px solid #ccc;
}

.sidebar-column {
    flex: 1; /* Takes up 1/3 space */
}

/* Typography */
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 48px; /* Larger headline */
    font-weight: 900; /* Bolder */
    line-height: 1.0;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.subhead {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

p {
    font-size: 17px; /* Slightly larger body text */
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.6;
}

/* Drop Cap */
.drop-cap::first-letter {
    float: left;
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    color: #2c241b;
}

/* Pull Quote */
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    background-color: rgba(0,0,0,0.03);
    color: #222;
}

.dateline {
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    display: inline;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Images */
figure {
    margin: 0 0 25px 0;
    transition: transform 0.3s ease; /* Hover effect */
}

figure:hover {
    transform: scale(1.01); /* Subtle zoom on hover */
}

img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #fff; /* White photo frame */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Subtle shadow */
    filter: sepia(15%) contrast(1.05);
    box-sizing: border-box;
}

.half-width img {
    height: auto; /* Allow natural height to prevent empty space */
    object-fit: fill; /* Reset object-fit */
    background-color: transparent;
}

.full-width img {
    max-height: none;
    object-fit: fill;
    background-color: transparent;
}

figcaption {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
    text-align: left;
    font-style: italic;
    line-height: 1.3;
}

.center-caption {
    text-align: center;
    margin-top: 5px;
}

.image-group {
    margin: 15px 0;
}

.row {
    display: flex;
    gap: 15px; /* Slightly larger gap for better separation */
}

.half-width {
    flex: 1;
    margin: 0;
}

.full-width {
    width: 100%;
}

/* Sidebar Styling */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 15px;
}

.sidebar-subhead {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    margin: 10px 0;
}

.section-divider {
    border: 0;
    border-top: 1px solid #000;
    margin: 30px 0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 3px double #000;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        background-color: #fdf1dc; /* Remove dark background on mobile for cleaner look */
    }

    .newspaper-container {
        padding: 15px;
        margin: 0;
        width: 100%;
        box-shadow: none;
        border: none;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-column {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #ccc;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .newspaper-title {
        font-size: 42px; /* Smaller title for mobile */
        line-height: 1;
        margin: 15px 0;
        word-wrap: break-word; /* Prevent overflow */
    }

    .header-top-row {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }

    .header-meta-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .header-meta-row > div {
        text-align: center;
        width: 100%; /* Stack meta items */
        margin-bottom: 5px;
    }

    .row {
        flex-direction: column;
    }

    .half-width {
        width: 100%;
        margin-bottom: 20px;
    }

    img {
        width: 100% !important; /* Force full width */
        height: auto !important; /* Maintain aspect ratio */
        max-width: 100%;
    }

    iframe {
        width: 100% !important;
        height: auto;
        aspect-ratio: 9/16; /* Maintain vertical video ratio */
        max-height: 80vh; /* Don't take up entire screen height */
    }
}
