section.articles .article-card{
    position: relative;
    max-width: 852px;
}
section.articles .page-title{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: var(--primary-bg);
}
section.articles .page-description{
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--neutral-1);
}
section.articles .article-card img {
    width: 300px;
    height: 190px;
    border-radius: 16px;
}
section.articles .article-card .text-content {
    max-width: 528px;
}
section.articles .article-card .text-content span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--neutral-1);
}
section.articles .article-card .text-content h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--primary-bg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
section.articles .article-card .text-content p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--font-black, #20282E);
    font-feature-settings: 'liga' off, 'clig' off;
    font-style: normal;
}
section.articles #load-more {
    background-color: var(--white);
    color: var(--primary-blue-text);
    border: 1px solid var(--primary-blue-bg);
    border-radius: 16px;
    font-weight: 500;
}
section.articles #load-more:hover {
    background-color: var(--primary-blue-bg);
    color: var(--white);
    transition: 0.2s ease-in-out;
}
section.articles .loading.article-card {
    width: 100%;
    height: 190px;
    background-color: #e5e3e3;
    border-radius: 16px;
}
section.articles .loading.article-card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
    content: "";
}
article .entry-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--primary-blue-text);
}

section.recomendation-list .article-card.detail {
    flex: 1;
    flex-direction: column !important;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
}
section.recomendation-list .article-card.detail img {
    width: 209.6px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}
section.recomendation-list .article-card.detail .text-content {
    margin: 0 !important;
    max-width: 209.6px;
}
section.recomendation-list .article-card.detail .text-content h2 {
    line-break: anywhere;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.recomendation-list .container h2 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

@media screen and (max-width: 900px) {
    section.articles .article-card img {
        width: 100%;
        height: 180px;
    }
    section.articles .loading.article-card {
        height: calc(190px * 2);
    }
    section.recomendation-list .article-list {
        flex-direction: column !important;
    }
    section.recomendation-list .article-card.detail {
        flex-direction: row !important;
    }
    section.recomendation-list .article-card.detail img {
        width: 100px;
        height: 79px;
        border-radius: 8px;
        object-fit: cover;
    }
    section.recomendation-list .article-card.detail .text-content span {
        margin-top: 0 !important;
    }
}

@keyframes shimmer {
    100% {
    transform: translateX(100%);
    }
}
article .status-publish{
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

article .entry-meta {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-top: 24px;

}

article .entry-meta span a{
    color: #848B99;

}

article p{
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

article .post-thumbnail img{
    border-radius: 16px;
}

article .entry-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}
