#category-article {
    margin-bottom: 1rem;
}

#category-article .category-article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0px;
}

#category-article .category-article-card {
    width: 30%;
}

#category-article .category-article-card img {
    width: 100%;
    height: 160px;
    border-radius: 12px 12px 0 0;
}

#category-article .category-article-card {
    flex: none;
    margin: 0 16px;
}

#category-article .category-article-card img {
    width: 100%;
    height: 230px;
}

/* tablet style */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    #category-article .category-article-list {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
    }

    #category-article .category-article-card {
        width: 45%;
    }
}

/* mobile style */
@media screen and (max-width: 767px) {
    #category-article .category-article-list {
        flex-direction: column;
        align-items: center;
    }

    #category-article .category-article-card {
        width: 90%;
        margin: 0 0 0 1rem;
    }
}

.category-article-card {
    display: block;
    width: 320px;
    margin-bottom: 16px;
    border-radius: 12px;
    background-image: linear-gradient(135deg, #fafafa, #e9f0f4);
    background-size: cover;
    box-shadow: 0 8px 24px 0 rgba(38, 61, 89, 0.24), inset -4px -4px 4px 0 rgba(38, 61, 89, 0.24), inset 4px 4px 4px 0 #fff;
    position: relative;
}

.category-article-card>div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.category-article-card img {
    width: 320px;
    height: 160px;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    object-position: top;
}

.category-article-card .article-info {
    width: 100%;
    margin-top: 24px;
    padding: 0 16px 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.category-article-card .article-info p {
    font-size: 12px;
    color: #452201;
    text-shadow: 1px 1px 0 #fff8e4;
    font-weight: 800;
    font-stretch: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.category-article-card .article-info i {
    color: #fbc323;
    font-size: 12px;
    margin-left: 3px;
}

.category-article-card h2 {
    min-height: 32px;
    background-color: var(--primary_color);
    color: #eee;
    text-shadow: 1px 1px 0 #333;
    font-size: 17px;
    font-weight: 800;
    font-stretch: 90%;
    padding: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    position: absolute;
    left: -16px;
    right: 48px;
    bottom: 38px;
}

.category-article-card .time {
    font-size: 15px;
    font-weight: 800;
    font-stretch: 90%;
    color: #452201;
    text-shadow: 1px 1px 0 #fff8e4;
}