.sifency-stack-container {
    position: relative;
    width: 100%;
}

.sifency-stack-card {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-inner-wrapper {
    width: 90%;
    height: 80vh;
    display: flex;
    overflow: hidden;
    position: relative;
}

.card-content-box {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.card-tags {
    display: flex;
    gap: 10px;
}

.tag-item {
    font-size: 12px;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid #444;
    border-radius: 20px;
}

.card-title {
    font-size: clamp(32px, 5vw, 80px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.card-image-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .card-inner-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 70vh;
    }

    .card-image-box {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
    }

    .card-content-box {
        padding: 30px;
    }
}