/* =============================================
   SINGLE POST / ARTICLE STYLES
   ============================================= */

:root {
    background: #fffdeb;
}
.container-narrow {
    max-width: 1720px;
    width: 65%;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-meta-top {
    margin-bottom: 20px;
}

.kicker-small {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c8102e;
    margin-left: 60px;
    display: block;
}

.main-headline {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 35px;
    width: 90%;
    margin: 0 auto;
}

.hero-wrapper {
    margin-bottom: 20px;
}

.hero-img {
    width: 90%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 8px;
}

.hero-caption {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    text-align: left;
    max-width: 90%;
    margin: 5px auto 0;
}

.credit {
    text-transform: uppercase;
    font-size: 11px;
    color: #999;
}

.author-bar {
    display: flex;
    align-items: center;
    width: 90%;
    justify-content: space-between;
    margin: 35px auto 40px;
    flex-wrap: nowrap;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-thumb {
    width: 72px;
    height: 72px;
    border: 1px solid #d3d3d3;
    border-radius: 50%;
    margin-right: 15px;
    background: #eee;
    flex-shrink: 0;
    object-fit: cover;
}

.author-details .byline {
    font-size: 18px;
}

.timestamp {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-share {
    background: none;
    padding: 8px 16px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    color: #333;
}

.btn-share:hover {
    color: #c8102e;
}

.divider {
    border: 0;
    border-top: 1px solid #000;
    margin-bottom: 45px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.story-content {
    max-width: 85%;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.75;
    color: #333;
}

.story-content p {
    margin-bottom: 28px;
    text-align: left;
}

/* Article Container */
.article-page {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
}

/* Make sure images in content don't break layout */
.story-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}