/* file: /css/storybot-trust-badges-style.css */

/**
 * StoryBot Trust Badges — light "parent trust" row
 * ------------------------------------------------------------
 * Cloud-white full-bleed section with four pastel icon cards.
 * Consumes the --gng-* tokens from the storefront-storytheme theme
 * (css/storytheme-tokens.css), incl. the bedtime-magic light accents.
 * ------------------------------------------------------------
 */

.storybot-trust-section {
    /* Light surface + ink text come from .gng-section--light (theme tokens). */
    box-shadow: inset 0 8px 24px rgba(43, 37, 69, 0.05);
}

.storybot-trust-inner {
    /* Slightly tighter rhythm than a full .gng-section. */
    padding-block: clamp(36px, 6vw, 64px);
}

.storybot-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.storybot-trust-badge {
    text-align: center;
    padding: 10px 8px;
}

/* Pastel circle icons — one soft tint per badge */
.storybot-trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.storybot-trust-icon--lavender {
    background: var(--gng-lavender-soft, #ece6fa);
    color: var(--gng-lavender-deep, #6f5bb5);
}

.storybot-trust-icon--rose {
    background: #fbe7ee;
    color: #c95d85;
}

.storybot-trust-icon--mint {
    background: #e2f3e8;
    color: #4d8f66;
}

.storybot-trust-icon--gold {
    background: #fbf1dc;
    color: #c9952f;
}

.storybot-trust-title {
    font-family: var(--gng-font-title, "Quicksand", sans-serif);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gng-ink, #2b2545);
    margin: 0 0 6px;
}

.storybot-trust-text {
    color: var(--gng-ink-muted, #6a6488);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
    max-width: 240px;
    margin-inline: auto;
}

/* Responsive: 2 columns on tablet, 1 on small phones */
@media (max-width: 900px) {
    .storybot-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .storybot-trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
