body {
    font-family: 'Assistant', sans-serif;
}
.article-card {
    transition: all 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
}

.swiper-container {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 85%;
    object-fit: cover;
}

.swiper-slide .caption {
    padding: 10px;
    font-weight: 600;
    color: #333;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #d4af37; /* gold-accent */
} 