.single_blog_banner {
    background: url("../images/single.jpg") center center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 110dvh;
    margin-bottom: 5%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single_blog_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #B2B3B7;
    opacity: 0.2;
    z-index: 1;
}

.single_blog_banner_text {
    display: flex;
    width: 55%;
    height: 300px;
    color: #fff;
    background-color: #000;
    opacity: 0.8;
    align-items: center;
    justify-content: center;
}

.single_blog_banner_text h1 {
    font-size: 3.7rem!important;
    font-weight: 700;
}

.blog_post_outer {
    padding-bottom: 5%;
}

.item_box {
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 5%;
    padding: 2%;
    background-color: #fff;
}

.item_box p, .recent_post_date, .blog_post_date, .similar_post_date {
    color: #7E7E7E;
}

.recent_post_category, .similar_post_category {
    color: #CAB04D;
}

.blog_post-inner {
    width: 60%!important;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    justify-content: space-between;
    gap: 2%;
}

.blog_post_inner-left {
    width: 50%;
}

.blog_post_inner-right {
    width: 50%;
}

.recent_post_info, .similar_post_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2%;
}

.recent_more_button, .similar_more_button {
    border: none;
    background-color: transparent;
    overflow: hidden; 
    position: relative;
}

.recent_more_button::after, .similar_more_button::after {
    content: "";
    visibility: hidden;
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;  
    height: 1px;
    background-color: #19234C;
    opacity: 1;
    transform: translate3d(-100%, 0, 0); 
    transition: transform 0.3s ease-in-out;
}

.recent_more_button:hover::after, .similar_more_button:hover::after {
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.similar_posts_outer {
    padding-bottom: 5%;
}

.similar_posts_title{
    text-align: center;
}

.similar_posts_inner {
    width: 60%!important;
    margin: 0 auto;
}

.similar_posts_list {
    display: flex;
    flex-direction: row;
    gap: 2%;
    align-items: flex-start;
    justify-content: space-between;
}

.similar_post_item {
    width: 33.3%;
    height: auto;
}