.blog-hero { background: linear-gradient(120deg, #fff 0%, #fff 57%, var(--mint) 57%, var(--mint) 100%); }
.blog-index { padding: 76px 0 86px; background: var(--paper); }
.blog-index-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.blog-index-head h2 { margin: 0; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.45; }
.blog-index-head > p { max-width: 420px; margin: 0; color: var(--muted); font-size: 14px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.post-card { position: relative; min-height: 268px; border: 1px solid #d4e1df; border-radius: 12px; background: #fff; overflow: hidden; box-shadow: 0 12px 28px rgba(27,57,54,.06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.post-card::before { content: ''; display: block; width: 100%; height: 5px; background: var(--teal); }
.post-card > a { min-height: calc(268px - 5px); display: flex; flex-direction: column; padding: 23px 24px 25px; }
.post-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 20px 38px rgba(27,57,54,.14); }
.post-card time { display: inline-flex; align-self: flex-start; margin-bottom: 8px; padding: 4px 8px; border-radius: 999px; background: #eef6f5; color: var(--teal); font-size: 12px; font-weight: 700; }
.post-card h3 { margin: 7px 0 0; font-size: 19px; line-height: 1.55; }
.post-card p { margin: 11px 0 0; color: #5c6870; font-size: 13px; line-height: 1.8; }
.post-card b { display: block; margin-top: auto; padding-top: 18px; color: var(--teal); font-size: 13px; }
.post-card i { margin-left: 5px; font-size: 17px; font-style: normal; }
.post-card-featured { grid-column: span 2; min-height: 320px; background: linear-gradient(135deg, #fff 0%, #edf6f5 100%); }
.post-card-featured > a { min-height: calc(320px - 5px); padding: 34px; }
.post-card-featured h3 { max-width: 670px; font-size: 29px; }
.post-card-featured p { max-width: 620px; font-size: 14px; }
.blog-empty { margin: 25px 0 0; padding: 28px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--muted); }
.blog-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.blog-pagination .page-numbers { display: inline-grid; min-width: 38px; min-height: 38px; place-items: center; padding: 0 8px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--teal); font-weight: 700; }
.blog-pagination .current { border-color: var(--teal); background: var(--teal); color: #fff; }
.article-back { margin: 0 0 14px; font-size: 13px; font-weight: 700; }
.article-back a { color: var(--teal); }
.article-page { padding: 78px 0 90px; background: var(--paper); }
.wrap-narrow { width: min(760px, calc(100% - 48px)); margin: 0 auto; }
.article-content { padding: 38px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 16px 34px rgba(27,57,54,.05); }
.article-featured-image { margin: 0 0 30px; }
.article-featured-image img { width: 100%; height: auto; border-radius: 5px; }
.article-body { color: #39464c; font-size: 16px; line-height: 2; }
.article-body > *:first-child { margin-top: 0; }
.article-body h2, .article-body h3 { margin-top: 2.2em; color: var(--ink); line-height: 1.5; }
.article-body a { color: var(--teal); text-decoration: underline; }
.article-body img { max-width: 100%; height: auto; }

@media (max-width: 850px) {
  .blog-index { padding: 54px 0; }
  .blog-index-head { display: block; }
  .blog-index-head > p { margin-top: 10px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card-featured { grid-column: auto; }
  .post-card-featured > a { padding: 24px; }
  .post-card-featured h3 { font-size: 23px; }
  .article-page { padding: 54px 0; }
  .article-content { padding: 24px 18px; }
}
