
.content_expect-card {
    width: 100%;
    aspect-ratio: 3 / 2;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
}
.content_expect-card:hover .card-inner {
    transform: rotateY(180deg);
}
.expect-card-front,
.expect-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    top: 0;
    left: 0;
}

.expect-card-front {
    background-color: #333;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.expect-card-front .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
    z-index: 0;
}

.expect-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(5, 46, 68, 0.8);
    z-index: 1;
}

.expect-card-front .card__title {
    z-index: 2;
    color: white;
    font-size: 1.25rem;
    text-align: center;
    padding: 0.5rem;
    position: relative;
}

.expect-card-back {
    background-color: #052E44;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

.expect-card-back .card__description {
    font-size: 0.875rem;
    line-height: 1.5;
}
