/**
 * ST landings — CTA chips (shared hints below CTA buttons).
 * Used across 5+ CTA locations; supports .st-cta-chips--dark modifier for dark backgrounds.
 */

.st-cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.st-cta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #047857;
    white-space: nowrap;
}

.st-cta-chip-check {
    width: 14px;
    height: 14px;
    color: #059669;
    flex-shrink: 0;
}

.st-cta-chips--dark .st-cta-chip {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.95);
}

.st-cta-chips--dark .st-cta-chip-check {
    color: #6EE7B7;
}

@media (max-width: 768px) {
    .st-cta-chips {
        gap: 8px;
    }

    .st-cta-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}
