.article-right > h2{
    width: 100%;
    margin: 20px 0 0;
}

.article-right{
    flex: 1 1 20%; 
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.article-date{
    margin-bottom: 10px;
    position: relative;
}

.article-date > img{
    height: 22px;
}

.article-date > span{
    font-size: 16px;
    color: #A8A8A8;
    position: absolute;
    bottom: 5px;
    left: 26px;
}




.article-image{
    margin-bottom: 20px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
}

.article-left > h1 {
    font-size: 25px;
}




.article-left{
    min-width: 300px;
    background: #ffffff;
    padding: 0 30px;
    flex: 1 1 calc(60% - 60px);
    border-radius: 10px;
    margin: 20px auto 0;
}




.article-content {
    /* max-width: 720px; */
    margin: 0 auto;
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.5;
    color: #1e2a38;
    text-align: justify; 
}

.article-content h1,
.article-content h2,
.article-content h3 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-content h2 {
    font-size: 24px;
}

.article-content h3 {
    font-size: 20px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.article-content blockquote {
    font-style: italic;
    border-left: 4px solid #ccc;
    padding-left: 15px;
    margin: 20px 0;
    color: #555;
}



.article-breadcrumbs{
    margin: 20px auto 0;
    border-bottom: 3px solid #7373732e;
    padding-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 5px;
    color: #ccc;
}



@media (max-width: 768px) {
    .article-left {
        flex: 1 1 100%;
    }

    .article-block-small{
        width: calc(50% - 10px); 
    }
}