/* Shared blog article layout */
.blog-article {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(116px, 12vw, 148px) clamp(20px, 4vw, 32px) clamp(72px, 8vw, 96px);
    font-family: 'Inter', sans-serif;
}

.blog-header {
    margin-bottom: clamp(32px, 5vw, 48px);
    text-align: center;
}

.blog-category {
    display: block;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-header h1 {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-primary);
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.blog-hero-image {
    width: 100%;
    height: clamp(240px, 40vw, 430px);
    margin-bottom: clamp(36px, 5vw, 52px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.8;
}

.blog-body p {
    margin: 0 0 28px;
}

.blog-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .blog-header {
        text-align: left;
    }
}
