﻿/* Quote at the top */
#testmonials {
    max-width: 550px;
    margin: auto;
}

.quote h1 {
    text-align: center;
    font-size: 34px;
    line-height: 1.3;
    margin: 80px 0px 50px 0px;
    font-style: normal;
    font-weight: 500;
}

.quote span {
    color: var(--primary-color);
    /* gold accent */
    font-weight: 500;
}

/* Each testimonial section */
#testmonials {
    /*display: flex;*/
    /* allows multiple cards inline */
    width: 100%;
    vertical-align: top;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

/* Card */
#testmonials .testimonial-card {
    background-color: var(--color-white);
    /* explicitly white */
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 28px var(--shadow-testimonial);
    text-align: center;
}

.testimonial-card {
    width: 100%;
    max-width: 500px;
    margin: 20px;
}

/* Image wrapper */
#testmonials .image-wrapper {
    border-radius: 6px;
    overflow: hidden;
}

#testmonials .image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Caption */
#testmonials .caption {
    margin-top: 14px;
    font-size: 16px;
    color: var(--color-text-value);
}

#testmonials .caption strong {
    font-weight: 600;
}

.testmonial-next {
    max-width: 660px;

}

.final-caption {
    margin-top: 40px;
    font-size: 24px;
    color: var(--color-text-value);
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

/* Responsive layout */
@media (max-width: 900px) {
    #testmonials {
        /* max-width: 550%; */
    }
}

@media (max-width: 600px) {
    .quote {
        font-size: 26px;
        margin-top: 60px;
    }

    #testmonials {
        max-width: 100%;
        margin: 16px 0;
    }

    .testimonial-card {
        margin: 0;
    }
}

@media only screen and (max-width: 425px) {
    .quote {
        font-size: 22px;
        margin-top: 20px;
    }

    .quote h1 {
        text-align: center;
        font-size: 26px;
        line-height: 1.3;
        margin-top: 20px;
        margin-bottom: 0;
        font-style: normal;
        font-weight: 500;
    }

    .quote span {
        color: var(--primary-color);
        /* gold accent */
        font-weight: 500;
    }
}