.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    width: 45px;
    height: 42px;
    min-width: 45px;
    min-height: 42px;
    max-width: 45px;
    max-height: 42px;
    margin-bottom: 20px;
    display: block;
    flex-shrink: 0;
}

.testimonial-text-container {
    position: relative;
    max-height: 160px;
    overflow: hidden;
    margin-bottom: 0;
}

.testimonial-text {
    color: #6b6b84;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin: 0;
}

.testimonial-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.testimonial-read-more {
    color: #f65a6e;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.testimonial-read-more:hover {
    color: #e5495d;
}

.testimonial-divider {
    height: 1px;
    background-color: #e8e8e8;
    margin: 15px 0;
    width: 100%;
}

.testimonial-author-box {
    margin-top: auto;
}

.testimonial-author-name {
    color: #0b0726;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.testimonial-author-role {
    color: #6b6b84;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Modal styles */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.testimonial-modal.show {
    display: flex;
}

.testimonial-modal-content {
    background-color: #fff;
    border-radius: 24px;
    padding: 50px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-modal-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 5px 10px;
    z-index: 1;
}

.testimonial-modal-close:hover {
    color: #000;
}

.testimonial-modal-text {
    color: #4a4a4a;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.testimonial-modal-text p {
    margin-bottom: 16px;
}

.testimonial-modal-text p:last-child {
    margin-bottom: 0;
}

.testimonial-modal-quote {
    width: 45px;
    height: 42px;
    margin-bottom: 20px;
    display: block;
}