.angie-card-wrapper-e9b15413 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition-property: box-shadow;
}

.angie-card-content-front-e9b15413,
.angie-card-content-back-e9b15413 {
    transition-property: opacity, transform;
}

.angie-card-content-front-e9b15413 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Adjusted to space-between for image and title */
    opacity: 1;
    transform: translateY(0);
    height: 100%;
}

.angie-card-content-back-e9b15413 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: inherit; /* Inherit card background so it covers image/title */
    pointer-events: none;
    z-index: 2; /* Ensures it sits above front content */
}

.angie-card-wrapper-e9b15413:hover .angie-card-content-front-e9b15413 {
    opacity: 0;
    transform: translateY(-20px);
}

.angie-card-wrapper-e9b15413:hover .angie-card-content-back-e9b15413 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.angie-card-image-e9b15413 {
    object-fit: cover;
    display: block;
}

.angie-card-title-e9b15413 {
    margin: 15px 0 0 0;
}

.angie-card-subtext-e9b15413 {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}