/* ===== BLOG — light/Figma style ===== */
.blog-hero { display: grid; gap: 16px; max-width: 760px; margin-bottom: 28px; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 24px; border-top: 1px solid var(--line); }
.blog-categories .chip { padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-2); background: #fff; transition: all 0.2s var(--ease); cursor: pointer; }
.blog-categories .chip:hover { border-color: var(--ink); }
.blog-categories .chip.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }

.featured__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.featured__card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 36px -18px rgba(11,16,32,0.18); }
.featured__cover { aspect-ratio: 4 / 3; border-radius: 0; border: 0; border-right: 1px solid var(--line); }
.featured__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 16px; }
.featured__body .small { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; font-weight: 500; }
.featured__body h2 { font-size: clamp(24px, 2.8vw, 36px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; transition: color 0.2s; }
.featured__card:hover h2 { color: var(--blue); }
.featured__body p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.featured__more { color: var(--blue); margin-top: auto; font-size: 13px; font-weight: 600; }

@media (max-width: 880px) {
  .featured__card { grid-template-columns: 1fr; }
  .featured__cover { border-right: 0; border-bottom: 1px solid var(--line); }
}

.posts { background: var(--bg-alt); }
.posts__head { display: grid; gap: 10px; margin-bottom: 36px; }
.posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.posts__grid .post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.posts__grid .post-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.posts__grid .post-card:hover h3 { color: var(--blue); }
.posts__grid .post-card__cover { aspect-ratio: 16 / 10; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
.posts__grid .post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.posts__grid .post-card__body .small { color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }
.posts__grid .post-card h3 { font-size: 18px; line-height: 1.3; letter-spacing: -0.015em; font-weight: 600; transition: color 0.2s; }
.posts__grid .post-card p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.posts__grid .post-card__more { color: var(--blue); font-size: 13px; font-weight: 600; margin-top: auto; }

@media (max-width: 1080px) { .posts__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .posts__grid { grid-template-columns: 1fr; } }

.posts__pager { text-align: center; margin-top: 48px; }

.newsletter__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
}
.newsletter__inner > div { display: grid; gap: 14px; }
.newsletter__inner h2 { color: #fff; font-size: clamp(24px, 2.8vw, 36px); letter-spacing: -0.02em; font-weight: 700; line-height: 1.15; }
.newsletter__inner .lede { color: rgba(255,255,255,0.7); }
.newsletter__form { display: grid; gap: 20px; }
.newsletter__form .field input { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }
.newsletter__form .field input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form .field label { color: rgba(255,255,255,0.85); }
.newsletter__note { color: rgba(255,255,255,0.6); font-size: 13px; }
@media (max-width: 880px) { .newsletter__inner { grid-template-columns: 1fr; gap: 28px; } }
