/* AlixirNova — Article Page Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--peacock-dk); color: var(--white); font-family: var(--font-ui); }

.art-page-nav {
  background: var(--obsidian);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.art-page-nav__inner {
  max-width: 860px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.art-page-nav__logo img { height: 40px; width: auto; }
.art-page-nav__back {
  font-size: 0.85rem; color: #8fa8b8; text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s;
}
.art-page-nav__back:hover { color: #d4af37; }

.art-page-hero {
  width: 100%; height: 420px; position: relative; overflow: hidden;
  background: #0a2535;
}
.art-page-hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.75);
}
.art-page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,20,35,0.95) 0%, rgba(5,20,35,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.art-page-hero__cat {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #d4af37; margin-bottom: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.art-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fff; line-height: 1.25; max-width: 760px;
}
.art-page-hero__meta {
  margin-top: 1rem; display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.art-page-hero__meta i { color: #d4af37; margin-right: 0.3rem; }

.art-page-body {
  max-width: 860px; margin: 0 auto; padding: 3rem 2rem 5rem;
}
.art-page-body p {
  font-size: 1rem; line-height: 1.85; color: #8fa8b8; margin-bottom: 1.5rem;
}
.art-page-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: #fff; margin: 2.5rem 0 1rem; line-height: 1.3;
}
.art-page-body h3 {
  font-size: 1.05rem; color: #d4af37; margin: 2rem 0 0.75rem;
  font-weight: 600; letter-spacing: 0.02em;
}
.art-page-body ul, .art-page-body ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem; color: #8fa8b8;
}
.art-page-body li { font-size: 1rem; line-height: 1.8; margin-bottom: 0.4rem; }
.art-page-body strong { color: #c8dae6; }
.art-page-body .highlight-box {
  border-left: 3px solid #d4af37;
  background: rgba(212,175,55,0.06);
  padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}
.art-page-body .highlight-box p { margin-bottom: 0; color: #b8cfdc; }
.art-page-body .key-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2rem 0;
}
.art-page-body .stat-box {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}
.art-page-body .stat-box .num {
  font-family: var(--font-display);
  font-size: 1.8rem; color: #d4af37; display: block; margin-bottom: 0.3rem;
}
.art-page-body .stat-box .lbl {
  font-size: 0.8rem; color: #8fa8b8; text-transform: uppercase; letter-spacing: 0.08em;
}
.art-page-body hr {
  border: none; border-top: 1px solid rgba(212,175,55,0.15); margin: 2.5rem 0;
}

/* Related Articles */
.related-articles {
  margin: 2.5rem 0;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.related-articles__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4af37;
  margin-bottom: 1.25rem;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.related-articles__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.related-articles__card:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.05);
}
.related-articles__cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
}
.related-articles__headline {
  font-size: 0.88rem;
  color: #c8dae6;
  line-height: 1.4;
  font-weight: 500;
}
.related-articles__arrow {
  font-size: 0.72rem;
  color: #6a8090;
  margin-top: 0.5rem;
}
.related-articles__card:hover .related-articles__arrow { color: #d4af37; }
@media (max-width: 600px) {
  .related-articles__grid { grid-template-columns: 1fr; }
}

/* Quick Facts box */
.quick-facts {
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.05);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.quick-facts h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}
.quick-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-facts ul li {
  font-size: 0.95rem;
  color: #8fa8b8;
  line-height: 1.7;
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
}
.quick-facts ul li::before {
  content: '—';
  color: #d4af37;
  position: absolute;
  left: 0;
}

.art-page-cta {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, transparent 70%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px; padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.art-page-cta h3 {
  font-family: 'Alike', Georgia, serif;
  font-size: 1.5rem; color: #fff; margin-bottom: 0.6rem;
}
.art-page-cta p { color: #8fa8b8; font-size: 0.95rem; margin-bottom: 1.5rem; }
.art-page-cta .btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #d4af37; color: #0a1a28; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 6px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.art-page-cta .btn-wa:hover { background: #e8c84a; transform: translateY(-2px); }

.art-page-footer {
  background: var(--obsidian); padding: 1.75rem 0; text-align: center;
  border-top: 1px solid rgba(212,175,55,0.1);
  font-size: 0.85rem; color: #4a6070;
}
.art-page-footer a { color: #6a8090; text-decoration: none; margin: 0 0.75rem; transition: color 0.2s; }
.art-page-footer a:hover { color: #d4af37; }

@media (max-width: 600px) {
  .art-page-hero { height: 280px; }
  .art-page-hero__overlay { padding: 1.5rem; }
  .art-page-body .key-stats { grid-template-columns: 1fr; }
  .art-page-body { padding: 2rem 1.25rem 4rem; }
}
