.testmonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testmonial {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 10px;

    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px dashed var(--light-magenta);
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.testmonial:hover {
    transform: translateY(-10px);/*  */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testmonial p {
    text-align: center;
}

.testimonial-text {
    font-size: large;
    font-style: italic;
}

.testimonial-person-info {
    color: var(--darker-magenta);
    font-weight: bolder;
}