/* ===== ARTICLE PAGE ===== */

    .article-hero {
      padding: 140px 0 0;
      position: relative;
      overflow: hidden;
    }
    .article-hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 30%, rgba(201,169,110,0.06) 0%, transparent 70%);
    }
    .article-header {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 24px 48px;
      position: relative;
    }
    .article-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }
    .article-breadcrumb a { color: var(--gold); }
    .article-breadcrumb a:hover { text-decoration: underline; }
    .article-cat {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .article-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .article-title em { font-style: italic; color: var(--gold); }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 13px;
      color: var(--text-muted);
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border-subtle);
      flex-wrap: wrap;
    }
    .article-meta-item { display: flex; align-items: center; gap: 6px; }
    .article-meta-item svg { color: var(--gold); }

    .article-featured-img {
      max-width: 960px;
      margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 16/7;
    }
    .article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
    .article-featured-img .img-placeholder { min-height: 100%; }

    /* ARTICLE BODY */
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 80px;
      max-width: 1080px;
      margin: 0 auto;
      padding: 60px 24px 100px;
      align-items: start;
    }

    .article-content h2 {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 400;
      margin: 48px 0 16px;
      color: var(--white);
    }
    .article-content h2:first-child { margin-top: 0; }
    .article-content h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 400;
      margin: 32px 0 12px;
      color: var(--gold);
    }
    .article-content p {
      font-size: 16px;
      line-height: 1.85;
      color: var(--text-light);
      margin-bottom: 20px;
    }
    .article-content strong { color: var(--white); font-weight: 500; }
    .article-content ul, .article-content ol {
      margin: 20px 0;
      padding-left: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .article-content ul { list-style: disc; }
    .article-content ol { list-style: decimal; }
    .article-content li { font-size: 15px; color: var(--text-light); line-height: 1.7; }
    .article-content li::marker { color: var(--gold); }
    .article-content a { color: var(--gold); text-decoration: underline; }
    .article-content a:hover { color: var(--gold-light); }
    .article-content blockquote {
      border-left: 3px solid var(--gold);
      padding: 20px 24px;
      margin: 32px 0;
      background: rgba(201,169,110,0.05);
      border-radius: 0 var(--radius) var(--radius) 0;
    }
    .article-content blockquote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--gold-light); margin: 0; }

    .article-tip {
      background: var(--off-black);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      margin: 32px 0;
      display: flex;
      gap: 16px;
    }
    .article-tip-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .article-tip-content { flex: 1; }
    .article-tip-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .article-tip-text { font-size: 14px; color: var(--text-light); line-height: 1.7; }

    .article-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(201,169,110,0.1);
      border: 1px solid var(--border);
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 12px;
    }

    /* SIDEBAR */
    .article-sidebar {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .sidebar-widget {
      background: var(--off-black);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .sidebar-widget-title {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .toc-list { display: flex; flex-direction: column; gap: 10px; }
    .toc-link {
      font-size: 13px;
      color: var(--text-muted);
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toc-link:hover { color: var(--gold); }
    .toc-link::before { content: ''; width: 16px; height: 1px; background: var(--border); flex-shrink: 0; }

    .related-posts { display: flex; flex-direction: column; gap: 16px; }
    .related-post {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .related-post:last-child { border-bottom: none; padding-bottom: 0; }
    .related-post-cat { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .related-post-title { font-size: 13px; color: var(--text-light); line-height: 1.5; transition: color var(--transition); }
    .related-post:hover .related-post-title { color: var(--gold); }

    /* ARTICLE FOOTER */
    
    .article-author { background: rgba(201,169,110,0.06); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 28px; margin: 44px 0 0; }
    .article-author-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .article-author p { margin-bottom: 10px; font-size: 14px; color: var(--text-light); line-height: 1.7; }
    .article-author p:last-child { margin-bottom: 0; }
    .article-footer-cta {
      background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px;
      text-align: center;
      margin-top: 48px;
    }
    .article-footer-cta h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; margin-bottom: 12px; }
    .article-footer-cta h3 em { font-style: italic; color: var(--gold); }
    .article-footer-cta p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
    .article-footer-cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .article-layout { grid-template-columns: 1fr; gap: 40px; }
      .article-sidebar { position: static; }
    }
    @media (max-width: 768px) {
      .article-hero { padding-top: 110px; }
      .article-title { font-size: 2rem; }
    }
