/* =========================================
   DOG BITE REDESIGN (Auto Accidents Style Match)
   ========================================= */

.dog-bite-redesign-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Matching Auto Accidents */
    color: var(--text, #334155);
    padding-bottom: 60px;
}

/* --- COLORS --- */
:root {
    --clark-primary: #111111;
    --clark-accent: #c5a059;
    --clark-text: #334155;
    --clark-bg-light: #f8fafc;
}

/* --- INTRO --- */
.db-intro-text {
    margin-bottom: 50px;
}

.db-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--clark-text);
}

.highlight-gold {
    color: var(--clark-accent);
    font-weight: 700;
}

.db-featured-image-container {
    width: 100%;
}

.db-featured-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- SECTIONS --- */
.db-section-block {
    margin: 60px 0;
}

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

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

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

.db-arrow-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    color: var(--clark-accent);
}

.db-arrow-list strong {
    color: var(--clark-primary);
    font-weight: 700;
}

/* --- SIMPLE LIST (For Owner Responsibility) --- */
.db-check-list-simple {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.db-check-list-simple li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--clark-primary);
}

.db-check-list-simple li::before {
    content: "•";
    color: var(--clark-accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    line-height: 1rem;
    top: 0;
}

/* --- IMPACT BOX (New Element) --- */
.db-impact-box {
    background-color: var(--clark-bg-light);
    border-left: 5px solid var(--clark-accent);
    padding: 40px;
    margin: 60px 0;
}

.db-impact-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--clark-primary);
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.db-impact-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.db-impact-content p:last-child {
    margin-bottom: 0;
}

/* --- ADVICE GRID (Matches aa-advice-grid) --- */
.db-advice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.db-advice-col {
    background: var(--clark-bg-light);
    padding: 30px;
    border-top: 4px solid var(--clark-accent);
}

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

.db-advice-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.db-check-list {
    list-style: none;
    padding: 0;
}

.db-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.db-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clark-accent);
    font-weight: bold;
}



/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .db-advice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}