/* --- RESET & NEWSPAPER PALETTE --- */
:root {
    --paper-bg: #f4f4f4; /* Light Grey / Newspaper Tone */
    --ink-black: #111111;
    --faded-ink: #444444;
    --accent-red: #8a1c1c; /* Deep Editorial Red */
    --border-color: #222;
    
    /* FONTS */
    --headline-font: 'Playfair Display', serif; /* Elegant, Vogue-like */
    --body-font: 'Merriweather', serif; /* Highly readable */
    --ui-font: 'Lato', sans-serif; /* Clean for buttons/forms */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--paper-bg);
    color: var(--ink-black);
    font-family: var(--body-font);
    line-height: 1.7;
    font-size: 18px;
}

a { color: var(--accent-red); text-decoration: none; border-bottom: 1px dotted var(--accent-red); }
a:hover { border-bottom: 1px solid var(--accent-red); }

/* --- MASTHEAD --- */
header.newspaper-header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px double var(--ink-black);
    margin-bottom: 40px;
    background: #fff;
}

.meta-top {
    font-family: var(--ui-font);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--faded-ink);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

h1.brand-name {
    font-family: var(--headline-font);
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 10px 0;
    line-height: 1;
}

.sub-headline {
    font-family: var(--ui-font);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    padding: 5px 20px;
    margin-top: 10px;
}

/* --- MAIN LAYOUT --- */
.paper-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Wide Article, Narrow Sidebar */
    gap: 50px;
    padding: 0 20px;
}

/* --- LEFT COLUMN: ARTICLE --- */
.article-headline {
    font-family: var(--headline-font);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.byline {
    font-family: var(--ui-font);
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--faded-ink);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.drop-cap {
    float: left;
    font-family: var(--headline-font);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 5px;
    color: var(--ink-black);
}

article h3 {
    font-family: var(--ui-font);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-red);
    padding-left: 15px;
}

/* --- IMAGE HANDLING (Portrait in Middle) --- */
.visual-break {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
}

.portrait-img {
    max-width: 60%; /* Keeps portrait size reasonable */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.img-caption {
    font-family: var(--ui-font);
    font-size: 0.75rem;
    color: var(--faded-ink);
    font-style: italic;
}

/* --- RIGHT COLUMN: SIDEBAR --- */
.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget-box {
    background: #fff;
    border: 2px solid var(--ink-black);
    padding: 20px;
}

.widget-box h4 {
    font-family: var(--ui-font);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--ink-black);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Compact Form */
.compact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.compact-form input, .compact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: var(--ui-font);
    font-size: 0.9rem;
}
.compact-form button {
    background: var(--ink-black);
    color: #fff;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}
.compact-form button:hover { background: var(--accent-red); }

/* Poll */
.poll-option {
    display: block;
    margin-bottom: 10px;
    font-family: var(--ui-font);
    font-size: 0.9rem;
    cursor: pointer;
}
.poll-btn {
    width: 100%;
    background: #fff;
    border: 2px solid var(--ink-black);
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}
.poll-btn:hover { background: var(--ink-black); color: #fff; }

/* Book Promo */
.book-promo {
    text-align: center;
    background: var(--ink-black);
    color: #fff;
    border: none;
}
.book-promo h4 { border-color: #fff; }
.book-cover {
    background: #fff;
    color: #000;
    padding: 20px;
    margin: 15px 0;
    font-family: var(--headline-font);
}
.buy-btn {
    display: block;
    background: var(--accent-red);
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    font-family: var(--ui-font);
    font-weight: bold;
    border: none;
}
.buy-btn:hover { background: #fff; color: var(--accent-red); border: none; }

/* --- FOOTER --- */
.paper-footer {
    background: var(--ink-black);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    font-family: var(--ui-font);
}

.footer-links {
    margin-bottom: 20px;
}
.footer-links a {
    color: #fff;
    margin: 0 10px;
    border-bottom: 1px solid #555;
}
.footer-links a:hover { color: var(--accent-red); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 800px) {
    .paper-layout {
        grid-template-columns: 1fr;
    }
    .portrait-img { max-width: 100%; }
    .article-headline { font-size: 2rem; }
    .header.newspaper-header { padding: 20px 10px; }
}