/* Blog Content Typography & Styling */
.article-content {
    font-family: 'Inter', sans-serif;
    color: #2C3E50;
    line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: 'Playfair Display', serif;
    color: #2C3E50;
    margin-top: 1em;
    margin-bottom: 0.25em;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h1 {
    font-size: 2.5rem;
}

.article-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #C5A059;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.article-content h3 {
    font-size: 1.75rem;
    color: #681E26;
}

.article-content h4 {
    font-size: 1.5rem;
}

.article-content h5 {
    font-size: 1.25rem;
}

.article-content h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-content p {
    margin-bottom: 1em;
    font-size: 1.125rem;
    /* 18px */
}

.article-content a {
    color: #C5A059;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: #681E26;
}

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

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}

.article-content blockquote {
    border-left: 4px solid #C5A059;
    padding-left: 1.5em;
    margin: 2em 0;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 0 8px 8px 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.article-content figure {
    margin: 2em 0;
}

.article-content figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5em;
    font-style: italic;
}

.article-content code {
    background-color: #f1f1f1;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: #d63384;
}

.article-content pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
}

.article-content pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.article-content th,
.article-content td {
    padding: 0.75em;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.article-content th {
    background-color: #f8fafc;
    font-weight: 600;
}

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

.article-content hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 3em 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-content h1 {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.75rem;
    }

    .article-content h3 {
        font-size: 1.5rem;
    }

    .article-content p {
        font-size: 1rem;
    }
}