.han-yorum,
.han-yorum * {
    box-sizing: border-box;
}

.han-yorum {
    width: 100%;
    background: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    overflow: hidden;
}

.han-yorum-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.han-yorum-head {
    max-width: 850px;
    margin-bottom: 44px;
}

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

.han-yorum-title {
    margin: 0;
    color: #101116;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.han-yorum-desc {
    max-width: 820px;
    margin: 22px 0 0;
    color: #5c6069;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.han-yorum-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 6px 0 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.han-yorum-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    animation-name: hanYorumScroll;
    animation-duration: 34s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

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

.han-yorum-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 390px;
    min-width: 390px;
    min-height: 260px;
    padding: 30px 28px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(15, 17, 22, 0.04);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    overflow: hidden;
}

.han-yorum-card:before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    width: 56px;
    height: 3px;
    background: #b3222a;
    border-radius: 0 0 10px 10px;
}

.han-yorum-card:hover {
    transform: translateY(-7px);
    border-color: rgba(179, 34, 42, 0.28);
    box-shadow: 0 24px 65px rgba(15, 17, 22, 0.09);
}

.han-yorum-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.han-yorum-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #b3222a;
    font-size: 17px;
    line-height: 1;
    letter-spacing: .02em;
}

.han-yorum-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #b3222a;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    opacity: .18;
    transform: translateY(-2px);
}

.han-yorum-text {
    margin: 0;
    color: #5c6069;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 400;
}

.han-yorum-person {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: auto;
    padding-top: 26px;
}

.han-yorum-name {
    display: block;
    color: #101116;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.han-yorum-meta {
    display: block;
    color: #5c6069;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.elementor-editor-active .han-yorum-card,
.elementor-editor-preview .han-yorum-card {
    transform: none;
}

@keyframes hanYorumScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 1024px) {
    .han-yorum-title {
        font-size: clamp(34px, 7vw, 58px);
    }

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

@media (max-width: 767px) {
    .han-yorum {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .han-yorum-head {
        margin-bottom: 28px;
    }

    .han-yorum-eyebrow {
        font-size: 11px;
        letter-spacing: .32em;
        margin-bottom: 10px;
    }

    .han-yorum-title {
        font-size: clamp(32px, 11vw, 43px);
        line-height: 1.1;
    }

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

    .han-yorum-marquee {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding-left: 0;
        padding-right: 0;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }

    .han-yorum-card {
        width: 310px;
        min-width: 310px;
        min-height: 245px;
        padding: 26px 23px;
    }

    .han-yorum-text {
        font-size: 15px;
        line-height: 1.68;
    }

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

    .han-yorum-meta {
        font-size: 12.5px;
    }
}
