/* Spring Safety Specific Styles */

.safety-hero {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.safety-alert {
    background: #fee2e2;
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.safety-alert h3 {
    color: #dc2626;
    margin-bottom: 16px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.safety-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.danger-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.danger-high {
    background: #fee2e2;
    color: #dc2626;
}

.danger-medium {
    background: #fef3c7;
    color: #d97706;
}

.danger-low {
    background: #dcfce7;
    color: #16a34a;
}

.safety-checklist {
    list-style: none;
    padding: 0;
}

.safety-checklist li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.safety-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.temperature-warning {
    background: #fef3c7;
    border-left: 4px solid #d97706;
    padding: 16px 20px;
    margin: 24px 0;
}

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