/* Investment Daily - Newspaper/Editorial Style */
/* Georgia serif stack | Navy (#1a2332) + Gold (#c8a951) + Off-white (#faf9f6) */

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

body {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #faf9f6;
    color: #1a2332;
    line-height: 1.6;
}

/* ---- DARK TOP BAR ---- */
.topbar {
    background-color: #1a2332;
    border-bottom: 3px solid #c8a951;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.masthead {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #faf9f6;
    text-decoration: none;
    letter-spacing: 1px;
}

.masthead em {
    color: #c8a951;
    font-style: normal;
}

.topbar-nav {
    list-style: none;
    display: flex;
    gap: 26px;
}

.topbar-nav a {
    color: #d4d0c8;
    text-decoration: none;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.topbar-nav a:hover,
.topbar-nav a.active {
    color: #c8a951;
    border-bottom-color: #c8a951;
}

/* ---- EDITION DATE STRIP ---- */
.edition-strip {
    text-align: center;
    padding: 8px 20px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.8rem;
    color: #6b6252;
    border-bottom: 1px solid #d6d0c4;
}

/* ---- HEADLINE AREA ---- */
.headline-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    text-align: center;
}

.headline-area h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 10px;
}

.headline-area .subtitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #5a5347;
    margin-bottom: 14px;
}

.gold-rule {
    width: 120px;
    height: 2px;
    background-color: #c8a951;
    margin: 0 auto;
    border: none;
}

/* ---- BREAKING NEWS STRIP ---- */
.breaking-strip {
    background-color: #c8a951;
    color: #1a2332;
    text-align: center;
    padding: 9px 20px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- NEWSPAPER 3-COLUMN GRID ---- */
.newspaper-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 50px;
    column-count: 3;
    column-gap: 32px;
    column-rule: 1px solid #d6d0c4;
}

.newspaper-columns .section-label {
    column-span: all;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    border-bottom: 2px solid #c8a951;
    padding-bottom: 6px;
    margin-bottom: 20px;
    margin-top: 32px;
}

.newspaper-columns .section-label:first-child {
    margin-top: 0;
}

.article-excerpt {
    break-inside: avoid;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e0dbd2;
}

.article-excerpt .tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c8a951;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.article-excerpt h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
    color: #1a2332;
}

.article-excerpt .date {
    font-size: 0.75rem;
    color: #8a8276;
    margin-bottom: 7px;
}

.article-excerpt p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #3d3729;
}

.article-excerpt a.read-link {
    font-size: 0.82rem;
    color: #c8a951;
    text-decoration: none;
    font-weight: 700;
}

.article-excerpt a.read-link:hover {
    text-decoration: underline;
}

/* ---- ABOUT: EDITORIAL BOARD ---- */
.editorial-board {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.editorial-board h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #1a2332;
    border-bottom: 2px solid #c8a951;
    padding-bottom: 8px;
    margin-bottom: 22px;
}

.mission-text {
    column-count: 2;
    column-gap: 32px;
    column-rule: 1px solid #d6d0c4;
    margin-bottom: 40px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3d3729;
}

.mission-text p {
    margin-bottom: 14px;
}

.board-members {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.board-member {
    flex: 1 1 320px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.member-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #1a2332;
    color: #c8a951;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
}

.member-info h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    color: #1a2332;
    margin-bottom: 2px;
}

.member-info .role {
    font-size: 0.78rem;
    color: #c8a951;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.member-info p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #3d3729;
    margin-bottom: 6px;
}

.member-info a {
    font-size: 0.82rem;
    color: #c8a951;
    text-decoration: none;
}

.member-info a:hover {
    text-decoration: underline;
}

/* ---- CONTACT: LETTERS TO THE EDITOR ---- */
.letters-section {
    max-width: 580px;
    margin: 0 auto;
    padding: 50px 20px 70px;
    text-align: center;
}

.letters-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.7rem;
    color: #1a2332;
    margin-bottom: 6px;
}

.letters-section .contact-sub {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: #6b6252;
    margin-bottom: 28px;
}

.letters-form {
    text-align: left;
}

.letters-form label {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: #1a2332;
}

.letters-form input,
.letters-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    border: 1px solid #d6d0c4;
    background: #fff;
    margin-bottom: 16px;
    color: #1a2332;
}

.letters-form input:focus,
.letters-form textarea:focus {
    outline: none;
    border-color: #c8a951;
}

.letters-form textarea {
    height: 150px;
    resize: vertical;
}

.letters-form button {
    display: block;
    margin: 0 auto;
    background-color: #1a2332;
    color: #c8a951;
    border: none;
    padding: 12px 40px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.letters-form button:hover {
    background-color: #2a3a52;
}

/* ---- ARTICLE CONTENT (for article pages) ---- */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.article-content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-meta {
    color: #8a8276;
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d6d0c4;
}

.article-content h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #1a2332;
    margin: 32px 0 14px;
}

.article-content p {
    margin-bottom: 18px;
    color: #3d3729;
    line-height: 1.7;
}

.article-content ul,
.article-content ol {
    margin: 0 0 18px 24px;
    color: #3d3729;
}

.article-content li {
    margin-bottom: 8px;
}

/* ---- FOOTER ---- */
.site-footer {
    background-color: #1a2332;
    color: #a09888;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    border-top: 3px solid #c8a951;
}

.site-footer a {
    color: #c8a951;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .disclaimer {
    margin-top: 6px;
    font-size: 0.75rem;
    color: #706858;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .newspaper-columns {
        column-count: 2;
    }
    .mission-text {
        column-count: 1;
    }
}

@media (max-width: 600px) {
    .newspaper-columns {
        column-count: 1;
    }
    .topbar-inner {
        flex-direction: column;
        gap: 8px;
    }
    .topbar-nav {
        gap: 14px;
    }
    .headline-area h1 {
        font-size: 2rem;
    }
    .board-members {
        flex-direction: column;
    }
}
