.work-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.work-slider-container {
    overflow: hidden;
    flex: 1;
}

.work-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.work-slide {
    min-width: 100%;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.work-image {
    flex: 1;
}

.work-image img {
    width: 100%;
    /* height: 300px; */
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
}

.work-content {
    flex: 1;
    color: #fff;
}

.work-logo {
    width: 80px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 2rem;
}

.work-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.work-line {
    width: 350px;
    height: 1px;
    background: #ffffff;
    margin-bottom: 1rem;
    transform: translateX(-10em);
}

.work-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.prev-btn, .next-btn {
    background: transparent linear-gradient(135deg, #528cfe 0%, #8f4edb 100%) 0% 0% no-repeat padding-box;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(128, 82, 254, 1);
}

.work-mobile-header {
    display: none !important;
}

@media (max-width: 768px) {
    .work-slider-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .work-slider-wrapper > .prev-btn,
    .work-slider-wrapper > .next-btn {
        display: none !important;
    }

    .work-slide {
        flex-direction: column;
        gap: 20px;
    }

    .work-mobile-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        order: 1;
    }

    .work-mobile-left {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .work-mobile-nav {
        display: flex;
        gap: 10px;
        padding-right: 0.5em;
    }

    .work-mobile-nav .prev-btn,
    .work-mobile-nav .next-btn {
        display: flex !important;
    }

    .work-mobile-header .work-logo {
        width: 200px;
        height: auto;
        margin-bottom: 0;
    }

    .work-mobile-header .work-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .work-image {
        order: 2;
    }

    .work-content {
        order: 3;
        text-align: center;
    }

    .work-content .work-logo,
    .work-content .work-title,
    .work-line {
        display: none;
    }

    .work-image img {
        /* height: 200px; */
    }

    .work-description {
        margin-bottom: 1.5rem;
        font-size: 14px;
    }
}
/*# sourceMappingURL=work-slider.css.map */