/* ===== Hezi Contact Card Widget ===== */
.hezi-contact-card .theme-testimonial-block {
    background-color: #fff;
    position: relative;
    border-radius: 0;
    text-align: center;
    margin: 0;
    padding: 2.5rem 1.875rem 3.5rem;
    font-size: unset;
    transition: all 0.5s;
    transform: translateY(0);
    border: 1px solid #FAB702;
}
.hezi-contact-card .theme-testimonial-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    background-color: #FAB702;
}
.hezi-contact-card .theme-testimonial-block:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-7px);
}
.hezi-contact-card .theme-testimonial-block::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    content: "\201C";
    display: inline-block;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: #FAB702;
}

/* Thumbnail */
.hezi-contact-card .thumbnail {
    margin: 0 auto 1.5rem;
    position: relative;
}
.hezi-contact-card .thumbnail img {
    margin: 0.125rem auto;
    box-shadow: 0 5px 9px rgb(0 0 0 / 20%);
    border: 7px solid #fff;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.hezi-contact-card .placeholder-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #ddd;
    border: 7px solid #fff;
    box-shadow: 0 5px 9px rgb(0 0 0 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.125rem auto;
    color: #999;
    font-size: 0.85rem;
}

/* Content */
.hezi-contact-card .testimonial-content {
    position: relative;
    padding: 0 0 1.875rem;
}
.hezi-contact-card .testimonial-content p {
    color: #606060;
    padding-bottom: 1rem;
    line-height: 1.75;
    margin: 0;
}
.hezi-contact-card .testimonial-content .name {
    font-size: 1.125rem;
    font-weight: 600;
    font-style: normal !important;
    margin: 0 0 -3px;
    display: block;
    color: #FAB702;
}
.hezi-contact-card .testimonial-content .position {
    font-size: 0.938rem;
    color: #000;
}

.hezi-contact-card .theme-testimonial-block.has-bottom-icon::after {
    display: none;
}

/* Bottom Icon */
.hezi-contact-card .card-bottom-icon {
    margin-top: 15px;
    text-align: center;
}
.hezi-contact-card .card-bottom-icon img {
    width: 80px;
    height: auto;
    display: inline-block;
}

/* Animation */
@keyframes heziCardFadeInUp {
    from { opacity: 0; transform: translate3d(0, 30px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hezi-contact-card .animate {
    animation: heziCardFadeInUp 1s both;
}
