.emts-wrapper {
    width: 100%;
}

.emts-shell {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.emts-card {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 54px 44px;
    background: #fbfaf8;
    border: 1px solid #ece5de;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.emts-slider,
.emts-slides {
    width: 100%;
}

.emts-slides {
    position: relative;
}

.emts-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-property: opacity, transform;
    transition-timing-function: ease;
    transform: translateY(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.emts-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.emts-stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 22px;
    line-height: 1;
    color: #b58a47;
    margin-bottom: 22px;
}

.emts-star {
    display: inline-flex;
    line-height: 1;
}

.emts-quote {
    max-width: 72%;
    margin: 0 auto 24px;
    color: #69635f;
    font-size: 19px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 400;
    text-align: inherit;
}

.emts-author {
    margin-bottom: 30px;
    color: #2a2624;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-align: inherit;
}

.emts-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
    width: 100%;
}

.emts-nav-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 999px;
    border: 1px solid #dbd3cb;
    background: #fbfaf8;
    color: #474340;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.emts-nav-btn:hover {
    background: #b58a47;
    border-color: #b58a47;
    color: #ffffff;
}

.emts-nav-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.emts-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.emts-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d3ccc5;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.emts-dot.is-active {
    background: #b58a47;
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .emts-quote {
        max-width: 82%;
    }
}

@media (max-width: 767px) {
    .emts-card {
        min-height: 320px;
        padding: 38px 22px;
    }

    .emts-quote {
        max-width: 100%;
        font-size: 17px;
    }

    .emts-author {
        font-size: 17px;
    }
}
