.blog-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 60px;
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ── Listing grid ── */

.blog-grid {
    display: grid;
    gap: 24px;
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: border-color 0.2s;
}

.blog-card:hover {
    border-color: var(--red);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--red);
    background: rgba(229, 57, 53, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.blog-card__date {
    font-size: 13px;
    color: var(--muted);
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card__title a {
    color: #fff;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--red);
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
}

.blog-card__link:hover {
    text-decoration: underline;
}

/* ── Article ── */

.blog-breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    color: #fff;
}

.blog-article__header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.blog-article__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.blog-article__meta time {
    font-size: 13px;
    color: var(--muted);
}

.blog-article__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Syne', sans-serif;
}

.blog-article__lead {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 660px;
}

.blog-article__body h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 40px 0 14px;
    font-family: 'Syne', sans-serif;
}

.blog-article__body p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.blog-article__body ul,
.blog-article__body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.blog-article__body li {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.blog-article__body a {
    color: var(--red);
}

.blog-article__body strong {
    color: #fff;
    font-weight: 600;
}

.blog-article__cta {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.blog-article__cta h2 {
    margin-top: 0;
}

.blog-article__cta p {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
