.main-post-include-section-page {
    display: flex;
    gap: 25px;
}

.main-post-include-section-page .main-post-include-section-page-left {
    width: 70%;
}


.div_for_main_of_sub_page_all_post_that_created_by_anirban {
    width: 100%;
    display: flex;
    gap: 20px;
}

.div_for_left_side_content__post_update {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    padding-bottom: 20px;
}

.div_for_sub_page_post_main_content_heading_under_main {
    font-size: var(--heading);
    font-weight: bold;
    padding: 20px;
}

.user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 20px 15px; */
}

.sub-user1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0bbcd6, #FC1CB2);
    padding: 2px;
}

.user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.div_for_images_of_post_under_sub_page {
    width: 100%;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.div_for_images_of_post_under_sub_page img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.div_for_fixed_button_under_image_of_post {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    background: linear-gradient(135deg, #0bbcd6, #FC1CB2);
    text-transform: capitalize;
    pointer-events: none;
    border-radius: var(--border-radius);
    font-size: var(--para-fsize);
}

.div_for_paragraph_or_main_description_under_post_image {
    padding: 20px;
    font-size: var(--para-fsize);
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

#more_text {
    display: none;
}

.button_for_read_more_under_main_description {
    display: inline;
    margin-left: 5px;
    padding: 10px 8px;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: var(--para-fsize);
    border-radius: 4px;
    vertical-align: middle;
    background: var(--background-linear-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.div_for_addvertisement_under_post_description_for_5inch {
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #636e72;
    background: linear-gradient(45deg, #dfe6e9, #b2bec3);
    margin-top: 10px;
    border-radius: var(--border-radius);
}
/* .div_for_main_of_short_description_top_of_add{
    height: auto;
    width: 95%;
    font-size: var(--para-fsize);
    margin-left: 17px;
    padding: 10px;
    color: #444;
    background: linear-gradient(45deg, #dfe6e9, #b2bec3);
    border-left: 3px solid #FC1CB2 ;
} */
.div_for_main_of_short_description_top_of_add {
    height: auto;
    width: 95%; 
    font-size: var(--para-fsize);
    margin: 15px auto; 
    padding: 20px;
    color: #444;
    background: linear-gradient(45deg, #dfe6e9, #b2bec3);
    border-left: 5px solid #FC1CB2;
    box-sizing: border-box; 
    border-radius: 0 8px 8px 0; 
}


@media (max-width: 768px) {
    .div_for_main_of_sub_page_all_post_that_created_by_anirban {
        flex-direction: column;
    }

    .div_for_left_side_content__post_update,
    .div_for_right_side_content__post_update {
        width: 100%;
    }
}













.main-post-include-section-page .main-post-include-section-page-right {
    width: 30%;
}

/* left_section */

/* post-include-advertisement */

.post-include-advertisement{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #dfe6e9, #b2bec3);
    color: var(--white-color);
    font-size: 15px;
}



/* right_section */


.widget-container {
    max-width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    margin: 20px 0px 0px 0px;
}

.widget-header {
    background: var(--background-linear-gradient);
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: var(--border-radius);
}

/* Featured Post Section */
.featured-post_san {
    padding: 20px 20px 15px 20px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--border-radius);
}


.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps aspect ratio clean */
    transition: var(--transition);
}

.featured-post:hover .image-wrapper img {
    transform: var(--transform);
}

.category-badge-changed{
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    padding: 6px 25px;
    font-size: var(--para-fsize);
    font-weight: 500;
    border-radius: var(--border-radius);
    background: var(--background-linear-gradient);
}

.post-title {
    font-size: var(--big-card-fsize);
    color: #222;
    margin: 15px 0 10px 0;
    line-height: 1.3;
    transition: var(--transition);
}

.featured-post:hover .post-title {
    color: var(--blue-color);
}

.post-excerpt {
    color: #777;
    font-size: var(--para-fsize);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* List Items Section */
.post-list {
    padding: 0 20px;
}

.post-item {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.post-item .image-divvv {
    width: 113px;
    height: 62px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.post-item .image-divvv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-item:hover .image-divvv img {
    transform: var(--transform);
}

.item-title {
    font-size: var(--small-card-fsize);
    margin: 0px 0 5px 0;
    color: #222;
    font-weight: 600;
    line-height: 1.3;
    transition: var(--transition);
}

.post-item:hover .item-title {
    color: var(--blue-color);
}