
.byline {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.article-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #002B5C;
    margin: 2.5rem 0 1rem 0;
    border-left: 4px solid #A63829;
    padding-left: 1rem;
}

.article-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.warning-box {
    background: linear-gradient(135deg, #A63829, #8b2e20);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}

.prep-steps {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.prep-steps h4 {
    font-family: 'Oswald', sans-serif;
    color: #002B5C;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-list li:before {
    content: "•";
    color: #A63829;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.final-word {
    background: #002B5C;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.final-word h3 {
    color: white !important;
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.foundational-eight {
    background: #6B7A4E;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.foundational-eight h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
}

.foundational-eight ol {
    list-style: inside;
    margin: 0;
    padding: 0;
    counter-reset: foundation-counter;
}

.foundational-eight ol li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    list-style: none;
    position: relative;
    counter-increment: foundation-counter;
}

.foundational-eight ol li:before {
    content: counter(foundation-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #D6C6A8;
    color: #4A4A4A;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.disaster-types {
    background: #8798A3;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.disaster-types h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

.disaster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.disaster-category {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.disaster-category h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #D6C6A8;
}

.disaster-category ul {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.disaster-category li {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.disaster-category .characteristics {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #D6C6A8;
}

.bug-in-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.bug-in-section h4 {
    font-family: 'Oswald', sans-serif;
    color: #002B5C;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mag-section {
    background: #A63829;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.mag-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
}

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