/* Article page design (from article-page.css reference), scoped to .hx-article */
.hx-article {
      --bg-primary: #FAFAF8;
      --bg-dark: #21242c;
      --bg-card: #ffffff;
      --bg-muted: rgba(0,0,0,0.05);
      --text-primary: #1a1a1a;
      --text-secondary: rgba(0,0,0,0.55);
      --text-light: rgba(255,255,255,0.6);
      --accent: #8B5CF6;
      --accent-light: rgba(139,92,246,0.1);
      --border: rgba(0,0,0,0.08);
      --border-light: rgba(255,255,255,0.1);
      --container-wide: 1280px;
      --container-narrow: 768px;
      --nav-height: 72px;
    }.hx-article .container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }.hx-article .container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }.hx-article .section-padding { padding: 80px 0; }.hx-article .hero {
      background-color: var(--bg-dark);
      padding: calc(var(--nav-height) + 48px) 0 48px;
      position: relative; overflow: hidden;
    }.hx-article .hero-breadcrumb {
      display: inline-flex; align-items: center; gap: 6px;
      color: rgba(255,255,255,0.5); font-size: 0.875rem;
      margin-bottom: 32px;
    }.hx-article .hero-breadcrumb svg { width: 16px; height: 16px; }.hx-article .hero-breadcrumb:hover { color: rgba(255,255,255,0.8); }.hx-article .hero-meta {
      display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
      margin-bottom: 20px;
    }.hx-article .hero-badge {
      display: inline-flex; align-items: center;
      padding: 4px 12px; border-radius: 6px;
      background: rgba(139,92,246,0.15); color: #a78bfa;
      border: 1px solid rgba(139,92,246,0.25);
      font-size: 0.75rem; font-weight: 500;
    }.hx-article .hero-meta-item {
      display: flex; align-items: center; gap: 6px;
      color: rgba(255,255,255,0.5); font-size: 0.875rem;
    }.hx-article .hero-meta-item svg { width: 16px; height: 16px; }.hx-article .hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }.hx-article .featured-image-wrap {
      background-color: var(--bg-dark);
      padding-bottom: 0;
    }.hx-article .featured-image {
      border-radius: 16px 16px 0 0;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 2.2 / 1;
      object-fit: cover;
    }.hx-article .article-section {
      background: var(--bg-muted);
      padding: 64px 0;
    }.hx-article .article-body {
      max-width: 640px; margin: 0 auto;
    }.hx-article .article-paragraph {
      font-size: 1.05rem; line-height: 1.8;
      color: rgba(0,0,0,0.75); margin-bottom: 24px;
    }.hx-article .article-paragraph strong {
      font-weight: 600; color: var(--text-primary);
    }.hx-article .article-figure {
      margin: 48px 0;
    }.hx-article .article-figure img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover;
      border-radius: 12px;
    }.hx-article .article-figure figcaption {
      text-align: center; font-size: 0.75rem;
      color: var(--text-secondary); margin-top: 12px; font-style: italic;
    }.hx-article .share-section {
      margin-top: 48px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }.hx-article .share-label {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.875rem; font-weight: 500;
      color: var(--text-secondary); margin-bottom: 16px;
    }.hx-article .share-label svg { width: 16px; height: 16px; }.hx-article .share-buttons {
      display: flex; flex-wrap: wrap; gap: 10px;
    }.hx-article .share-btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 14px; border-radius: 8px;
      border: 1px solid var(--border); background: var(--bg-card);
      font-size: 0.75rem; font-weight: 500;
      color: var(--text-primary);
      transition: all 0.3s; cursor: pointer;
    }.hx-article .share-btn:hover {
      border-color: rgba(139,92,246,0.4); color: var(--accent);
    }.hx-article .share-btn svg { width: 14px; height: 14px; }.hx-article .suggested-section {
      background-color: var(--bg-dark);
      padding: 64px 0;
    }.hx-article .suggested-title {
      font-size: 1.5rem; font-weight: 700;
      color: #fff; margin-bottom: 32px;
    }.hx-article .suggested-title span { color: var(--accent); }.hx-article .suggested-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    }.hx-article .suggested-card {
      display: block; border-radius: 16px; overflow: hidden;
      border: 1px solid var(--border-light);
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(4px);
      transition: all 0.5s;
    }.hx-article .suggested-card:hover {
      border-color: rgba(139,92,246,0.4);
    }.hx-article .suggested-card-img {
      width: 100%; aspect-ratio: 16/10; overflow: hidden;
    }.hx-article .suggested-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s;
    }.hx-article .suggested-card:hover .suggested-card-img img { transform: scale(1.05); }.hx-article .suggested-card-body { padding: 20px; }.hx-article .suggested-card-badge {
      display: inline-block;
      padding: 2px 8px; border-radius: 4px;
      background: rgba(139,92,246,0.15); color: #a78bfa;
      border: 1px solid rgba(139,92,246,0.25);
      font-size: 0.7rem; font-weight: 500; margin-bottom: 8px;
    }.hx-article .suggested-card-title {
      font-size: 1rem; font-weight: 700; color: #fff;
      line-height: 1.4; margin-bottom: 8px;
      transition: color 0.3s;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }.hx-article .suggested-card:hover .suggested-card-title { color: var(--accent); }.hx-article .suggested-card-meta {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.75rem; color: rgba(255,255,255,0.5);
    }.hx-article .suggested-card-meta span {
      display: flex; align-items: center; gap: 4px;
    }.hx-article .suggested-card-meta svg { width: 14px; height: 14px; }

    
@media (max-width: 1023px) {.hx-article .suggested-grid { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {.hx-article .hero-title { font-size: 2rem; }.hx-article .section-padding, .hx-article .article-section, .hx-article .suggested-section { padding: 48px 0; }.hx-article .container-wide, .hx-article .container-narrow { padding: 0 16px; }
}

/* Gutenberg content inside the article body inherits the reference styles */
.hx-article .article-body > p {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(0,0,0,0.75); margin-bottom: 24px;
}
.hx-article .article-body p strong { font-weight: 600; color: var(--text-primary); }
.hx-article .article-body h2, .hx-article .article-body h3 {
  color: var(--text-primary); line-height: 1.25; margin: 40px 0 16px; font-weight: 700;
}
.hx-article .article-body h2 { font-size: 1.5rem; }
.hx-article .article-body h3 { font-size: 1.2rem; }
.hx-article .article-body ul, .hx-article .article-body ol {
  margin: 0 0 24px 1.25rem; color: rgba(0,0,0,0.75); font-size: 1.05rem; line-height: 1.8;
}
.hx-article .article-body ul { list-style: disc; }
.hx-article .article-body ol { list-style: decimal; }
.hx-article .article-body a { color: var(--accent); text-decoration: underline; }
.hx-article .article-body blockquote {
  border-left: 3px solid var(--accent); padding-left: 20px; margin: 32px 0;
  color: rgba(0,0,0,0.65); font-style: italic;
}
.hx-article .article-body figure,
.hx-article .article-body .wp-block-image { margin: 48px 0; }
.hx-article .article-body figure img,
.hx-article .article-body .wp-block-image img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px;
}
.hx-article .article-body figcaption {
  text-align: center; font-size: 0.75rem;
  color: var(--text-secondary); margin-top: 12px; font-style: italic;
}
