.post-hero {
    padding-bottom: 40px;
}

.post-featured-image {
    margin-top: 60px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    line-height: 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px;
}

.post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2520;
}

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    margin: 1.5em 0 0.5em;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.entry-content h2 { font-size: 36px; }
.entry-content h3 { font-size: 28px; }

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    border-left: 4px solid var(--vermilion);
    padding: 20px 30px;
    background: var(--paper-2);
    font-style: italic;
    font-size: 22px;
    margin: 40px 0;
    font-family: 'Fraunces', serif;
}

.post-ad {
    margin: 40px 0;
    text-align: center;
    background: rgba(0,0,0,0.02);
    padding: 20px;
    border: 1px dashed var(--line);
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line-strong);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    font-size: 14px;
    color: var(--dust);
}

.post-tags a {
    color: var(--ink);
    text-decoration: underline;
    margin-left: 5px;
}

.post-share {
    display: flex;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
}

.post-share span {
    color: var(--dust);
    font-weight: 400;
}

.post-share a:hover {
    color: var(--vermilion);
}

.post-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--paper-2);
    padding: 30px;
    border-radius: 2px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.4;
}

.sidebar-widget li a:hover {
    color: var(--vermilion);
}

.related-posts-section {
    background: var(--paper-2);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .post-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pagination {
    margin-top: 60px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pagination .page-numbers {
    padding: 10px 18px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
}

.pagination .page-numbers.current {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.pagination .page-numbers:hover:not(.current) {
    background: var(--paper-2);
}

.pagination-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.pagination-wrap .page-numbers {
    padding: 12px 20px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-wrap .page-numbers:hover {
    background: var(--paper-2);
    border-color: var(--ink);
}

.pagination-wrap .page-numbers.current {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    transition: all 0.3s;
    color: var(--ink);
    margin-top: 10px;
}

.blog-btn:hover {
    background: var(--vermilion);
    border-color: var(--vermilion);
    color: var(--paper);
    padding-left: 25px;
}

/* --- MAGAZINE STYLE HERO --- */
.post-hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 32px 0;
    text-align: center;
}

.post-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.post-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.post-cat-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vermilion);
    font-weight: 600;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: var(--line-strong);
    border-radius: 50%;
}

.post-date-top {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dust);
}

.post-display-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--ink);
}

.post-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 60px;
}

.post-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--paper-2);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--dust);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

.post-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: left;
}

.stat-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--dust);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.stat-val {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

.post-hero-image {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 50px 100px -30px rgba(0,0,0,0.12);
}

.post-hero-image img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .post-meta-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding: 24px;
    }
    
    .post-display-title {
        font-size: 36px;
    }
}
