.post-content {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75;
    color: #64748b; /* text-slate-500 */
}

/* Paragraphs */
.post-content p {
    margin-bottom: 2rem; /* mb-8 */
}

/* Headings */
.post-content h1 {
    font-size: 2.25rem; /* h2 size */
    font-family: 'Playfair Display', serif; /* font-playfair-display */
    color: #1e293b; /* text-slate-800 */
    margin-bottom: 1.5rem; /* mb-6 */
    margin-top: 2.5rem;
    font-weight: 700;
}

.post-content h2 {
    font-size: 1.875rem; /* h3 */
    font-family: 'Playfair Display', serif; /* font-playfair-display */
    color: #1e293b; /* text-slate-800 */
    margin-bottom: 1rem; /* mb-4 */
    margin-top: 2rem;
    font-weight: 700;
}

.post-content h3 {
    font-size: 1.5rem; /* h4 */
    font-family: 'Playfair Display', serif;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.post-content h4 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    color: #1e293b;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
    font-weight: 600;
}

/* Strong (Bold) */
.post-content strong {
    font-weight: 500; /* font-medium */
    color: #1e293b; /* text-slate-800 */
}

/* Italic */
.post-content em {
    font-style: italic;
}

/* Links */
.post-content a {
    font-weight: 500;
    color: #2563eb; /* text-blue-600 */
    text-decoration: underline;
}

.post-content a:hover {
    text-decoration: none; /* hover:underline */
}

/* Lists */
.post-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 2rem; /* mb-8 */
}

.post-content ol {
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 2rem;
}

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

.post-content li a {
    font-weight: 500;
    color: #1e293b;
    text-decoration: underline;
}

.post-content li a:hover {
    text-decoration: none;
}

/* Blockquote */
.post-content blockquote {
    border-left: 2px solid #1e293b;
    padding-left: 0.75rem; /* pl-3 */
    margin-bottom: 2rem;
    margin-left: -0.875rem; /* lg:-ml-3.5 */
}

/* Images */
.post-content img {
    width: 100%;
    border-radius: 0.375rem;
}

.post-content figure {
    margin-bottom: 2rem;
}

/* Figure Caption */
.post-content figcaption {
    text-align: left;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Tables */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.post-content th {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
}

.post-content td {
    border: 1px solid #cbd5e1;
    padding: 0.75rem;
}

.post-content tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Divider (Dots) - Optional */
.post-content hr {
    border: none;
    height: 4px;
    background: none;
    text-align: center;
    margin: 2rem 0;
}

/* Text Alignment Support */
.post-content .text-align-left,
.post-content p[style*="text-align: left"],
.post-content p[style*="text-align:left"] {
    text-align: left !important;
}

.post-content .text-align-center,
.post-content p[style*="text-align: center"],
.post-content p[style*="text-align:center"] {
    text-align: center !important;
}

.post-content .text-align-right,
.post-content p[style*="text-align: right"],
.post-content p[style*="text-align:right"] {
    text-align: right !important;
}

.post-content .text-align-justify,
.post-content p[style*="text-align: justify"],
.post-content p[style*="text-align:justify"] {
    text-align: justify !important;
}

.post-content h1[style*="text-align"],
.post-content h2[style*="text-align"],
.post-content h3[style*="text-align"],
.post-content h4[style*="text-align"] {
    text-align: inherit;
}

.post-content figure[style*="text-align: center"],
.post-content figure.image-style-align-center {
    text-align: center;
}

.post-content figure[style*="text-align: left"],
.post-content figure.image-style-align-left {
    text-align: left;
}

.post-content figure[style*="text-align: right"],
.post-content figure.image-style-align-right {
    text-align: right;
}