.articles-content  {
    font-family: 'Inter', sans-serif;
    line-height: 2;
    font-weight: 400;
    color: var(--text-primary);
    text-align: justify;
}
.articles-content h1, .articles-content h2, .articles-content h3, .articles-content h4 {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 3.2rem;
}
.articles-content h2 {
    font-size: 1.5rem;
}
.articles-content h3 {
    font-size: 1.2rem;
}
.articles-content h4 {
    font-size: 1rem;
}

.articles-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;    
}

.articles-content ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1rem;    
}

.articles-content header img {
    width: 100%;
    border-radius: 20px;
    margin-top: 3rem;;
}

.articles-content img.featured-image {
    width: 100%;
    border-radius: 20px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.articles-content p {
    margin-bottom: 1rem;
}

.articles-content table {
    max-width: 70%;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;

}

.articles-content thead {
    background-color: var(--accent-color);
}

.articles-content th, .articles-content td {
    border-bottom: 1px solid var(--text-primary);
    padding: 0.75rem;
    text-align: left;
}