/* Blog Section start */
.blog-section-main {
    padding: 50px 0;
    padding-bottom: 20px;
    background-color: #FAF5EF;
    /* padding-bottom: 100px; */
}

/* Blog News Section */
.blog-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 31%;
    /* Added spacing between rows */
}

.blog-image-box .image {
    height: 300px;
}

.blog-image-box .image img {
    height: 100%;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Blog Image Box */
.blog-image-box {
    position: relative;
    height: 220px;
    /* Set a fixed height for images */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures uniform image scaling */
}

/* Blog Date */
.blog-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5722;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

/* Blog Content Box */
.blog-content-box {
    padding: 20px;
}

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

.blog-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
}

.blog-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #ff5722;
}

.blog-read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff5722;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-read-more i {
    background-color: #ff5722;
    padding: 5px;
    color: white;
    border-radius: 100px;
    font-size: 10px;
}

.blog-read-more:hover {
    text-decoration: none;
    color: #562C39;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    padding-left: 5px;
}

.blog-meta li {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Adds spacing between the icon and text */
}

.blog-meta li i {
    font-size: 16px;
    color: #ff5722;
    /* Matches the theme color */
}

/* Responsive Styles */
@media(max-width: 769px) {
    .blog-section {
        flex-wrap: wrap;
    }

    .blog-card {
        width: 47%;
    }
}

@media(max-width: 426px) {
    .blog-card {
        width: 100%;
        /* Full width for smaller screens */
    }
}

/* blog section end */