/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 6.25rem 0.5rem;
    position: relative;
}

.blog-header {
    max-width: 33.75rem;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 4.375rem;
}

.blog-header .section-title {
    padding-bottom: 1.5rem;
}

.blog-header-desc {
    font-size: 0.75rem;
    color: var(--gray-400);
}

@media (min-width: 363px) {
    .blog-header-desc {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .blog-header-desc {
        font-size: 1.125rem;
    }
}

/* Blog card */
.blog-card {
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-100);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(209, 213, 219, 0.3);
    transition: var(--transition-fast);
}

.blog-card:hover {
    box-shadow: 0 25px 50px -12px rgba(209, 213, 219, 0.5);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card img {
    width: 100%;
    height: 14.125rem;
    object-fit: cover;
}

.blog-card-body {
    margin: 1.5rem;
}

.blog-card-meta {
    font-size: 0.625rem;
    font-weight: 400;
    color: var(--gray-400);
}

@media (min-width: 363px) {
    .blog-card-meta {
        font-size: 0.875rem;
    }
}

.blog-card-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333333;
}

@media (min-width: 363px) {
    .blog-card-title {
        font-size: 1.125rem;
    }
}

/* Swiper overrides */
.swiper-pagination-bullet-active {
    background-color: #210c33 !important;
    width: 30px;
    height: 8px;
    border-radius: 100px;
    transition: 0.4s;
}

.swiper-pagination-bullet {
    background-color: #717377;
}

.blog-swiper .swiper-slide {
    margin-bottom: 2.5rem;
    background-color: transparent;
}