/* ==========================================================================
   Component: Signs Grid
   Grid of question/sign cards with "?" markers or bullet icons
   ========================================================================== */

.signs {
    background: #fff;
    padding: 64px 0 80px;
}

.signs__desc {
    font-size: 15.2px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 640px;
}

.signs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sign-card {
    background: #f4f3ff;
    border-radius: 20px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sign-card__q {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--red-btn);
    flex-shrink: 0;
    margin-top: 1px;
}

.sign-card__bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 9999px;
    background: var(--red-btn);
    flex-shrink: 0;
    margin-top: 7px;
}

.sign-card__text {
    font-size: 13.9px;
    line-height: 1.7;
    color: #404057;
}

/* Callout box */
.signs__callout {
    margin-top: 32px;
    background: var(--purple-bg);
    border-radius: 16px;
    padding: 24px 28px;
    font-size: 14.4px;
    line-height: 1.7;
    color: var(--text-body);
}

.signs__callout p {
    margin-bottom: 12px;
}

.signs__callout p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .signs__grid {
        grid-template-columns: 1fr;
    }
}
