.home-testimonials-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(187, 126, 38, 0.08),
            transparent 30%
        ),
        #ffffff;
}

.home-testimonials-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.home-testimonials-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #b57925;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-testimonials-heading h2 {
    margin-bottom: 12px;
    color: #392614;
    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );
    font-weight: 700;
}

.home-testimonials-heading p {
    margin: 0;
    color: #7c6a55;
    line-height: 1.8;
}


/* Card */

.home-testimonial-card {
    position: relative;
    padding: 30px;
    border: 1px solid #eee2d0;
    border-radius: 24px;
    background: #fffdf9;
    box-shadow:
        0 18px 45px
        rgba(60, 40, 18, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.home-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 55px
        rgba(60, 40, 18, 0.13);
}


/* Quote */

.home-testimonial-quote-icon {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(
        181,
        121,
        37,
        0.14
    );
    font-size: 3.4rem;
    line-height: 1;
}


/* Rating */

.home-testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
    color: #d59c3e;
    font-size: 0.88rem;
}


/* Message */

.home-testimonial-message {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    min-height: 145px;
    margin-bottom: 26px;
    overflow: hidden;
    color: #645440;
    font-size: 1.02rem;
    line-height: 1.85;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}


/* Person */

.home-testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #ede3d4;
}

.home-testimonial-avatar {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ead7b8;
}

.home-testimonial-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #bd8531,
            #7a4e17
        );
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
}

.home-testimonial-person strong {
    display: block;
    margin-bottom: 3px;
    color: #392815;
    font-size: 1rem;
}

.home-testimonial-person span {
    display: block;
    color: #8b755d;
    font-size: 0.84rem;
}

.home-testimonial-person small {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    color: #a0876b;
    font-size: 0.78rem;
}


/* Responsive */

@media (max-width: 767.98px) {
    .home-testimonials-section {
        padding: 65px 0;
    }

    .home-testimonial-card {
        padding: 24px;
        border-radius: 20px;
    }

    .home-testimonial-message {
        min-height: auto;
    }
}