/* BEGIN b-card-2 */
.b-card-2 {
    display: block;
    margin-bottom: 20px;
}
.b-card-2::after {
    content: '';
    display: table;
    clear: both;
}
.b-card-2 .b_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.b-card-2 .b_thumb {
    float: left;
    width: 200px;
    margin-right: 15px;
    border-radius: 8px;
}
.b-card-2 .b_title {
    font-size: 16px;
    max-width: 65%;
    font-weight: bold;
    position: relative;
    padding-top: 10px;
    /* margin-bottom: 10px; */
    -webkit-transition: 0.3s color ease-in-out;
    -o-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}
.b-card-2 .b_title span {
    display: block;
}
.b-card-2 .b_title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #ccc;
}
.b-card-2 .b_desc {
    text-align: justify;
    color: #444;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
@media (max-width: 479px) {
    .b-card-2 .b_thumb {
        width: 150px;
    }
    .b-card-2 .b_title {
        font-size: 15px;
    }
}
.b-card-2:hover .b_title {
    color: var(--color-gradient-primary);
}

/* END b-card-2 */
/* BEGIN p-list-2 */
.p-list-2 {
    padding: 20px 0 30px;
    background-color: #f5f5f5;
}
.p-list-2 .p_list .b-card-2 {
    padding: 15px 30px 15px 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 8px;
}
.p-list-2 .p_sidebar {
    padding: 10px;
    background-color: #fff;
}
.p-list-2 .p_sidebar+.p_sidebar {
    margin-top: 20px;
}
.p-list-2 .s-pagination-1 {
    margin-top: 25px;
    padding: 10px 0;
    background-color: #fff;
}
@media screen and (max-width: 991px) {
    .p-list-2 .c-headline-3 {
        font-size: 20px;
    }
    .p-list-2 .p_list .b-card-2 {
        padding: 10px;
    }
    .p-list-2 .p_sidebar {
        margin-top: 20px;
    }
}

/* END p-list-2 */
/* Style chung s-pagination */
[class*="s-pagination-"] {
    padding: 25px 0;
    font-size: 12px;
}
[class*="s-pagination-"]::after {
    content: '';
    display: table;
    clear: both;
}
[class*="s-pagination-"]>li {
    display: inline-block;
    margin: 0 2px;
    border: 1px solid #ddd;
    line-height: 2.334em;
    width: 2.5em;
    height: 2.5em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
[class*="s-pagination-"]>li>a {
    display: block;
    color: #999;
    font-weight: bold;
    text-align: center;
}
[class*="s-pagination-"]>li:hover {
    background-color: #eee;
    color: #999;
}
[class*="s-pagination-"]>li.active {
    background-color: #05a;
    border: 1px solid #05a;
}
[class*="s-pagination-"]>li.active>a {
    color: #fff;
}

/* BEGIN s-pagination-1 */
.s-pagination-1>li {
    border-radius: 3px;
}

/* END s-pagination-1 */
@media screen and (max-width: 992px) {
    .b-card-2 .b_content {
        gap: 15px;
    }
}