<?php /*
Template Name: SlideShow css
*/?>

.slideshow {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

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

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .caption {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

