/* Container */
.nito-carousel-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px;
}

/* Card Layout – 50/50 split */
.nito-card {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.nito-card__text {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
    box-sizing: border-box;
}

.nito-card__image {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* "Every Saturday · Live" – inherits Impreza body font, just uppercase */
.nito-card__label-top {
    display: block;
    text-transform: uppercase;
    color: #e87a20;
    margin-bottom: 0;
}

/* "this saturday on the decks" */
.nito-card__tagline {
    font-family: 'CoveredGraceLokal', cursive;
    font-size: 2.3rem;
    color: #ffffff;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 10px;
    font-weight: 500;
}

/* DJ Name – h2, inherits Impreza h2 styling */
.nito-card__dj-name {
    color: #ffffff;
    margin: 0 0 24px;
    text-transform: uppercase;
}

/* Details Grid – SET 2/4, WHEN 1/4, DOORS 1/4 */
.nito-card__details {
    display: flex;
    margin-bottom: 24px;
}

.nito-card__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nito-card__detail:first-child {
    flex: 0 0 50%;
}

.nito-card__detail:nth-child(2),
.nito-card__detail:nth-child(3) {
    flex: 0 0 25%;
}

.nito-card__detail-label {
    text-transform: uppercase;
    color: #b5b0b2;
}

.nito-card__detail-value {
    color: #ffffff;
}

/* "see you on the floor" */
.nito-card__cta {
    font-family: 'CoveredGraceLokal', cursive;
    font-size: 1.9rem;
    color: #e87a20;
    margin: 0;
    font-weight: 500;
}

/* Image Frame – always square */
.nito-card__image-frame {
    position: relative;
    border-radius: 16px;
    border: 1px solid #e87a20;
    overflow: hidden;
    width: 100%;
    max-width: 544px;
    aspect-ratio: 1 / 1;
}

.nito-card__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation */
.nito-swiper-prev,
.nito-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(232, 122, 32, 0.15);
    border: 2px solid #e87a20;
    color: #e87a20;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.nito-swiper-prev:hover,
.nito-swiper-next:hover {
    background: rgba(232, 122, 32, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.nito-swiper-prev {
    left: 0;
}

.nito-swiper-next {
    right: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .nito-card {
        flex-direction: column;
        gap: 60px;
    }

    .nito-card__text,
    .nito-card__image {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding-right: 0;
    }

    .nito-card__details {
        flex-direction: column;
        gap: 8px;
    }

    .nito-card__detail:first-child,
    .nito-card__detail:nth-child(2),
    .nito-card__detail:nth-child(3) {
        flex: none;
    }

    .nito-carousel-wrap {
        padding: 20px 20px;
    }

    .nito-swiper-prev,
    .nito-swiper-next {
        width: 36px;
        height: 36px;
    }

    .nito-card__image-frame {
        border-radius: 12px;
    }
}
