/* *****************************************************banner-section-start***************************************************** */
.banner-section-blog {
    position: relative;
    padding-block: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../assets/images/blog/blog_banner.webp) center / cover no-repeat;
    min-height: 400px;
    height: 400px;
}

/* Overlay */
.banner-section-blog::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000080;
    z-index: 1;
}

.banner-section-blog>* {
    position: relative;
    z-index: 2;
}

.banner-section-about-con h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 77.44px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}

.blog_sub_text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: #494949;
    text-align: center;
    margin-top: 10px;
}

.blog_boxes {
    margin-top: 20px;
}

.blog_images {
    width: -webkit-fill-available;
}

.daily_main {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 25px;
    border-bottom: 1px solid #3F3F3F;
}

.daily_changes {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0px;
}

.blog_admin {
    object-fit: cover;
}

.daily_changes p {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    color: #494949;
}

.blog_admin {
    object-fit: cover;
    width: 13px;
}

.blog_card {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #00000040;
}

.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.date-overlay {
    position: absolute;
    top: -45px;
    right: 10px;
    background: linear-gradient(180deg, #63388B 0%, #3A73AC 100%);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 63px;
    z-index: 1;
    /* Ensures it appears on top */
}

.day {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}

.month {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}

.content {
    position: relative;
}

.access_blog_box {
    padding: 12px 25px;
}

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.access_blog_box h2 {
    font-family: 'Rajdhani', sans-serif;
    line-height: 24px;
    font-size: 20px;
    color: #5B4492;
    font-weight: 700;
    padding-bottom: 7px;
}

.access_blog_box p {
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.read_more_blog {
    color: #5B4492;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    line-height: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
}

.read_more_blog:hover {
    color: #000000;
}

.blogs_articles {
    padding: 60px 0 40px 0;
}



@media (max-width:1200px) {
    .date-overlay {
        height: fit-content;
        top: -78px;
        justify-content: space-between;
    }

    .daily_main {
        gap: 0px;
        padding: 0 20px;
        justify-content: space-between;
    }

    .access_blog_box {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .blogs_articles {
        padding: 40px 0 20px 0;
    }
}

@media (max-width:480px) {
    .banner-section-blog{
        height: 200px;
        min-height: 200px;
    }
    .blog_sub_text {
        font-size: 16px;
        line-height: 23px;
    }
}