/* =========================================
   AUTO ACCIDENTS STYLES (Refactored)
   ========================================= */

.auto-accident-container {
    max-width: 900px;
    margin: 0 auto;
    /* padding removed to match other pages */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Fallback body font */
    color: var(--text, #334155);
}


/* --- INTRO TEXT --- */
.aa-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text, #334155);
}

.aa-featured-image {
    width: 100%;
    /* max-width removed by user preference */
    height: 400px;
    /* Force specific height */
    object-fit: cover;
    /* Crop image to fit without distortion */
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* --- SECTIONS (Stats / Do's Dont's) --- */
.aa-section-block {
    margin: 60px 0;
}

.aa-subtitle {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: var(--primary, #111111);
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

/* --- ARROW LIST (The "Whistleblowing" style) --- */
.aa-arrow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aa-arrow-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Custom Gold Arrow */
.aa-arrow-list li::before {
    content: "➤";
    /* Arrow character */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    color: var(--accent, #c5a059);
}

.aa-arrow-list strong {
    color: var(--primary, #111111);
    font-weight: 700;
}

/* --- DO / DON'T GRID --- */
.aa-advice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.advice-col {
    background: #f8fafc;
    padding: 30px;
    border-top: 4px solid var(--accent, #c5a059);
}

.advice-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary, #111111);
}

/* Check List (Do's) */
.aa-check-list {
    list-style: none;
    padding: 0;
}

.aa-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.aa-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent, #c5a059);
    /* Gold check */
    font-weight: bold;
}

/* Cross List (Don'ts) */
.aa-cross-list {
    list-style: none;
    padding: 0;
}

.aa-cross-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.aa-cross-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--primary, #111111);
    /* Black cross/dash */
    font-size: 0.9em;
}


/* --- CLOSING --- */
.aa-closing-section {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 20px;
    padding: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nehoray-cta-box {
    margin-top: 30px;
}

.cta-prompt {
    display: block;
    font-size: 1.1rem;
    color: var(--text, #334155);
    margin-bottom: 10px;
    font-style: italic;
}

.cta-number {
    display: block;
    font-size: 2.2rem;
    font-family: serif;
    color: var(--accent, #c5a059);
    font-weight: 700;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .aa-title {
        font-size: 2rem;
    }

    .aa-advice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aa-closing-section {
        padding: 20px;
    }
}