/* target-grid.css - Componente condiviso: griglia target (per chi / non per chi) */

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.target {
    padding: 18px 20px;
    border-radius: var(--radius-md);
}

.target.yes {
    background: var(--green-50);
}

.target.no {
    background: var(--red-50);
}

.target-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.target-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.target-label {
    font-size: 0.8125rem;
    font-weight: 600;
}

.target.yes .target-label {
    color: var(--green-600);
}

.target.no .target-label {
    color: var(--red-500);
}

.target p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .target-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
