.testimonial-short {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonial-short.hidden {
    display: none;
    opacity: 0;
}

.testimonial-full {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-full.active {
    display: block;
    opacity: 1;
}

.testimonial-toggle, .testimonial-hide {
    cursor: pointer;
    color: #0f3c71;
    text-decoration: none;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: color 0.2s ease;
    font-style: normal;
}

.testimonial-toggle:hover,
.testimonial-hide:hover {
    color: #005177;
}

.testimonial-toggle.hidden,
.testimonial-hide.hidden {
    display: none;
}

.testimonial-toggle i,
.testimonial-hide i {
    transition: transform 0.2s ease;
}

.testimonial-toggle:hover i,
.testimonial-hide:hover i {
    transform: scale(1.2);
}