@charset "UTF-8";

    body { font-family: 'Syne', sans-serif; background: #faf9f6; }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    .tab-btn.active {
      background: #0f1117;
      color: #fff;
      border-color: #0f1117;
    }

    .service-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: #1a7a4a;
      border-radius: 3px 0 0 3px;
      transform: scaleY(0);
      transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
      transform-origin: bottom;
    }
    .service-card:hover::before { transform: scaleY(1); }
    .service-card:hover { box-shadow: 0 8px 32px rgba(15,17,23,0.09); transform: translateY(-2px); }
    .service-card { transition: box-shadow 0.25s, transform 0.25s; }

    .risk-bar { transition: width 1.2s cubic-bezier(0.22,1,0.36,1); }

#main-nav{will-change:padding,background-color,box-shadow}
#main-nav.scrolled{
    padding-top:.25rem!important;
    padding-bottom:.25rem!important;
    background-color:rgba(255,255,255,.98);
    box-shadow:0 4px 6px -1px rgb(0 0 0/.05),0 2px 4px -2px rgb(0 0 0/.05);
    border-color:rgba(243,244,246,.7)
}
#main-nav.scrolled img{
    transform:scale(.92);
    transition:transform .3s ease-out
}

    .nav-link { position: relative; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 12px;
      right: 12px;
      height: 2px;
      background: #10b981;
      border-radius: 1px;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.2s ease;
    }
    .nav-link:hover::after,
    .nav-link.active::after { transform: scaleX(1); }
    .nav-link.active { color: #059669 !important; }
    .nav-link:hover  { color: #059669; font-weight:800; }
  
  .post-card { transition: box-shadow 0.25s ease, transform 0.25s ease; }
  .post-card:hover { box-shadow: 0 12px 40px rgba(15,17,23,0.10); transform: translateY(-3px); }
  .post-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #1a7a4a;
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
  }
  .post-card:hover::before { transform: scaleY(1); }
  .search-input:focus { outline: none; border-color: #1a7a4a; box-shadow: 0 0 0 3px rgba(26,122,74,0.12); }
  .pagination { display: flex; gap: 6px; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
  .pagination .page-item .page-link {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: 8px; font-size: 13px; font-weight: 500;
    border: 1px solid #e7e5e4; color: #3d4049; background: #fff;
    text-decoration: none; transition: all 0.15s ease;
  }
  .pagination .page-item .page-link:hover { border-color: #1a7a4a; color: #1a7a4a; background: #e8f5ee; }
  .pagination .page-item.active .page-link { background: #1a7a4a; border-color: #1a7a4a; color: #fff; }
  .pagination .page-item.disabled .page-link { opacity: 0.4; pointer-events: none; }
  

.post-body {
  color: #1d1d1d;
  font-size: 1rem;
  line-height: 1.55;
  word-break: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
}

.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  line-height: 1.2;
  margin-top: 2.25em;
  margin-bottom: 0.65em;
  font-weight: 900;
}

.post-body h2 { font-size: 1.6rem; }
.post-body h3 { font-size: 1.3rem; }
.post-body h4 { font-size: 1.1rem;}
.post-body h5 { font-size: 1rem; }

.post-body h2 {
  padding-left: 1rem;
  border-left: 4px solid #10b981;
}

.post-body > h1:first-child,
.post-body > h2:first-child,
.post-body > h3:first-child {
  margin-top: 0;
}

.post-body p {
  margin-top: 0;
  margin-bottom: 1.2em;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-body a {
  color: #059669;
  text-decoration: underline;
  text-decoration-color: #a7f3d0;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.post-body a:hover {
  color: #047857;
  text-decoration-color: #059669;
}
.post-body a:visited {
  color: #065f46;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.4em 0;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.45em;
}

.post-body li::marker {
  color: #10b981; 
  font-weight:600;
  font-size: 1.4rem;
}

.post-body ul li {
  list-style-type: disc;
}

.post-body ol li {
  list-style-type: decimal;
}

.post-body ul ul,
.post-body ol ol,
.post-body ul ol,
.post-body ol ul {
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}

.post-body blockquote {
  margin: 2em 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #10b981;
  background: #f0fdf4;
  border-radius: 0 12px 12px 0;
  color: #374151;
  font-style: italic;
}

.post-body blockquote p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.post-body blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: #059669;
  letter-spacing: 0.02em;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75em 0;
  font-size: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.post-body thead {
  background: #0f172a;
  color: #fff;
}

.post-body thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a7f3d0;
}

.post-body tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}

.post-body tbody tr:hover {
  background: #f0fdf4;
}

.post-body tbody td {
  padding: 0.85rem 1rem;
  color: #475569;
  vertical-align: top;
}

.post-body tbody tr:last-child {
  border-bottom: none;
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.75em auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.post-body figure {
  margin: 2em 0;
}

.post-body figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  font-style: italic;
}

.post-body strong,
.post-body b {
  font-weight: 800;
}

.post-body em,
.post-body i {
  font-style: italic;
}

@media (max-width: 640px) {
  .post-body h2 { font-size: 1.35rem; }
  .post-body h3 { font-size: 1.15rem; }
  .post-body { font-size: 0.95rem; }

  .post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .post-body blockquote {
    padding: 1rem 1.1rem;
  }
}
