.interactive-card-7319357d {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    background-color: #000;
}

/* Layer 1: Blurred Background Image */
.card-blur-bg-7319357d {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    opacity: 0;
    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 1;
}

/* Layer 2: Dark Overlay */
.card-overlay-7319357d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 2;
}

/* Layer 3: Centered Container that shrinks on hover */
.card-center-container-7319357d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.7s cubic-bezier(0.25, 1, 0.3, 1), height 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 3;
    overflow: hidden;
}

/* The sharp copy of the image inside the center container */
.card-sharp-img-7319357d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 1;
}

/* Text and Button content */
.card-content-7319357d {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Elegant Title */
.card-title-7319357d {
    margin: 0;
    font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Hover-revealed Button */
.card-button-7319357d {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 45px;
    padding: 0 8px 0 16px;
    background-color: rgba(100, 90, 85, 0.85);
    border-radius: 50px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.3, 1), transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    box-sizing: border-box;
}

.btn-text-7319357d {
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Circle Arrow wrapper */
.card-arrow-7319357d {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c4440;
}

/* Hover interactions */
.interactive-card-7319357d:hover .card-blur-bg-7319357d {
    opacity: 1;
    transform: scale(1);
}

.interactive-card-7319357d:hover .card-overlay-7319357d {
    opacity: 1;
}

.interactive-card-7319357d:hover .card-center-container-7319357d {
    width: 58%;
    height: 60%;
}

.interactive-card-7319357d:hover .card-button-7319357d {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive constraints */
@media (max-width: 767px) {
    .interactive-card-7319357d:hover .card-center-container-7319357d {
        width: 82%;
        height: 65%;
    }
}
