/* Custom Blog Section Styling */

/* Blog slider styling */
.blog-slider .slick-dots {
    bottom: -50px;
    text-align: center;
}

.blog-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.blog-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-slider .slick-dots li.slick-active button {
    background: #b68c5a;
    transform: scale(1.2);
}

/* Blog post styling */
.single-post2 {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.single-post2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-thumb2 {
    position: relative;
    overflow: hidden;
}

.blog-thumb2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.single-post2:hover .blog-thumb2 img {
    transform: scale(1.05);
}

.blog-content2 {
    padding: 25px;
}

.date-home {
    font-size: 12px;
    color: #b68c5a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-content2 h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content2 h4 a {
    color: #190a32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content2 h4 a:hover {
    color: #b68c5a;
}

.blog-content2 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-btn a {
    color: #b68c5a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.blog-btn a:hover {
    color: #190a32;
}

.blog-btn a::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-btn a:hover::after {
    transform: translateX(5px);
}

/* View All button styling */
.btn-primary {
    background: linear-gradient(135deg, #b68c5a 0%, #8b6f47 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b6f47 0%, #b68c5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 140, 90, 0.3);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-content2 {
        padding: 20px;
    }
    
    .blog-content2 h4 {
        font-size: 16px;
    }
    
    .blog-thumb2 img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .blog-slider .slick-dots {
        bottom: -40px;
    }
    
    .blog-content2 {
        padding: 15px;
    }
    
    .blog-content2 h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .blog-content2 p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .blog-thumb2 img {
        height: 180px;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
}

