/* =============================================================================
   YXE Wedding Collective - Blog Article Styles
   Common styles for all blog article pages
   ============================================================================= */

/* Blog article specific styles */
.business-header {
    padding-top: 90px;
}

/* Article content typography and spacing */
article {
    max-width: 900px;
    margin: 0 auto;
}

article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

article p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

article ul,
article ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

article li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

article ul li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}

article ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

article a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

article a:hover {
    color: var(--dark-gray);
}

article strong {
    font-weight: 600;
    color: var(--dark-gray);
}

article em {
    font-style: italic;
}

/* CTA Section - match service pages */
.cta-section {
    padding: 5rem 0;
    background: var(--accent-color);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--light-gray);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    article h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
    
    article h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }
}

