.blog-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
@media (max-width:991px){
    .blog-section{
        padding: 50px 0;
    }
}
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width:991px){
    .blog-header{
        margin-bottom: 30px;
    }
}
.blog-subtitle {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    color: #333;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    background-color: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    color: #333;
    font-size: 20px;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-container {
        padding: 0 15px;
    }

    .blog-header {
        margin-bottom: 20px;
    }

    .blog-title {
        font-size: 24px;
    }
}

.blog-section .owl-dots{
    position: unset;
}

.blog-section .owl-carousel .owl-dot span{
    background-color: #7A5C43 !important;
    border-color: #7A5C43 !important;
}
@media (max-width:543px){
    .blog-section{
        padding: 30px 0;
    }
}