.engineered-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.engineered-carousel {
    padding: 40px 0;
}

.engineered-carousel .swiper-slide {
    width: auto;
}

.carousel-card {
    position: relative;
    display: block;
    height: 600px;
    width: clamp(600px, 00vw, 850px);
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    padding: 40px;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* استایل اورلی رو خودت اینجا میدی */
}

.card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.card-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-button svg {
    width: 20px;
    height: 20px;
    transform: rotate(-135deg); /* جهت ساعت ۱۱ */
    stroke: #000;
    stroke-width: 2;
    fill: none;
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-card {
        width: 85vw;
        height: 520px;
    }
}