.blog-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.blog-subtitle {
    text-transform: uppercase;
    color: #64748b;
    text-align: center;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .blog-subtitle {
        font-size: 1.25rem;
    }

    .blog-title {
        font-size: 3rem;
    }
}

.blog-title {
    font-size: 1.875rem;
    text-align: center;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    line-height: 1.2;
}

.blog-title span {
    color: #7e22ce;
    font-weight: 700;
}

.blog-slider {
    padding-bottom: 2rem;
}

.blog-slider .slick-list {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    overflow: visible;
}

.blog-slider .slick-slide {
    transition: all 300ms ease;
    transform: scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

.blog-slider .slick-center {
    transform: scale(1.1);
    opacity: 1;
    z-index: 10;
}

.blog-card-wrapper {
    padding: 1rem;
    height: 100%;
}

@media (max-width: 768px) {
    .blog-card-wrapper {
        padding: 0.5rem;
    }
}

.blog-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 300ms;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    color: #9333ea;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: color 150ms;
}

.blog-card-title:hover {
    color: #7e22ce;
}

.blog-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #7e22ce;
    font-weight: 600;
    text-decoration: none;
    transition: color 150ms;
    margin-top: auto;
}

.read-more-btn:hover {
    color: #581c87;
}

.read-more-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.blog-slider .slick-prev,
.blog-slider .slick-next {
    z-index: 10;
    width: 35px;
    height: 35px;
}

.blog-slider .slick-prev {
    left: -10px;
}

.blog-slider .slick-next {
    right: -10px;
}

@media (min-width: 768px) {
    .blog-slider .slick-prev {
        left: -20px;
    }

    .blog-slider .slick-next {
        right: -20px;
    }
}