.blog_banner .custom_container{
    background-image: url(/wp-content/uploads/2025/12/banner-news.jpg);
    background-position: center;
    background-size: cover;
    height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
}
.custom_container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}
.banner_title {
/*     padding: 0 80px; */
    width: 47%;
}
.banner_title h1 {
    font-size: 32px;
    font-family: "Poppins", sans-serif;
    color: #000;
    /* text-align: center; */
    margin-bottom: 17px;
	font-weight:700;
}
/* ========== Countries Section Stat ========== */
section.countries_tabs {
    padding: 50px 0 0;
}
.coutries_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.countries_items {
    padding: 0 35px;
    position: relative;
}
.countries_items:first-child .countries_name{
    color: #d90000;
}
.countries_items .countries_name:hover{
    color: #d90000;
}


.countries_items::before{
    content: "";
    position: absolute;
    height: 17px;
    width: 2px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
}
.countries_items:last-child::before{
    display: none;
}
.countries_name {
    font-size: 17px;
    transition: 0.3s;
    color: black;
    font-weight: 600;
}
.countries_desc{
    margin-top: 50px;
    text-align: center;
}
/* ========== Countries Section End ========== */

.blog_section {
    padding: 70px 0;
}
.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog_post {
    border-radius: 20px;
    box-shadow: 0 0 25px 0 #f1f1f161;
    display: inline-block;
    background: #F2F2F2;
    padding: 14px;
}
.blog_top_area{
    position: relative;
}
.blog_img {
    width: 100%;
    height: 198px;
    object-fit: cover;
    border-radius: 10px;
}
.location {
    margin: 14px 0;
    background: #ababab;
    width: fit-content;
    padding: 3px 15px;
    border-radius: 7px;
    color: white;
    font-size: 15px;
}
.blog_title h5 {
    font-size: 19px;
    margin-bottom: 4px;
    font-weight: 600;
    color: black;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_date {
    font-size: 14px;
    color: #000000;
}
.blog_desc {
    margin: 27px 0;
    color: black;
}
.blog_desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_tags h6 {
    font-size: 15px;
    color: black;
    margin-bottom: 5px;
}
.blog_tags span {
    font-size: 14px;
    margin-right: 5px;
    padding-right: 5px;
    border-right: 1px solid black;
    color: black;
}
.btn_box{
    text-align: end;
}
button.blog_btn {
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    background: #d90000;
    padding: 6px 20px;
    margin-top: 40px;
    border-radius: 7px;
}

/* ======== Blog detail css start ======== */
.blog_detail_banner {
    /* height: 650px; */
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.blog_detail_banner .blog_detail_bg{
    /* position: absolute; */
    height: 100%;
    width: 100%;
    top: 0;
    z-index: -1;
    height: 650px;
}
/* .blog_detail_banner .blog_detail_bg::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.349);
} */
.blog_detail_banner .blog_detail_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_detail_main{
    padding: 70px 0;
}
.blog_detail_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.left_col {
    width: 65%;
}
.right_col {
    width: 30%;
}
.blog_detail_main .blog_grid{
    display: block;
}
.blog_detail_main .blog_grid .grid_item{
    margin-bottom: 20px;
}
.blog_detail_content h1, 
.blog_detail_content h2, 
.blog_detail_content h3, 
.blog_detail_content h4, 
.blog_detail_content h5, 
.blog_detail_content h6{
    font-size: 24px;
    font-weight: 600;
    margin: 34px 0 15px;
}
.blog_detail_content img {
    width: 100%;
    margin: 10px 0 20px;
    border-radius: 20px;
}
.recent_post {
    padding: 0 10px;
    background: #F2F2F2;
    border-radius: 10px;
}
.recent_posttitle h5{
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.recent_post .date_location {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.recent_post .blog_desc {
    margin: 6px 0 20px;
    color: black;
}
.recent_post .blog_tags{
    display: none;
}
button.blog_btn{
    margin-top: 0px;
}
.blog_detail_content strong {
    font-size: 17px;
    margin: 20px 0 4px;
    display: block;
}
.blog_detail_content ul{
    padding-left: 1rem;
}
.blog_detail_content ul li{
    margin-bottom: 8px;
}