/* Dog Groomer Locator — Custom Styles */

:root {
    --color-primary: #7c3aed;   /* violet-600 */
    --color-secondary: #6d28d9; /* violet-700 */
}

/* Ad container minimum height */
.ad-container {
    min-height: 90px;
}

/* Blog post content typography */
.prose-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.75rem; color: #111827; }
.prose-content h3 { font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: #111827; }
.prose-content p { margin-bottom: 1.25rem; color: #374151; line-height: 1.8; }
.prose-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; color: #374151; }
.prose-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; color: #374151; }
.prose-content li { margin-bottom: 0.4rem; line-height: 1.75; }
.prose-content strong { font-weight: 700; color: #111827; }
.prose-content a { color: #7c3aed; text-decoration: underline; }
.prose-content a:hover { color: #6d28d9; }
.prose-content blockquote { border-left: 4px solid #7c3aed; padding-left: 1rem; margin: 1.5rem 0; color: #6b7280; font-style: italic; }
.prose-content hr { border-color: #e5e7eb; margin: 2rem 0; }

/* Blog product comparison charts */
.blog-chart-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    margin: 1.5rem 0 0.5rem;
}
.blog-chart-caption {
    font-size: 0.78rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}
.affiliate-disclosure {
    background: #f5f3ff;
    border-left: 4px solid #7c3aed;
    padding: 0.75rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.8rem;
    color: #6d28d9;
    margin-bottom: 1.5rem;
}

/* Smooth card hover */
.listing-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
