.teaching-slider {
    background-color: var(--white);
    overflow-x: hidden;
}

.teaching-slider__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2.5vw, 48px);
}

.teaching-slider__header {
    text-align: center;
    margin-bottom: 96px;
}

.teaching-slider__title {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 2.92vw, 56px);
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    color: var(--gray-100);
}

.teaching-slider__slider.swiper {
    margin-right: calc(50% - 50vw);
    width: auto;
    overflow: hidden;
}

.teaching-slider__slider .swiper-wrapper {
    height: auto !important;
    align-items: stretch !important;
}

.teaching-slider__slider .swiper-slide {
    height: auto !important;
    display: flex;
}

.teaching-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    background-color: var(--white);
}

.teaching-card__image-wrapper {
    width: 100%;
    height: clamp(190px, 16.67vw, 320px);
    background-color: var(--gray-10);
    overflow: hidden;
    margin-bottom: 24px;
}

.teaching-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teaching-card:hover .teaching-card__image {
    transform: scale(1.05);
}

.teaching-card__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.teaching-card__title {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--gray-100);
    margin: 0 0 24px 0;
    min-height: 62px;
}

.teaching-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
    font-family: PP Neue Montreal;
    font-size: 16px;
    line-height: 140%;
    color: var(--gray-90);
}

.teaching-card__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.teaching-card__slash {
    display: block;
    flex-shrink: 0;
}

.teaching-card__price {
    font-family: PP Neue Montreal;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    color: var(--gray-100);
}

.teaching-card__btn {
    display: block;
    width: 100%;
    padding: 16px 0 !important;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.teaching-card__btn:hover {
    background-color: var(--gray-90) !important;
}

.teaching-slider__navigation {
    display: flex;
    gap: 24px;
    margin-top: clamp(24px, 3.33vw, 64px);
    align-items: center;
    justify-content: flex-start;
}

.teaching-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    color: var(--gray-100);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.teaching-slider__arrow:hover {
    opacity: 0.5;
}

.solutions-slider {
    background-color: var(--white);
    overflow-x: hidden;
}

.solutions-slider__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2.5vw, 48px);
}

.solutions-slider__title {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 2.92vw, 56px);
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    color: var(--gray-100);
    margin-bottom: 96px;
}

.solutions-slider__slider.swiper {
    margin-right: calc(50% - 50vw);
    width: auto;
    overflow: hidden;
}

.solutions-slider__slider .swiper-wrapper {
    height: auto !important;
    align-items: stretch !important;
}

.solutions-slider__slider .swiper-slide {
    height: auto !important;
    display: flex;
}

.solution-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}

.solution-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: clamp(190px, 16.67vw, 320px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-card__image-wrapper::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 300%;
    background: #FFFFFF;
    opacity: 0.8;
    transform: rotate(30deg);
    top: -100%;
    left: 45%;
    z-index: 1;
}
.solution-card__image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card__image {
    transform: scale(1.05);
}

.solution-card__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.solution-card__title {
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color:#000000;
    margin: 0;
}

.solution-card__meta {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color:#000000;
    margin: 0 0 12px 0;
}

.solution-card__btn {
    display: block;
    width: 100%;
    padding: 16px 0 !important;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.3s ease;
}

.solution-card__btn:hover {
    background-color: var(--gray-90) !important;
}

.solutions-slider__bottom-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: clamp(24px, 3.33vw, 64px);
}

.solutions-slider__navigation {
    display: flex;
    gap: 24px;
    align-items: center;
}

.solutions-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    color: var(--gray-100);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.solutions-slider__arrow:hover {
    opacity: 0.5;
}

.solutions-slider__more {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.solutions-slider__more-btn {
    display: inline-block;
    padding: 16px 32px !important;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.solutions-slider__more-btn:hover {
    background-color: var(--gray-100) !important;
    color: var(--white) !important;
}

.solution-card__btn-text--mobile {
    display: none;
}

@media (max-width: 1024px) {
    .solution-card__btn-text--desktop {
        display: none;
    }
    .solution-card__btn-text--mobile {
        display: inline;
    }

    .solutions-slider__title {
        font-size: clamp(28px, 6.5vw, 36px);
        line-height: 120%;
        margin-bottom: clamp(20px, 4vw, 32px);
        text-align: left;
    }

    .solutions-slider__slider .swiper-slide {
        width: clamp(240px, 72vw, 300px);
    }

    .solution-card__image-wrapper {
        margin-bottom: clamp(12px, 3vw, 16px);
        max-height: clamp(170px, 45vw, 210px);
    }

    .solution-card__info {
        gap: clamp(6px, 1.5vw, 10px);
    }

    .solution-card__title {
        font-size: clamp(17px, 4.2vw, 20px);
        line-height: 130%;
    }

    .solution-card__meta {
        font-size: clamp(13px, 3.2vw, 14px);
        margin-bottom: clamp(8px, 2vw, 12px);
    }

    .solution-card__btn {
        padding: clamp(12px, 3vw, 15px) 0 !important;
        font-size: clamp(13px, 3.2vw, 14px);
    }

    .solutions-slider__bottom-row {
        margin-top: clamp(20px, 4vw, 32px);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .solutions-slider__navigation {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: clamp(20px, 4vw, 28px);
    }

    .solutions-slider__arrow svg {
        width: 32px;
        height: 16px;
    }

    .solutions-slider__more {
        width: 100%;
        margin-top: 0;
        display: flex;
    }

    .solutions-slider__more-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: clamp(12px, 3.2vw, 15px) 20px !important;
        font-size: clamp(13px, 3.2vw, 14px);
    }
}

.product-info-slider {
    background-color: var(--white);
    overflow-x: hidden;
}

.product-info-slider__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2.5vw, 48px);
}

.product-info-slider__title {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 2.92vw, 56px);
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    color: var(--gray-90);
    margin-bottom: 96px;
}

.product-info-slider__slider.swiper {
    margin-right: calc(50% - 50vw);
    width: auto;
    overflow: hidden;
}

.product-info-slider__slider .swiper-wrapper {
    height: auto !important;
    align-items: stretch !important;
}

.product-info-slider__slider .swiper-slide {
    height: auto !important;
    display: flex;
    width: clamp(240px, 16.67vw, 320px);
}

.product-info-slider__slider .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background-color: var(--white);
}

.product-info-slider__slider .product-card__image-wrapper {
    background: #F4F4F6;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
}

.product-info-slider__slider .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-info-slider__slider .product-card:hover .product-card__image {
    transform: scale(1.03);
}

.product-info-slider__slider .product-card__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: clamp(20px, 1.93vw, 37px);
}

.product-info-slider__slider .product-card__title {
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-size: 24px;
    line-height: 135%;
    color: var(--gray-100);
    margin: 0;
    min-height: 54px;
}

.product-info-slider__slider .product-card__btn {
    display: block;
    width: 100%;
    padding: 16px 0 !important;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.product-info-slider__slider .product-card__btn:hover {
    background-color: var(--gray-100) !important;
    color: var(--white) !important;
}

.product-info-slider__bottom-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: clamp(24px, 3.33vw, 48px);
}

.product-info-slider__navigation {
    display: flex;
    gap: 24px;
    align-items: center;
}

.product-info-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    color: var(--gray-100);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-info-slider__arrow:hover {
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .product-info-slider {
        background-color: var(--gray-20);
    }

    .product-info-slider__title {
        font-size: clamp(28px, 6.5vw, 36px);
        line-height: 120%;
        margin-bottom: clamp(20px, 4vw, 32px);
        text-align: left;
        color: var(--gray-100);
    }

    .product-info-slider__slider.swiper {
        margin-right: calc(50% - 50vw);
        width: auto;
        overflow: hidden;
    }

    .product-info-slider__slider .swiper-slide {
        width: clamp(230px, 70vw, 300px);
        height: auto !important;
        display: flex;
    }

    .product-info-slider__slider .product-card {
        background: transparent !important;
        background-color: transparent !important;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-info-slider__slider .product-card__image-wrapper {
        background: transparent !important;
        background-color: transparent !important;
        margin-bottom: clamp(14px, 3vw, 20px);
        width: 100%;
        aspect-ratio: 3 / 4;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-info-slider__slider .product-card__image {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        display: block;
        transition: transform 0.3s ease;
    }

    .product-info-slider__slider .product-card__info {
        gap: clamp(12px, 3vw, 16px);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .product-info-slider__slider .product-card__title {
        font-size: clamp(16px, 4vw, 20px);
        line-height: 130%;
        min-height: clamp(42px, 10vw, 52px);
        text-align: left;
        margin: 0;
    }

    .product-info-slider__slider .product-card__btn {
        padding: clamp(12px, 3vw, 14px) 0 !important;
        background: transparent !important;
        border: 1px solid var(--gray-80);
        color: var(--gray-100);
        font-size: clamp(13px, 3.2vw, 14px);
        width: 100%;
        margin-top: auto;
    }

    .product-info-slider__slider .product-card__btn:hover {
        background-color: var(--gray-100) !important;
        color: var(--white) !important;
    }

    .product-info-slider__bottom-row {
        margin-top: clamp(20px, 4vw, 32px);
    }

    .product-info-slider__navigation {
        gap: 20px;
    }

    .product-info-slider__arrow svg {
        width: 32px;
        height: 16px;
    }
}
