.hello-stand-card {
    --hello-stand-card-zoom: 1.08;
    --hello-stand-card-btn-offset: 36px;
}

.hello-stand-card__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.hello-stand-card__image-link {
    display: block;
    line-height: 0;
}

.hello-stand-card__image {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .45s ease;
}

.hello-stand-card--ratio-1-1 .hello-stand-card__image-wrap {
    aspect-ratio: 1 / 1;
}

.hello-stand-card--ratio-4-5 .hello-stand-card__image-wrap {
    aspect-ratio: 4 / 5;
}

.hello-stand-card--ratio-3-4 .hello-stand-card__image-wrap {
    aspect-ratio: 3 / 4;
}

.hello-stand-card--ratio-16-9 .hello-stand-card__image-wrap {
    aspect-ratio: 16 / 9;
}

.hello-stand-card--ratio-1-1 .hello-stand-card__image,
.hello-stand-card--ratio-4-5 .hello-stand-card__image,
.hello-stand-card--ratio-3-4 .hello-stand-card__image,
.hello-stand-card--ratio-16-9 .hello-stand-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hello-stand-card:hover .hello-stand-card__image {
    transform: scale(var(--hello-stand-card-zoom));
}

.hello-stand-card__title-wrap {
    margin-top: 18px;
    text-align: center;
}

.hello-stand-card__title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #1f2937;
}

.hello-stand-card__button-wrap {
    margin-top: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

.hello-stand-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    background: #ffffff;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hello-stand-card__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.hello-stand-card--btn-overlay .hello-stand-card__button-wrap {
    margin-top: 0;
    transform: translateY(calc(var(--hello-stand-card-btn-offset) * -1));
}

.hello-stand-card--btn-overlay .hello-stand-card__title-wrap {
    margin-top: 0;
}

