/* ==========================================================================
   POST & ARTICLE STYLES
   ========================================================================== */

.post {
    max-width: 760px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: var(--space-6);
}

.post-header h1 {
    margin-bottom: var(--space-3);
}

.post-header img {
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-bottom: var(--space-6);
}

.post-content {
    font-size: 1.2rem;
    line-height: var(--lh-body);
}

.post-content img {
    border-radius: var(--radius-md);
    margin: var(--space-4) 0;
    width: 100%;
    height: auto;
}

.post-content h2,
.post-content h3 {
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.post-footer {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.author-bio {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.author-bio img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: var(--space-1);
}

.author-info p {
    font-size: var(--fs-sm);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .post-header img {
        height: 250px;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-meta {
        flex-direction: column;
        gap: var(--space-2);
    }
}
