.hc-392f98a6-card {
    --ease: cubic-bezier(.85, 0, 0, 1);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 44px 26px 28px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .55s var(--ease), box-shadow .55s ease;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 1;
    background: #141515;
    isolation: isolate;
}

.hc-392f98a6-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hc-392f98a6-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: var(--hc-pos, center center) !important;
    z-index: 0;
    transform-origin: 0 0 !important;
    transform: scale(var(--hc-initial-scale, 1.02)) !important;
    filter: blur(0);
    opacity: 1;
    transition: transform .6s var(--ease), filter .6s var(--ease), opacity .6s var(--ease) !important;
}

.hc-392f98a6-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16,42,32,.66) 0%, rgba(16,42,32,.2) 38%, rgba(16,42,32,0) 72%);
    pointer-events: none;
}

.hc-392f98a6-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    pointer-events: none;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hc-392f98a6-header {
    margin-bottom: 20px;
}

.hc-392f98a6-subtitle {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 11px;
}

.hc-392f98a6-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.12;
}

.hc-392f98a6-hover-content {
    margin-top: 42px;
    overflow: hidden;
}

.hc-392f98a6-desc {
    margin: 0;
    font-size: .95rem;
    line-height: 1.5;
    transform: translateX(118%);
    transition: transform .55s var(--ease);
}

/* Hover States */
.hc-392f98a6-card:hover {
    transform: scale(1.04);
}

.hc-392f98a6-card:hover .hc-392f98a6-image {
    /* Fast zoom to down-right (Top-Left origin with scale 2 does this organically) and blurs/disappears */
    transform: scale(2.5) !important;
    filter: blur(48px) !important;
    opacity: 0 !important;
}

.hc-392f98a6-card:hover .hc-392f98a6-desc {
    transform: translateX(0);
}
