/* ── Reset & Base ────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #113533;
      background: #fff;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }

    /* ── Utilities ───────────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem;
      transition: all 0.2s ease; cursor: pointer; border: none;
    }
    .btn-primary { background: #1e5a6e; color: #fff; }
    .btn-primary:hover { background: #1c89ad; transform: translateY(-1px); box-shadow: 0 4px 14px rgb(70 163 229 / 40%); }

    /* ── Header / Nav ───────────────────────────────── */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    nav {
      display: flex; align-items: center; gap: 8px;
      max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 64px;
    }
    .nav-logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: #1e5a6e; margin-right: auto; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 0.9375rem; font-weight: 500; color: #4b5563; transition: color 0.15s; }
    .nav-links a:hover { color: #1e5a6e; }
    .nav-cta { display: flex; align-items: center; gap: 16px; margin-left: 24px; }
    .nav-cta .signin { font-size: 0.9375rem; font-weight: 500; color: #4b5563; }
    .nav-cta .signin:hover { color: #1e5a6e; }
    .nav-cta .btn { padding: 10px 24px; font-size: 0.9375rem; }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: #1e1b4b; margin: 5px 0; border-radius: 2px; transition: 0.3s; }

    /* ── Article Header ──────────────────────────────── */
    .article-header {
      background: linear-gradient(135deg, #b19a5c 0%, #d3c495 40%, #b19a5c 100%);
      color: #fff;
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .article-header::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 80%, rgba(241, 198, 99, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(246, 197, 92, 0.2) 0%, transparent 50%);
    }

    .blog-bg-art {
      position: fixed;
      top: 0;
      right: -400px;
      width: 525px;
      height: 100vh;
      background-image: url('@/assets/images/mountain-path-1.png');
      /* background-size: cover; */
      background-position: right center;
      opacity: 1;
      pointer-events: none;
      z-index: 0;
    }

    .article-header .container { position: relative; z-index: 1; }
    .article-header h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; max-width: 780px; margin: 0 auto 16px; }
    .article-meta { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
    .article-meta .tag {
      display: inline-block; padding: 4px 14px; border-radius: 100px;
      font-size: 0.8125rem; font-weight: 600; background: rgba(255,255,255,0.2); color: #fff;
      margin-right: 12px;
    }
    .article-meta .series {
      display: block; font-size: 0.875rem; font-weight: 500;
      color: rgba(255,255,255,0.6); margin-top: 12px; font-style: italic;
    }

    /* ── Article Body ────────────────────────────────── */
    .article-wrapper { position: relative; }
    .article-bg-art {
      position: fixed;
      top: 400px;
      right: 400px;
      background-image: url(../images/mountain-path-1.png);
      background-repeat: no-repeat;
      background-position: top right;
      opacity: 0.2;
      pointer-events: none;
    }
    .article-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 64px 24px 96px;
      position: relative; z-index: 1;
    }
    .article-body p {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: #374151;
      margin-bottom: 24px;
    }
    .article-body h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 48px 0 16px;
      letter-spacing: -0.01em;
      color: #afa065;
    }
    .article-body h3 {
      font-size: 1.1875rem;
      font-weight: 700;
      margin: 32px 0 12px;
      color: #afa065;
    }
    .article-body ul, .article-body ol {
      list-style: disc;
      padding-left: 24px;
      margin-bottom: 24px;
    }
    .article-body ol { list-style: decimal; }
    .article-body li {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: #374151;
      margin-bottom: 8px;
    }
    .article-body blockquote {
      border-left: 4px solid #b19a5c;
      padding: 16px 24px;
      margin: 32px 0;
      background: #faf8f3;
      border-radius: 0 8px 8px 0;
    }
    .article-body blockquote p {
      font-style: italic;
      color: #4b5563;
      margin-bottom: 0;
    }
    .article-body strong { color: #113533; }
    .article-body a { color: #1e5a6e; text-decoration: underline; }
    .article-body a:hover { color: #1c89ad; }

    /* ── CTA Banner ──────────────────────────────────── */
    .article-cta {
      background: #f8f7ff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 48px 40px;
      text-align: center;
      margin: 48px 0 0;
    }
    .article-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
    .article-cta p { color: #4b5563; font-size: 1rem; margin-bottom: 24px; }

    /* ── Back Link ───────────────────────────────────── */
    .back-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.9375rem; font-weight: 500; color: #4b5563;
      margin-bottom: 0; transition: color 0.15s;
    }
    .back-link:hover { color: #1e5a6e; }
    
	.underline { text-decoration: underline; }
	
    /* ── Footer ──────────────────────────────────────── */
    footer {
      padding: 48px 0; border-top: 1px solid #e5e7eb; background: #fafafa;
    }
    .footer-inner {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .footer-logo { font-size: 1.125rem; font-weight: 800; color: #1e5a6e; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 0.875rem; color: #6b7280; transition: color 0.15s; }
    .footer-links a:hover { color: #1e5a6e; }
    .footer-copy { font-size: 0.8125rem; color: #9ca3af; }

    /* ── Responsive ──────────────────────────────────── */
    @media (max-width: 768px) {
      .article-header h1 { font-size: 2rem; }
      .article-header { padding: 64px 0 48px; }
      .article-header::after { width: 200px; height: 160px; right: 2%; opacity: 0.1; }
      .article-bg-art { display: none; }
      .article-body { padding: 48px 24px 64px; }
      .article-body h2 { font-size: 1.3rem; }
      .article-cta { padding: 32px 24px; }
      .nav-links, .nav-cta { display: none; }
      .nav-links.open, .nav-cta.open {
        display: flex; flex-direction: column; position: absolute;
        top: 64px; left: 0; right: 0; background: #fff; padding: 24px;
        border-bottom: 1px solid #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .nav-cta.open { top: auto; padding-top: 0; box-shadow: none; border-bottom: none; }
      .nav-toggle { display: block; }
      .footer-inner { flex-direction: column; text-align: center; }
    }