Skip to content
/* Horizon theme - fully responsive slideshow */
.slideshow__slide {
width: 100%;
height: 100%;
overflow: hidden; /* hide anything overflowing */
display: flex;
justify-content: center; /* center image horizontally */
align-items: center; /* center image vertically */
}
.slideshow__slide img {
width: 100%;
height: 100%;
object-fit: cover; /* fill container without distortion */
object-position: center; /* keep main subject centered */
display: block;
}
/* Mobile specific adjustments */
@media screen and (max-width: 768px) {
.slideshow__slide img {
width: 100%;
height: auto; /* maintain aspect ratio */
max-height: 500px; /* optional: limit height for mobile */
}
}