.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.swiper-slide a {
    display: inline-block;
}

.cover-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

/* Pagination stilleri */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.6;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #3CABC1;
    opacity: 1;
}

.swiper-pagination-bullet:hover {
    opacity: 0.8;
    background: #3CABC1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    transition: opacity 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.7;
}
