.ss-top-archive-post {
    background-image: linear-gradient(
        to bottom right,
        #eff6ff,   /* from-blue-50 */
        #eef2ff,   /* via-indigo-50 */
        #faf5ff    /* to-purple-50 */
    );
}

.box-category-post {
    display: flex;
    align-items: center;
    gap: .5rem;
    border-radius: 30px;
}

.form-search-post {
    display: flex;
    align-items: center;
    background: rgb(255 255 255);
    width: 60%;
    padding: .5rem 0.75rem;
    border: 1px solid rgb(229 231 235);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.form-search-post input[type=text] {
    background-color: transparent;
    margin-bottom: 0;
    border: 0;
    box-shadow: none;
    outline: none;
}

.form-search-post input[type=text]:focus {
    border: 0;
    box-shadow: none;
    outline: none;
}

/* css box chu de  */
.ss-chu-de-post {
    background-color: rgb(255 255 255);
}

.ss-chu-de-post .box-list-caetgories .list-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.ss-chu-de-post .box-list-caetgories .list-categories li {
    list-style-type: none;
    margin-bottom: 0;
    background-color: rgb(243 244 246);
    border-radius: 30px;
    cursor: pointer;
}

.ss-chu-de-post .box-list-caetgories .list-categories li a {
    display: inline-block;
}

.ss-chu-de-post .box-list-caetgories .list-categories li.active {
    background-color: rgb(34 197 94);
}

.ss-chu-de-post .box-list-caetgories .list-categories li.active a {
    color: #fff;
}

.ss-content-archive-post {
    background-color: rgb(249 250 251);
}

.ss-content-archive-post .post-simple {
    display: flex;
    gap: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
              0 4px 6px -4px rgba(0,0,0,0.1);
    border-radius: .5rem;
}

.ss-content-archive-post .post-simple + .post-simple {
    margin-top: 1rem;
}

.ss-content-archive-post .post-simple .post-simple-image {
    width: calc(100% / 3);
}

.ss-content-archive-post .post-simple .post-simple-image img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: .5rem 0 0 .5rem;
}

.ss-content-archive-post .post-simple .header-post-meta .category-name {
    background-color: rgb(219 234 254);
    color: rgb(30 64 175);
    font-weight: 600;
}

.ss-content-archive-post .post-simple .post-simple-content {
    width: calc(100% - 100% / 3 - 1rem);
    padding: 1rem;
}

.post-simple-tags .list-tag {
    margin-bottom: 0;
}

.post-simple-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-simple-meta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(34 197 94);
    color: #fff;
    border-radius: .5rem;
    gap: .3rem;
}

.box-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-load-more span {
    background-color: rgb(255 255 255);
    border: 1px solid rgb(226 232 240);
    border-radius: .5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .2rem;
    width: fit-content;
}

.box-load-more span:hover {
    background-color: rgb(239 246 255);
    border-color: rgb(147 197 253);
}

.header-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.header-filter .total-post {
    min-width: 120px;
}
.header-filter .box-sort label {
    width: 100%;
}
.header-filter .box-sort {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
}
.header-filter .box-sort .sort-post {
    min-width: 130px;
    border-radius: .2rem;
}
@media only screen and (max-width: 48em) {
    .form-search-post {
        width: 100%;
    }

    .ss-content-archive-post .post-simple {
        flex-direction: column;
    }

    .ss-content-archive-post .post-simple .post-simple-image {
        width: 100%;
    }

    .ss-content-archive-post .post-simple .post-simple-content {
        width: 100%;
        padding: .5rem;
    }
}