/* file: /css/storybot-testimonials-style.css */

/**
 * StoryBot Testimonials — light "Eltern vertrauen uns" quote cards
 * ------------------------------------------------------------
 * Cloud-white full-bleed section with rounded quote cards.
 * Consumes the --gng-* tokens from the storefront-storytheme theme
 * (css/storytheme-tokens.css), incl. the bedtime-magic light accents.
 * ------------------------------------------------------------
 */

.storybot-testimonials-inner {
    padding-block: clamp(40px, 6vw, 72px);
}

.storybot-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: clamp(20px, 3vw, 36px);
}

.storybot-testimonial-card {
    background: var(--gng-cloud-card, #ffffff);
    border-radius: var(--gng-radius-lg, 18px);
    padding: 26px 24px;
    margin: 0;
    box-shadow: 0 6px 18px rgba(43, 37, 69, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.storybot-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(43, 37, 69, 0.14);
}

.storybot-testimonial-stars {
    color: var(--gng-accent, #f4c97a);
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.storybot-testimonial-quote {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--gng-ink, #2b2545);
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
    flex-grow: 1;
}

/* Decorative opening quote mark */
.storybot-testimonial-quote::before {
    content: "\201E"; /* German low opening quote */
    color: var(--gng-lavender, #b9a7e8);
    font-size: 1.6em;
    font-weight: 700;
    line-height: 0;
    margin-right: 4px;
}

.storybot-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gng-ink-muted, #6a6488);
    font-family: var(--gng-font-title, "Quicksand", sans-serif);
    font-weight: 600;
    font-size: 0.88rem;
}

.storybot-testimonial-avatar {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gng-lavender-soft, #ece6fa);
    color: var(--gng-lavender-deep, #6f5bb5);
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .storybot-testimonials-grid {
        grid-template-columns: 1fr;
    }
}
