.article-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 32px;
    color: #DCDDE0;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 40px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.article-content h1 { font-size: 32px; }
.article-content h2 { font-size: 28px; border-left: 4px solid #00b894; padding-left: 12px; }
.article-content h3 { font-size: 24px; }
.article-content h4 { font-size: 20px; }

.article-content a {
    color: #40c584;
    font-weight: bold;
    text-decoration: underline;
    transition: color .2s ease;
}
.article-content a:hover {
    color: #6ef4c9;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 8px;
}

.article-content ul li::marker {
    color: #40c584;
}

.article-content blockquote {
    border-left: 4px solid #00b894;
    padding-left: 16px;
    margin: 32px 0;
    font-style: italic;
    color: #DCDDE0;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.article-content table {
    display: table;
    width: 100%;
    border-radius: 6px;
    border-collapse: collapse;
    white-space: normal;
    table-layout: fixed;
    word-wrap: break-word;
    margin-bottom: 30px;
    font-size: 15px;

}

.article-content table thead {
    background: #2d3436;
    color: #FFFFFF;
}

.article-content table th,
.article-content table td {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.article-content table tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 32px 0;
    display: block;
}

.article-content figure {
    margin: 32px 0;
    text-align: center;
}

.article-content figcaption {
    font-size: 14px;
    color: #b2bec3;
    margin-top: 8px;
}

.article-content pre,
.article-content code {
    font-family: "Courier New", monospace;;
    background: #2d3436;
    color: #dfe6e9;
    padding: 4px 8px;
    border-radius: 4px;
}

.article-content pre {
    display: block;
    overflow-x: auto;
    padding: 16px;
    margin: 24px 0;
}

.article-content hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 48px 0;
}

.article-content small {
    font-size: 14px;
    color: #b2bec3;
}

.wp-block-image{
    margin-bottom: 8px !important;
}

.wp-caption{
    width: 100% !important;
}

.wp-caption img{
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0 !important;
}

.wp-caption-text{
    font-size: 10px;
    text-align: center !important;
}

@media (max-width: 768px) {
    .article-content {
        font-size: 16px;
        line-height: 28px;
        padding: 0 16px;
    }
    .article-content h1 { font-size: 28px; line-height: 36px; }
    .article-content h2 { font-size: 24px; }
    .article-content h3 { font-size: 20px; }
}