.mt-wrapper {
    font-family: "یکان بخ", Sans-serif;
    position: relative;
    overflow: hidden;
}

.mt-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mt-title {
    font-family: "یکان بخ", Sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--e-global-color-text);
}



.mt-nav {
    display: flex;
    gap: 8px;
}

.mt-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: #29A6F3;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
    padding: 0 0 2px;
    user-select: none;
}

.mt-btn:hover {
    background: #114A6D;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45);
}

.mt-btn:active {
    transform: scale(0.93);
}

.mt-slider-outer {
    padding: 20px 30px 60px;
}

.mt-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.mt-card {
    background: #fff;
    border-radius: 40px;
    padding: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px #3bb3fe38;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px #3bb3fe62;

}

.mt-card-top {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.mt-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mt-name {
    font-size: 22px;
    font-weight: 700;
    color: #114A6D;
    margin: 0;
}

.mt-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.mt-star {
    font-size: 22px;
    color: #fff0c6;
}

.mt-star.on {
    color: #F5B811;
}

.mt-num {
    font-size: 16px;
    font-weight: 700;
    color: #05588B;
    margin-right: 5px;
}

.mt-avatar-box {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: #dbeafe;
    border: 4px solid #29A6F3;
}

.mt-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mt-text {
    font-size: 15px;
    line-height: 1.9;
    color: #114A6D;
    margin: 0;
    text-align: right;
}

@media screen and (max-width: 1200px) {
    .mt-avatar-box {
        width: 80px;
        height: 80px;
        border-radius: 24px;
    }

    .mt-name {
        font-size: 18px;
    }

    .mt-star {
        font-size: 20px;
        color: #fff0c6;
    }

    .mt-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 1024px) {
    .mt-card {
        min-width: calc(33.33% - 14px);
    }
}

@media (max-width: 768px) {
    .mt-card {
        min-width: calc(50% - 10px);
    }

    .mt-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mt-card {
        min-width: 100%;
    }

    .mt-wrapper {
        padding: 28px 16px;
    }
}

@media screen and (max-width: 360px) {
    .mt-card {
        border-radius: 30px;
        padding: 12px;
    }

    .mt-avatar-box {
        width: 70px;
        height: 70px;
        border-radius: 24px;
    }

    .mt-name {
        font-size: 16px;
    }

    .mt-star {
        font-size: 16px;
        color: #fff0c6;
    }

    .mt-num {
        font-size: 14px;
    }

    .mt-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .mt-btn {
        width: 40px;
        height: 40px;
    }

    .mt-btn img {
        width: 10px;
    }

    h3.mt-title {
        padding: 0 !important;
        margin: 0 !important;
    }

    .mt-slider-outer {
        padding: 0px 30px 60px;
    }
}