.upcoming-practices {
    font-family: Inter, sans-serif;
    position: relative;
    overflow: visible;
}

/* ===== Wrapper ===== */
.upcoming-slider-wrapper {
    position: relative;
}

/* ===== Swiper ===== */
.upcoming-slider-wrapper .swiper {
    padding: 10px 0;
}

/* ===== Card ===== */
.practice-card {
    background: #fff;
    border: 2px solid #e77611;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(231, 118, 17, 0.15);
    transition: transform .25s ease;
    height: 100%;
}

.practice-card:hover {
    transform: translateY(-4px);
}

/* ===== Text ===== */
.practice-date {
    color: #e77611;
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.practice-time {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.practice-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.practice-expert {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Custom arrows ===== */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 2px solid #e77611;
    border-radius: 50%;
    background: #fff;
    color: #e77611;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    z-index: 10;
}

.custom-arrow:hover {
    background: #e77611;
    color: #fff;
}

/* Левая стрелка */
.custom-prev {
    left: -64px;
}

/* Правая стрелка */
.custom-next {
    right: -64px;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
    .custom-prev {
        left: -32px;
    }

    .custom-next {
        right: -32px;
    }
}
