.mmct,
.mmct *,
.mmct *::before,
.mmct *::after {
    box-sizing: border-box;
    font-family: "IranyekanX" !important;
}

.mmct {
    width: 100%;
    direction: rtl;
    position: relative;
}

.mmct__viewport {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mmct__groups {
    width: 100%;
    position: relative;
}

.mmct__group {
    width: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mmct__group.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.mmct__group.is-entering,
.mmct__group.is-leaving {
    visibility: visible;
    pointer-events: none;
    z-index: 3;
}

.mmct__group.is-entering {
    opacity: 1;
}

.mmct__group.is-leaving {
    opacity: 1;
}

.mmct__card {
    width: 450px;
    min-height: 260px;
    padding: 24px;
    margin: 0;
    background: #2A2A2A;
    border-radius: 55px;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 1.1s ease,
        transform 1.1s ease;
    will-change: opacity, transform;
}

.mmct__group.is-active .mmct__card {
    opacity: 1;
    transform: translateY(0);
}

.mmct__group.is-entering .mmct__card {
    opacity: 0;
    transform: translateY(14px);
}

.mmct__group.is-entering .mmct__card.is-show {
    opacity: 1;
    transform: translateY(0);
}

.mmct__group.is-leaving .mmct__card {
    opacity: 1;
    transform: translateY(0);
}

.mmct__group.is-leaving .mmct__card.is-hide {
    opacity: 0;
    transform: translateY(14px);
}

.mmct__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.mmct__profile {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
}

.mmct__thumb-wrap {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.mmct__thumb {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mmct__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mmct__name {
    margin: 0 0 6px 0;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    text-align: right;
    font-family: "IranyekanX" !important;
}

.mmct__position {
    margin: 0;
    color: #D0D0D0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    text-align: right;
    font-family: "IranyekanX" !important;
}

.mmct__quote {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmct__quote img {
    width: 64px;
    height: 64px;
    display: block;
    object-fit: contain;
}

.mmct__content {
    width: 100%;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 2;
    text-align: justify;
    direction: rtl;
    font-family: "IranyekanX" !important;
}

.mmct__content p {
    margin: 0 0 12px 0;
    text-align: justify;
    font-size: 15px;
    line-height: 2;
    font-family: "IranyekanX" !important;
}

.mmct__content p:last-child {
    margin-bottom: 0;
}

.mmct__nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.mmct__arrow {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mmct__arrow:hover {
    transform: scale(1.04);
    opacity: 0.95;
}

.mmct__arrow:focus,
.mmct__arrow:active {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.mmct__arrow img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.mmct--mobile .mmct__group {
    justify-content: center;
}

.mmct--mobile .mmct__card {
    width: 100%;
    max-width: 450px;
}

.mmct--mobile .mmct__card--mobile-hidden {
    display: none !important;
}

@media (max-width: 1480px) {
    .mmct__card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 991px) {
    .mmct__card {
        width: 100%;
        border-radius: 35px;
    }
}

@media (max-width: 575px) {
    .mmct__card {
        padding: 20px;
        border-radius: 28px;
    }

    .mmct__header {
        align-items: flex-start;
    }

    .mmct__thumb-wrap {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .mmct__quote,
    .mmct__quote img {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .mmct__name {
        font-size: 24px;
    }

    .mmct__position {
        font-size: 18px;
    }

    .mmct__content,
    .mmct__content p {
        font-size: 15px;
    }

    .mmct__nav {
        margin-top: 24px;
        gap: 20px;
    }
}