@use "../abstracts" as *; // -------------------------------------------------- // HOME STYLE // -------------------------------------------------- .home { .home__gallery { display: flex; flex-direction: column; align-items: center; gap: 2rem; width: $content-width-m; .home__gallery-item { display: table; .home__carousel { &:where(.splide) { cursor: pointer; .splide__track { .splide__list { position: relative; .splide__slide { transform: none !important; &:not(.is-active) { position: absolute; inset: 0; } .splide__image { max-height: 80vh; } } } } } } .home__main-image { max-height: 80vh; } .home__image-caption { display: table-caption; caption-side: bottom; margin: 0.5rem 0 0; } } } }