.han-yorum-widget,
.han-yorum-widget * {
    box-sizing: border-box;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.han-yorum-widget {
    --hy-container: 1400px;
    --hy-card-w: 390px;
    --hy-gap: 28px;
    --hy-speed: 42s;
    --hy-direction: normal;
    --hy-shift: -50%;
    width: 100%;
    max-width: 100%;
    color: #17181c;
    isolation: isolate;
    line-height: 1.5;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.han-yorum-widget a,
.han-yorum-widget button,
.han-yorum-widget input,
.han-yorum-widget textarea,
.han-yorum-widget select {
    font-family: "Poppins", Arial, Helvetica, sans-serif !important;
}

.han-yorum-shell {
    width: min(100%, var(--hy-container));
    max-width: var(--hy-container);
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.han-yorum-head {
    width: 100%;
}

.han-yorum-eyebrow {
    display: block;
    margin: 0 0 18px;
    color: #d6b417;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 9px;
    line-height: 1.2;
    text-transform: uppercase;
}

.han-yorum-title {
    margin: 0;
    padding: 0;
    color: #17181c;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -1.6px;
}

.han-yorum-desc {
    max-width: 980px;
    margin: 26px 0 0;
    padding: 0;
    color: #666b78;
    font-size: clamp(17px, 1.55vw, 24px);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: .1px;
}

.han-yorum-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2px 0 22px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.han-yorum-track {
    display: flex;
    width: max-content;
    gap: var(--hy-gap);
    align-items: stretch;
    animation: hanYorumScroll var(--hy-speed) linear infinite;
    animation-direction: var(--hy-direction);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.han-yorum-pause .han-yorum-viewport:hover .han-yorum-track {
    animation-play-state: paused;
}

.han-yorum-card {
    position: relative;
    display: flex;
    flex: 0 0 var(--hy-card-w);
    width: var(--hy-card-w);
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    margin: 0;
    padding: 52px 36px 38px;
    background: #fff;
    border: 1px solid #eceef4;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(18, 20, 28, .07);
    color: #666b78;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.han-yorum-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 36px;
    width: 70px;
    height: 4px;
    background: #d6b417;
    border-radius: 0 0 8px 8px;
}

.han-yorum-card:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(214, 180, 23, .42);
    box-shadow: 0 24px 54px rgba(18, 20, 28, .09);
}

.han-yorum-quote-mark {
    position: absolute;
    top: 24px;
    right: 34px;
    z-index: 0;
    color: rgba(214, 180, 23, .14);
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 74px;
    font-weight: 700;
    line-height: .7;
    pointer-events: none;
    user-select: none;
}

.han-yorum-stars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 34px;
    line-height: 1;
}

.han-yorum-star {
    display: inline-flex;
    color: #d9dce5;
    font-size: 16px;
    line-height: 1;
}

.han-yorum-star.is-active {
    color: #d6b417;
}

.han-yorum-text {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    padding: 0;
    color: #666b78;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: -.1px;
}

.han-yorum-card-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 34px;
}

.han-yorum-name {
    margin: 0;
    padding: 0;
    color: #17181c;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.3px;
}

.han-yorum-meta {
    display: block;
    margin-top: 8px;
    color: #707684;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

@keyframes hanYorumScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(var(--hy-shift), 0, 0);
    }
}

@media (max-width: 1024px) {
    .han-yorum-shell {
        width: 100%;
        max-width: 100%;
    }

    .han-yorum-eyebrow {
        letter-spacing: 6px;
    }
}

@media (max-width: 767px) {
    .han-yorum-widget {
        --hy-card-w: 292px;
        --hy-gap: 18px;
    }

    .han-yorum-shell {
        padding-right: 15px;
        padding-left: 15px;
    }

    .han-yorum-eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 4px;
    }

    .han-yorum-title {
        font-size: 31px;
        line-height: 1.22;
        letter-spacing: -.9px;
    }

    .han-yorum-desc {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .han-yorum-viewport {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
    }

    .han-yorum-card {
        min-height: 276px;
        padding: 42px 24px 28px;
        border-radius: 16px;
    }

    .han-yorum-card::before {
        left: 24px;
        width: 58px;
        height: 3px;
    }

    .han-yorum-quote-mark {
        top: 23px;
        right: 22px;
        font-size: 58px;
    }

    .han-yorum-stars {
        gap: 6px;
        margin-bottom: 25px;
    }

    .han-yorum-text {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .han-yorum-card-footer {
        padding-top: 26px;
    }

    .han-yorum-name {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .han-yorum-track {
        animation-duration: 1ms;
        animation-play-state: paused;
    }

    .han-yorum-card {
        transition: none;
    }
}
