.ki-at-gallery {
--ki-gallery-bg: #edf0f2;
--ki-gallery-dark: #161616;
width: 100%;
margin: 2rem auto;
background: var(--ki-gallery-bg);
border: 1px solid rgba(0, 0, 0, .12);
overflow: hidden;
box-sizing: border-box;
}
.ki-at-gallery *,
.ki-at-gallery *::before,
.ki-at-gallery *::after {
box-sizing: border-box;
}
.ki-at-gallery__stage {
position: relative;
min-height: 280px;
padding: clamp(1rem, 4vw, 4.5rem);
display: grid;
place-items: center;
}
.ki-at-gallery__slide {
display: none;
width: 100%;
margin: 0;
}
.ki-at-gallery__slide.is-active {
display: block;
}
.ki-at-gallery__image-link {
display: block;
width: 100%;
text-decoration: none;
}
.ki-at-gallery__slide img {
display: block;
width: 100%;
max-height: min(72vh, 720px);
object-fit: contain;
margin: 0 auto;
background: #dfe3e6;
}
.ki-at-gallery__arrow {
position: absolute;
z-index: 3;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 64px;
padding: 0;
margin: 0;
border: 0;
background: rgba(255, 255, 255, .72);
color: #111;
font-size: 2rem;
line-height: 1;
cursor: pointer;
display: grid;
place-items: center;
transition: background .2s ease, transform .2s ease;
}
.ki-at-gallery__arrow:hover,
.ki-at-gallery__arrow:focus-visible {
background: #fff;
transform: translateY(-50%) scale(1.04);
}
.ki-at-gallery__arrow--prev {
left: 0;
}
.ki-at-gallery__arrow--next {
right: 0;
}
.ki-at-gallery__thumbs {
display: flex;
gap: 4px;
padding: 4px;
overflow-x: auto;
background: var(--ki-gallery-dark);
scrollbar-width: thin;
}
.ki-at-gallery__thumb {
flex: 0 0 92px;
height: 60px;
padding: 0;
margin: 0;
border: 3px solid transparent;
background: #222;
cursor: pointer;
opacity: .72;
}
.ki-at-gallery__thumb.is-active,
.ki-at-gallery__thumb:hover,
.ki-at-gallery__thumb:focus-visible {
border-color: #fff;
opacity: 1;
}
.ki-at-gallery__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.ki-at-gallery__caption {
min-height: 2.6rem;
padding: .65rem 1rem .9rem;
text-align: center;
font-size: .95rem;
font-weight: 650;
line-height: 1.4;
background: #fff;
color: #171717;
}
.ki-at-gallery__caption:empty {
display: none;
}
.ki-at-gallery__caption small,
.ki-at-featured-caption small {
font-weight: 400;
}
.ki-at-featured-caption {
margin: -.25rem 0 1.25rem;
text-align: center;
font-size: .92rem;
line-height: 1.4;
}
@media (max-width: 640px) {
.ki-at-gallery__stage {
padding: 1rem 2rem;
min-height: 220px;
}
.ki-at-gallery__arrow {
width: 34px;
height: 52px;
font-size: 1.5rem;
}
.ki-at-gallery__thumb {
flex-basis: 74px;
height: 50px;
}
}