.elementor-7642 .elementor-element.elementor-element-5fb0a9c{--display:flex;overflow:visible;}.elementor-7642 .elementor-element.elementor-element-108c48a .elementor-button{background-color:#FF0000;font-weight:800;}/* Start custom CSS for text-editor, class: .elementor-element-ba850d8 *//* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

/* Main Container */
.wc-emergency-article {
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8; /* Increased for better readability on long text */
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border-radius: 8px;
    border-top: 6px solid #c62828; /* Top Red Line */
}

/* Alert Header */
.wc-alert-header {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
    padding: 12px 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.pulse-icon {
    animation: pulse 1.5s infinite;
    font-size: 1.2rem;
}

/* Typography */
.wc-emergency-article h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #111;
}

.wc-meta {
    font-size: 0.95rem;
    color: #757575;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

/* The Hook Paragraph */
.wc-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #212121;
    border-left: 6px solid #d32f2f;
    padding: 15px 25px;
    margin-bottom: 40px !important;
    background: #fcfcfc;
}

/* H2 Subheadings */
.wc-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eeeeee;
    padding-bottom: 15px;
}

/* Warning Box */
.wc-warning-box {
    background-color: #fff8e1; /* Light Yellow */
    border-left: 6px solid #ffb300; /* Dark Yellow */
    padding: 25px;
    margin: 30px 0;
    color: #5d4037;
    font-size: 1.05rem;
    border-radius: 0 6px 6px 0;
}

/* Status Table */
.wc-status-table {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.status-row {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    transition: background 0.2s;
}

.status-row:last-child { border-bottom: none; }
.status-row:hover { background: #fbfbfb; }

.status-col.icon {
    font-size: 1.8rem;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.status-col.desc strong {
    display: block;
    color: #c62828;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Steps */
.step-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.step-number {
    background-color: #c62828;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #c62828;
}

/* FAQ Section */
.wc-faq {
    background: #f1f8e9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}
.wc-faq h3 {
    color: #33691e;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Conclusion & CTA */
.wc-conclusion-box {
    background: #212121;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
    border-top: 6px solid #d32f2f;
}

.wc-conclusion-box h2 {
    color: #fff !important;
    border-bottom: none !important;
    margin-top: 0 !important;
    font-size: 2rem !important;
}

.wc-btn-link {
    display: inline-block;
    background-color: #d32f2f;
    color: #fff !important;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.5);
    margin-top: 20px;
}

.wc-btn-link:hover {
    background-color: #b71c1c;
    transform: translateY(-3px);
}

/* Animation */
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

/* Mobile */
@media (max-width: 768px) {
    .wc-emergency-article h1 { font-size: 1.8rem; }
    .status-row { flex-direction: column; text-align: left; align-items: flex-start; }
    .status-col.icon { margin-bottom: 10px; text-align: left; }
}/* End custom CSS */