.blog-article {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.article-summary {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-light), rgba(var(--primary-rgb), 0.05));
    border-left: 4px solid var(--primary);
    margin-bottom: 0;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.article-summary .lead {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-body);
    color: var(--text-heading);
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.article-body {
    padding: 2rem;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-section h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-heading);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.content-section h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--text-heading);
    margin: 2rem 0 1rem 0;
}

.content-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-body);
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    font-size: var(--font-size-base);
    line-height: var(--line-height-body);
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.content-section a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb), 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.content-section a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}
