/* ── 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; }
    .section { padding: 96px 0; }
    .section-title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 16px; letter-spacing: -0.02em; }
    .section-sub { text-align: center; max-width: 640px; margin: 0 auto 56px; color: #4b5563; font-size: 1.125rem; }
    .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%); }
    .btn-outline { border: 2px solid #1e5a6e; color: #1e5a6e; background: transparent; }
    .btn-outline:hover { background: #1e5a6e; color: #fff; }

    /* ── 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; }

    /* ── Blog Hero ───────────────────────────────────── */
    .blog-hero {
      background: linear-gradient(135deg, #b19a5c 0%, #d3c495 40%, #b19a5c 100%);
      color: #fff;
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .blog-hero::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-hero .container { position: relative; z-index: 1; }
    .blog-hero h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
    .blog-hero p { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

    /* ── Blog Grid ───────────────────────────────────── */
    .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .blog-card {
      border-radius: 16px; background: #fff;
      border: 1px solid #e5e7eb; transition: all 0.25s;
      overflow: hidden;
    }
    .blog-card:hover { border-color: #c7d2fe; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(79,70,229,0.08); }
    .blog-card-body { padding: 32px; }
    .blog-card-meta { font-size: 0.8125rem; color: #9ca3af; margin-bottom: 12px; }
    .blog-card-tag {
      display: inline-block;
	    padding: 4px 14px;
	    border-radius: 100px;
	    font-size: 0.8125rem;
	    font-weight: 600;
	    background-color: #c3ae73;
	    color: #fff;
	    margin-right: 12px;
    }
    .blog-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
    .blog-card h2 a { transition: color 0.15s; }
    .blog-card h2 a:hover { color: #1e5a6e; }
    .blog-card p { color: #4b5563; font-size: 0.9375rem; margin-bottom: 16px; }
    .blog-card .read-more { font-size: 0.9375rem; font-weight: 600; color: #1e5a6e; transition: color 0.15s; }
    .blog-card .read-more:hover { color: #1c89ad; }
	
	.underline { text-decoration: underline; }
	
    .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;
    }
    .field-tag {
	    
	}
    /* ── 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) {
      .blog-hero h1 { font-size: 2rem; }
      .blog-hero { padding: 64px 0 48px; }
      .section { padding: 64px 0; }
      .blog-grid { grid-template-columns: 1fr; }
      .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; }
    }