/* Articles */
#list {
    margin-top: 40px;
    margin-bottom: 80px;
}

.article-container img {
    width: 100%;
    height: 236px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.article-container h2 {
    color: var(--text);
    transition: var(--transition);
}

.article-container:hover h2 {
    color: var(--primary);
}
/* End Articles */

/* Detail Articles */
#detail-article {
    margin-top: 40px;
    margin-bottom: 80px;
}

.detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.detail-content {
    font-family: var(--font-2);
    font-size: 18px;
    line-height: 160%;
    font-weight: normal;
    text-align: justify;
    white-space: pre-line;
}

.others-article-container {
    margin-bottom: 32px;
}

.others-article-container img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.others-article-container span {
    color: var(--text);
    transition: var(--transition);
}

.others-article-container:hover span {
    color: var(--primary);
}
/* End Detail Articles */

@media (max-width: 997.98px) {

    /* Detail Articles */
    .detail-img {
        height: 250px;
    }
    /* End Detail Articles */

}
