/* ========================================
   POST CONTENT
   ======================================== */

.post-content {
    padding: 2rem;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    word-wrap: break-word;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.post-body h1 {
    font-size: 1.8rem;
}

.post-body h2 {
    font-size: 1.6rem;
}

.post-body h3 {
    font-size: 1.4rem;
}

.post-body p {
    margin-bottom: 1.2rem;
}

/* ========================================
   LISTS
   ======================================== */

.post-body ul,
.post-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

/* ========================================
   BLOCKQUOTES
   ======================================== */

.post-body blockquote {
    border-left: 4px solid var(--accent-green);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: var(--neutral-light);
    border-radius: 0 6px 6px 0;
    font-style: italic;
}

/* ========================================
   CLEARFIX
   ======================================== */

.post-content::after,
.content::after {
    content: "";
    display: table;
    clear: both;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .post-content {
        padding: 1.5rem 1rem;
    }
}
