.hello-image-link-card {
    --hello-image-link-overlay: 0.45;
    --hello-image-link-zoom: 1.04;
    --hello-image-link-arrow-size: 52px;
    position: relative;
    overflow: hidden;
}

.hello-image-link-card__link {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    line-height: 0;
}

.hello-image-link-card--ratio-1-1 .hello-image-link-card__link { aspect-ratio: 1 / 1; }
.hello-image-link-card--ratio-4-5 .hello-image-link-card__link { aspect-ratio: 4 / 5; }
.hello-image-link-card--ratio-3-4 .hello-image-link-card__link { aspect-ratio: 3 / 4; }
.hello-image-link-card--ratio-9-16 .hello-image-link-card__link { aspect-ratio: 9 / 16; }

.hello-image-link-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .45s ease;
}

.hello-image-link-card:hover .hello-image-link-card__img {
    transform: scale(var(--hello-image-link-zoom));
}

.hello-image-link-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--hello-image-link-overlay));
    pointer-events: none;
}

.hello-image-link-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    pointer-events: none;
}

.hello-image-link-card__title {
    margin: 0;
    color: #fff;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 500;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hello-image-link-card__arrow {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
}

.hello-image-link-card:hover .hello-image-link-card__arrow {
    opacity: 1;
    transform: translateY(0);
}

.hello-image-link-card--arrow-off .hello-image-link-card__arrow {
    display: none;
}

.hello-image-link-card__pill {
    width: var(--hello-image-link-arrow-size);
    height: var(--hello-image-link-arrow-size);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hello-image-link-card__arrow-icon {
    width: calc(var(--hello-image-link-arrow-size) * 0.24);
    height: calc(var(--hello-image-link-arrow-size) * 0.24);
    border-top: 3px solid #111827;
    border-right: 3px solid #111827;
    transform: translateX(-6%) rotate(45deg);
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hello-image-link-card__title {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .hello-image-link-card__title {
        font-size: 36px;
    }
}

