#testimonials {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#testimonials h1 {
    text-align: center;
}

#testimonials .section_divider {
    margin: 1.25rem;
}

.testimonials_section {
    width: 100%;
}

.testimonials_title {
    color: var(--graphite-gray);
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.testimonials_card {
    width: 100%;
    border: 2px solid #d1d5db;
    border-radius: 1rem;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1.6rem;
    height: 230px;
}

.testimonials_stars {
    color: #e9a209;
}

@media screen and (max-width: 1170px) {
    #testimonials {
        min-height: auto;
        padding: 2rem 0;
    }
}
