.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1/1;
    height: 100%;
    width: auto;
    max-width: 100vh;
    max-height: none;
    z-index: -1;
}

.swiper-slide {
    aspect-ratio: 1/1;
    background: #333;
    ;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.line-action {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

#hero {
    overflow: hidden;
}

@media (max-width: 468px) {
    .line-action {
        flex-direction: column;
    }
}