* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, Helvetica, sans-serif;
     */
    font-family: "Playfair Display", serif;

}

/* BLOG MAIN HEADING */
.blog1-hedding h1 {
    text-align: center;
    font-size: 2.4rem;
    color: #222;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
}

.main {
    /* border:.1rem solid black; */
    background-color: #ffffff;
}





.text_b {
    margin-bottom: 2rem;
    /* background-position: center; */
    background-size: cover;
    width:auto;
    background-repeat: no-repeat;
    height:100%;
    background-image: url('Images/Hero_img/blog_hero.jpg');
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
 
}

.text_b h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    /* font-weight: bolder; */
  
    

}


/* BLOG CONTENT WRAPPER */
.blog1-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
    /* border-radius: 1rem; */
    background: transparent;
    /* box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08); */
}

/* BLOG TEXT */
.blo-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
}

/* BLOG IMAGE */
.blo-img img {
    width: 22rem;
    height: auto;
    /* border-radius: 0.8rem; */
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image Hover */
.blo-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE DESIGN */
@media (max-width: 800px) {
    .blog1-cont {
        flex-direction: column;
        text-align: center;
    }

    .blo-img img {
        width: 100%;
        max-width: 24rem;
    }
}

@media (max-width: 480px) {
    .blog1-hedding h1 {
        font-size: 1.9rem;
    }

    .blo-text p {
        font-size: 1.05rem;
    }
}