.cosplay-slide-link {
    text-decoration: none;
    color: inherit; /* Keeps text the color you already defined */
    display: block;
}

.cosplay-slide-card {
    transition: transform 0.3s ease;
}

/* Add a subtle zoom effect when hovering over a slide */
.cosplay-slide-link:hover .cosplay-slide-card {
    transform: scale(1.02);
}

.cosplay-slider-section {
    padding: 20px 0;
}

.cosplay-slide-card img {
    width: 100%;
    aspect-ratio: 4 / 5; 
    object-fit: cover; 
    border-radius: 0px;
    display: block;
}

/* Optional: Center the text below the square */
.slide-caption h3 {
    margin-top: 12px;
    text-align: center;
}

.cosplay-slider-section .splide__arrow svg {
    fill: var(--white);
    height: 2em;
    width: 2em;
    opacity: 1;
}

.cosplay-slider-section .splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: var(--black);
    border: 0;
    border-radius: 0; 
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 4em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4em;
    z-index: 1;
}