.blog-hero { text-align: center; padding: 40px 0 48px; }
.blog-hero h1 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 800; text-transform: uppercase; letter-spacing: -.03em; margin: 0 0 18px; }
.blog-hero p { color: #a8a8a8; font-size: 16px; line-height: 1.7; max-width: 680px; margin: 0 auto; }

.featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; background: #fff; color: #1a1a1a; border-radius: 28px; padding: 20px; margin-bottom: 60px; }
.featured-image { aspect-ratio: 16/10; border-radius: 20px; background: #222 center/cover no-repeat; }
.featured-body { padding: 10px 20px; }
.featured-body h2 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 800; margin: 0 0 12px; color: #1a1a1a; }
.featured-body p { color: #555; line-height: 1.7; margin: 0 0 22px; }

.blog-section-title { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; margin: 0 0 28px; }

.posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-bottom: 40px; }
.post-card { background: #fff; color: #1a1a1a; border-radius: 22px; padding: 16px; display: flex; flex-direction: column; }
.post-image { aspect-ratio: 16/10; border-radius: 16px; background: #222 center/cover no-repeat; margin-bottom: 16px; }
.post-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 8px; color: #1a1a1a; }
.post-card p { color: #555; font-size: 14px; line-height: 1.6; margin: 0 0 16px; flex: 1; }

.pagination { display: flex; justify-content: center; gap: 10px; margin: 30px 0 60px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); color: #ddd; font-weight: 600; }
.pagination a.active { background: var(--primary); border-color: var(--primary); color: #fff; }

@media (max-width: 960px) {
    .featured { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .posts-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-hero { padding: 26px 0 32px; }
    .blog-hero h1 { font-size: clamp(28px, 9vw, 44px); }
    .blog-hero p { font-size: 14px; }
    .featured { padding: 14px; gap: 18px; margin-bottom: 36px; }
    .featured-body { padding: 4px 8px 8px; }
    .featured-body h2 { font-size: 22px; }
    .featured-body p { font-size: 14px; }
    .blog-section-title { font-size: 22px; margin-bottom: 18px; }
    .post-card { padding: 12px; }
    .post-card h3 { font-size: 18px; }
    .post-card p { font-size: 13px; }
}
