.slider-container {
    width: 100%;
    max-width: 1600px;
    position: relative;
    padding: 0 50px;
    margin: 0 auto;
}

.swiper {
    width: 100%;
    padding: 4px 10px 50px;
}

.card {
    background: #ffffff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    text-align: right;
}


.rating-arc {
    position: absolute;
    top: -55px;
    left: -35px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 18px solid #FFE8AE;
    box-sizing: border-box;
}

.rating-content {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.rating-content i {
    color: #d4af37;
    font-size: 14px;
}

.card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-name {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.profile-badge {
    background-color: #935a39;
    color: var(--white-color);
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    align-self: flex-start;
}

.card-body {
    font-size: 14px;
    line-height: 2;
    color: var(--text-color);
    margin: 0;
    text-align: justify;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #935a39;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(147, 90, 57, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 11px;
    font-weight: bold;
}

.swiper-button-disabled {
    opacity: 0.5 !important;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

@media (max-width: 1400px) {
    .swiper-button-prev {
        left: 30px;
    }

    .swiper-button-next {
        right: 30px;
    }
}


@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .slider-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {

    .card {
        padding: 16px;
    }

    .profile-img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 390px) {
    .profile-name {
        font-size: 15px;
    }

    .profile-badge {
        font-size: 13px;
    }

    .rating-arc {
        position: absolute;
        top: -50px;
        left: -30px;
        width: 140px;
        height: 140px;
    }

    .card-body {
        line-height: 1.8;
    }

    .rating-content img {
        width: 16px;
    }

    .rating-content span {
        font-size: 14px;
    }
}