/* Extracted from pages/safety.html */
.safety-page { max-width: 800px; margin: 0 auto; }
.checklist-section { margin: 2rem 0; }
.checklist-section h3 { color: var(--green); margin-bottom: 1rem; font-size: 1.1rem; }
.check-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 0.75rem 0;
}
.check-item h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.check-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}
.check-item .tech-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.7;
}
.geometry-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}
.geometry-box h3 { color: var(--accent); margin-bottom: 1rem; }
.geometry-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.geo-col h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.geo-col.bad h4 { color: var(--red); }
.geo-col.good h4 { color: var(--green); }
.geo-col ul {
    list-style: none;
    padding: 0;
}
.geo-col ul li {
    padding: 0.3rem 0;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}
.geo-col.bad ul li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}
.geo-col.good ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}
.worked-example {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}
.worked-example h3 { color: var(--orange); margin-bottom: 1rem; }
.score-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
}
.score-high { background: rgba(255, 68, 68, 0.15); color: var(--red); }
.score-low { background: rgba(61, 220, 132, 0.15); color: var(--green); }
.score-mid { background: rgba(255, 170, 51, 0.15); color: var(--orange); }
@media (max-width: 768px) {
    .geometry-compare { grid-template-columns: 1fr; }
}
