/* Blog Section Styles */
.blog-section {
    width: 100%;
    position: relative;
    background: #f2efe3;
    padding: 4rem 0;
}

.blog-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
}
.wp-singular .blog-container {
    max-width: 1300px;
    padding: 0 1rem;
}
/* Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}
.wp-singular .blog-header {
    text-align: left;
    margin-bottom: 1rem;
}
.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #264570;
    margin: 0 0 1rem 0;
}

.blog-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #264570;
    margin: 0;
}

/* Swiper */
.blog-swiper {
    padding: 2rem 0 4rem;
}

.blog-swiper .swiper-slide {
    height: auto;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgb(38 69 112 / 16%);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgb(38 69 112 / 30%);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 69, 112, 0.1);
}

/* Image */
.blog-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    filter: saturate(0.9) contrast(1.05) brightness(0.85);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.blog-placeholder-svg {
    width: 100%;
    height: 100%;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* Content */
.blog-content {
    padding: 1.5rem;
}

.blog-post-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #264570;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}
.blog-post-title a {
    color: #264570;
}

.blog-post-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(38, 69, 112, 0.8);
    margin: 0;
}

/* Navigation Buttons */
.blog-nav-next,
.blog-nav-prev {
    display: none !important;
    color: #264570 !important;
    width: 44px !important;
    height: 44px !important;
    margin-top: -60px !important;
    /* border-radius: 50% !important; */
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(38, 69, 112, 0.2) !important;
    transition: all 0.3s ease !important;
}

.blog-nav-next:hover,
.blog-nav-prev:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(38, 69, 112, 0.3) !important;
    transform: scale(1.1) !important;
}

.blog-nav-next::after,
.blog-nav-prev::after {
    font-size: 16px !important;
    font-weight: 600 !important;
}

/* Pagination */
.blog-pagination {
    position: relative !important;
    margin-top: 2rem !important;
}

.blog-pagination .swiper-pagination-bullet {
    background: rgba(38, 69, 112, 0.3) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
}

.blog-pagination .swiper-pagination-bullet-active {
    background: #264570 !important;
    transform: scale(1.5) !important;
}

/* Media Query - Only one as requested */
@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-container {
        padding: 0 1rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-swiper {
        padding: 1.5rem 0 3rem;
    }
    
    .blog-image-wrapper {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-post-title {
        font-size: 1rem;
    }
    
    .blog-post-description {
        font-size: 0.8rem;
    }
}
