/* Blog shared styles — requires themes/1-gold-onyx.css loaded before this */

body.blog-page { background: var(--bg); font-family: var(--sans); min-height: 100vh; }

/* ── Nav ── */
.blog-nav {
  background: rgba(14,11,10,.97);
  border-bottom: 1px solid rgba(201,169,97,.18);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.blog-logo {
  font-family: var(--serif-display);
  font-size: 1rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.blog-logo em { color: var(--accent); font-style: normal; }
.blog-nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.blog-nav-links a { color: rgba(245,237,226,.5); font-size: .8rem; text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.blog-nav-links a:hover { color: var(--accent); }
.blog-nav-cta {
  background: var(--accent) !important;
  color: #0e0b0a !important;
  padding: 8px 18px !important;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .06em !important;
  border-radius: 2px;
}
.blog-nav-cta:hover { opacity: .88; }

/* ── Article wrapper ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .76rem;
  color: rgba(245,237,226,.4);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(245,237,226,.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }

.article-eyebrow {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.article-h1 {
  font-family: var(--serif-display);
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 18px;
}

.article-meta {
  font-size: .77rem;
  color: rgba(245,237,226,.4);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,169,97,.15);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.article-lead {
  font-family: var(--serif-body);
  font-size: 1.18rem;
  line-height: 1.68;
  color: rgba(245,237,226,.85);
  margin-bottom: 28px;
  font-style: italic;
}

.article-body { color: rgba(245,237,226,.78); line-height: 1.82; }
.article-body p { margin-bottom: 1.3em; font-size: .96rem; }
.article-body h2 {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin: 2.2em 0 .7em;
}
.article-body h3 {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin: 1.6em 0 .5em;
  letter-spacing: .04em;
}
.article-body strong { color: var(--cream); }
.article-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(201,169,97,.3); }
.article-body a:hover { border-color: var(--accent); }

/* ── Inline CTA ── */
.article-cta {
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 10px;
  background: rgba(201,169,97,.06);
  padding: 32px;
  text-align: center;
  margin: 44px 0;
}
.article-cta h3 { font-family: var(--serif-display); font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.article-cta p { font-size: .87rem; color: rgba(245,237,226,.55); margin-bottom: 20px; line-height: 1.6; }
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #0e0b0a;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .07em;
  padding: 13px 30px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-accent:hover { opacity: .86; }

/* ── Profile link list ── */
.profile-links { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.profile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(245,237,226,.04);
  border: 1px solid rgba(201,169,97,.18);
  border-radius: 8px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--cream);
  transition: border-color .22s, background .22s;
}
.profile-link:hover { border-color: var(--accent); background: rgba(201,169,97,.07); }
.pl-plat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; width: 84px; flex-shrink: 0; }
.pl-handle { font-size: .87rem; color: rgba(245,237,226,.78); }
.pl-arr { margin-left: auto; color: var(--accent); opacity: .7; }

/* ── FAQ ── */
.faq { margin: 48px 0; }
.faq > h2 { font-family: var(--serif-display); font-size: 1.5rem; color: var(--cream); margin-bottom: 24px; }
.faq-item { border-bottom: 1px solid rgba(201,169,97,.12); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: .95rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.faq-a { font-size: .87rem; color: rgba(245,237,226,.6); line-height: 1.72; }
.faq-a a { color: var(--accent); text-decoration: none; }

/* ── Article footer ── */
.article-foot {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,169,97,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
  color: rgba(245,237,226,.4);
}
.article-foot a { color: var(--accent); text-decoration: none; }

/* ── Blog index ── */
.blog-index-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 24px 80px; }
.blog-index-head { text-align: center; margin-bottom: 52px; }
.blog-index-head .eyebrow { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 14px; }
.blog-index-head h1 { font-family: var(--serif-display); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--cream); margin-bottom: 12px; }
.blog-index-head p { color: rgba(245,237,226,.5); font-size: .95rem; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.post-card {
  background: rgba(245,237,226,.04);
  border: 1px solid rgba(201,169,97,.18);
  border-radius: 10px;
  padding: 26px;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .22s, transform .22s;
}
.post-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.pc-lang { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.pc-title { font-family: var(--serif-display); font-size: 1.18rem; line-height: 1.3; }
.pc-desc { font-size: .83rem; color: rgba(245,237,226,.55); line-height: 1.6; flex: 1; }
.pc-read { margin-top: 12px; font-size: .78rem; color: var(--accent); }

/* ── Site footer ── */
.blog-site-footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(201,169,97,.12);
  text-align: center;
  padding: 40px 24px;
  color: rgba(245,237,226,.4);
  font-size: .8rem;
}
.blog-site-footer .foot-brand { font-family: var(--serif-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; letter-spacing: .1em; }
.blog-site-footer .foot-brand em { color: var(--accent); font-style: normal; }
.blog-site-footer .foot-links { margin-top: 12px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.blog-site-footer .foot-links a { color: rgba(245,237,226,.4); text-decoration: none; font-size: .78rem; }
.blog-site-footer .foot-links a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .article-wrap, .blog-index-wrap { padding: 36px 18px 60px; }
  .blog-nav { padding: 0 18px; }
  .blog-nav-links { display: none; }
  .article-cta { padding: 24px 18px; }
}
