/* blog.css - tipografia de articulo del blog de Noa Memory. Generado por blog/build.mjs. */
.blog-body { background: var(--bg); color: var(--ink); }
.nav-link-active { color: var(--pink) !important; opacity: 1 !important; font-weight: 700; }

.blog-index, .blog-post { max-width: 760px; margin: 0 auto; padding: 150px 24px 90px; }
.blog-back { display: inline-block; margin: 8px 0 0; font-size: 14px; font-weight: 600; color: var(--muted); }
.blog-back:hover { color: var(--pink); }

/* indice */
.blog-index-head { margin-bottom: 48px; }
.blog-kicker { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--pink); margin-bottom: 14px; }
.blog-index-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 5.2vw, 52px); line-height: 1.06; letter-spacing: -.02em; margin-bottom: 18px; }
.blog-intro { font-size: 18px; line-height: 1.6; color: var(--body); max-width: 640px; }
.post-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.post-card { flex: 0 1 340px; max-width: 360px; display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(40,30,25,.10); }
.post-card-cover { aspect-ratio: 1200 / 630; overflow: hidden; }
.post-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 24px 26px 28px; }
.post-card-serie { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--pink); margin-bottom: 8px; }
.post-card-title { font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 8px; }
.post-card-dek { font-size: 15px; line-height: 1.55; color: var(--body); margin-bottom: 12px; }
.post-card-meta { font-size: 13px; color: var(--muted); }

.blog-upcoming { margin-top: 64px; padding-top: 36px; border-top: 1px solid rgba(40,30,25,.10); }
.blog-upcoming h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin-bottom: 20px; }
.upcoming-list { list-style: none; }
.upcoming-list li { display: flex; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(40,30,25,.06); }
.up-num { font-family: var(--serif); font-weight: 600; color: var(--pink); font-size: 15px; min-width: 26px; }
.up-title { font-size: 16px; color: var(--body); }

/* post */
.blog-post .blog-back { margin-bottom: 26px; }
.post-serie { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--pink); margin-bottom: 16px; }
.post-title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4.8vw, 46px); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 18px; }
.post-dek { font-size: 20px; line-height: 1.5; color: var(--body); margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.post-meta .dot { opacity: .5; }
.post-cover { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-card); }
.post-cover img { width: 100%; height: auto; }
.post-body { font-size: 18px; line-height: 1.75; color: #33333B; }
.post-body p { margin-bottom: 22px; }
.post-body h2 { font-family: var(--serif); font-weight: 500; font-size: 27px; line-height: 1.2; letter-spacing: -.01em; margin: 44px 0 16px; }
.post-body h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 34px 0 12px; }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.post-body ul, .post-body ol { margin: 0 0 22px 22px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote { border-left: 3px solid var(--pink); padding-left: 20px; margin: 0 0 22px; color: var(--body); font-style: italic; }
.post-body em { font-style: italic; }

.post-cta { margin: 52px 0 30px; padding: 32px; background: var(--bg-panel-blush); border-radius: var(--r-lg); text-align: center; }
.post-cta-kicker { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--pink); margin-bottom: 10px; }
.post-cta-text { font-size: 18px; line-height: 1.5; color: var(--ink); margin-bottom: 20px; }
.post-disclaimer { font-size: 13px; line-height: 1.6; color: var(--muted); border-top: 1px solid rgba(40,30,25,.10); padding-top: 22px; }

@media (max-width: 620px) {
  .blog-index, .blog-post { padding: 128px 20px 72px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card-cover { aspect-ratio: 1200/630; }
  .post-card-body { padding: 0 22px 24px; }
  .post-body { font-size: 17px; }
  .post-dek { font-size: 18px; }
}