
.archive_title {
    color: var(--color-2);
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
    text-transform: uppercase;
}

.archive_header {
    margin-bottom: 40px;
}

.feature-posts {
    margin-top: 40px;
    margin-bottom: 40px;
}

.feature_header {
    margin-bottom: 36px;
}

.feature-wrapper {
    display: flex;
    gap: 20px;
}

.blog_item {
    margin-bottom: 30px;
}

.right_post-item {
    display: flex;
    gap: 10px;
}

.post_thumb {
    margin-bottom: 22px;
}

.post_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left_post {
    margin-bottom: 30px;
}

.left_post .post_title {
    font-size: 18px;
    text-transform: uppercase;
}

.post_excrpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;

    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.right_post-item .post_thumb {
    width: 40%;
}

.right_post-item .post_title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;

}

.right_post-item .post_content {
    width: 60%;
}

.right_post-item .post_content p {
    margin-bottom: 0;
}

.date {
    font-size: 14px;
    color: rgba(33, 33, 33, 0.9);
}

.right_post-item .post_excrpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;

}

/*  */
.post_title a,
.blog_title a {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
}

.blog_des {
    font-size: 14px;
}

.blog_item {
    background-color: #FAFAFA;
    border-radius: 20px;
    padding: 16px;
}

.blog_item img {
    border-radius: 12px;
}

.pagination {
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.pagination .page-numbers {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 5px 4px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #DFE3E8;
    font-size: 14px;
    background: #FFF;
    color: rgba(38, 38, 38, 0.60);
    text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    border: 2px solid var(--color-1);
    background: #FFF;
    color: var(--color-1);
    font-weight: 700;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    border: 2px solid var(--color-1);
    background: #FFF;
    color: var(--color-1);
    font-weight: 700;
}

.box_meta a {
    position: relative;
    display: flex;
    gap: 10px;
    color: var(--color-1);
    font-weight: 600;
}

.box_meta a::after {
    display: inline-block;
    content: "";
    width: 28px;
    height: 28px;
    position: relative;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(./images/circle_arrow.png);
}

/* single */
.single_post_header .box_center {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.single_thumb {
    position: relative;
}

.single_thumb::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    position: absolute;
    border-radius: 20px;
}

.single_thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.single_thumb .box_center{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 10px;
}
.single_thumb .box_center h1{
    color: #fff;
    font-size:36px;
}
.single_post_header ul {
    list-style: none;
    display: flex;
    color:#fff;
    margin-left: 0;
    padding-left: 0;
}

.single_post_header ul li:not(:first-child) {
    list-style: disc;
    margin-left: 30px;
}
/* related post */
.related_title{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    color: var(--color-1);
}
.related_title::after{
    position: relative;
    bottom: 7px;
    
    height: 1px;
    background-color: var(--color-1);
    content: "";
    display: block;
    flex: 1;
    
}

/* Archive hướng dẫn */
.banner-archive-guide .banner-head{
    padding: 60px 0;
    margin-bottom: 40px;
}