/* Jerry Testimonials Styles */

/* GRID LAYOUT */
.jerry-testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.jerry-testimonial-item {
    box-sizing: border-box;
    padding: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .jerry-testimonial-item {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .jerry-testimonial-item {
        width: 33.3333%;
    }
}

/* CARD */
.jerry-testimonial-card {
    position: relative;
    perspective: 1000px;
    width: 100%;
    aspect-ratio: 390 / 502; /* ★ keeps exact 1:1.285 ratio ★ */
    overflow: hidden;
}

.jerry-testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* FRONT + BACK (base styling) */
.jerry-testimonial-front,
.jerry-testimonial-back {
    position: absolute;
    inset: 0;
    padding: 40px 32px;
    box-sizing: border-box;

    /* ★ Left-aligned layout ★ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;

    transition: opacity 0.35s ease, transform 0.35s ease;
    backface-visibility: hidden;
}

/* FRONT SIDE (purple) */
.jerry-testimonial-front {
    background-color: #670666;
    color: #ffffff;
}

/* BACK SIDE (cream) */
.jerry-testimonial-back {
    background-color: #F8F0E6;
    color: #51382E;
    opacity: 0;
    transform: translateY(10px);
}

/* HOVER EFFECT */
.jerry-testimonial-card:hover .jerry-testimonial-front {
    opacity: 0;
    transform: translateY(-10px);
}

.jerry-testimonial-card:hover .jerry-testimonial-back {
    opacity: 1;
    transform: translateY(0);
}

/* STARS */
.jerry-testimonial-stars {
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #FF9401;
    line-height: 1;
    margin-bottom: 2rem; /* ★ space between stars → title ★ */
}

.jerry-testimonial-stars span {
    display: inline-block;
}

/* QUOTE TEXT */
.jerry-testimonial-quote {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 2rem; /* ★ space between title → name ★ */
}

/* NAME TEXT */
.jerry-testimonial-name {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}

/* BACK DESCRIPTION */
.jerry-testimonial-description {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    text-align: left;
}

/* Remove excess paragraph spacing */
.jerry-testimonial-description p,
.jerry-testimonial-quote p {
    margin: 0 0 10px;
}

.jerry-testimonial-description p:last-child,
.jerry-testimonial-quote p:last-child {
    margin-bottom: 0;
}