.blog-detail-page { padding-top: 72px; }
nav.nav .w {
  margin-left: auto !important;
  margin-right: auto !important;
}

nav.nav .nav-links {
  justify-content: flex-start !important;
}
.post-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.post-hero::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.07), transparent 70%);
  pointer-events: none;
}

.post-hero-inner {
  position: relative; z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.post-breadcrumb {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-4);
  margin-bottom: 24px;
}
.post-breadcrumb a { color: var(--text-4); transition: color .2s; }
.post-breadcrumb a:hover { color: var(--indigo-deep); }
.post-breadcrumb-sep { color: var(--border-2); font-size: .6rem; }
.post-breadcrumb-cur { color: var(--indigo-deep); }

.post-cats-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.post-cat-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--indigo-dim); color: var(--indigo-deep);
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.post-tag-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 100px;
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text-3); font-size: .68rem; font-weight: 600;
  transition: all .2s var(--ease);
}
.post-tag-badge:hover {
  background: var(--indigo-pale); border-color: rgba(249,115,22,.3);
  color: var(--indigo-deep);
}

.post-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 20px;
}

.post-excerpt {
  font-size: 1.08rem;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 32px;
  font-style: italic;
  border-left: 3px solid var(--indigo);
  padding-left: 18px;
}

.post-meta-bar {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.post-author {
  display: flex; align-items: center; gap: 12px;
  flex: 1;
}
.post-author-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  border: 2px solid rgba(249,115,22,.2);
  box-shadow: 0 4px 12px rgba(234,88,12,.2);
}
.post-author-info {}
.post-author-name { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.post-author-role { font-size: .72rem; color: var(--text-4); }
.post-meta-items { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .76rem; color: var(--text-3); font-weight: 500;
}
.post-meta-sep { color: var(--border-2); font-size: .6rem; }

.post-share-row { display: flex; align-items: center; gap: 8px; }
.post-share-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-4);
}
.post-share-btn {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .78rem; cursor: pointer;
  transition: all .22s var(--ease); color: var(--text-3);
}
.post-share-btn:hover {
  background: var(--indigo-pale); border-color: rgba(249,115,22,.3);
  color: var(--indigo-deep); transform: translateY(-2px);
}

.post-hero-img-wrap {
  height: auto;
  margin-top: 36px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  max-width: 860px; margin-left: auto; margin-right: auto;
  position: relative;
}
.post-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.post-hero-img-placeholder {
  width: 100%; height: 460px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 40%, #fff7ed 100%);
  position: relative;
}
.post-hero-img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(249,115,22,.1), transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(59,130,246,.1), transparent 50%);
}
.post-hero-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 20px;
  background: linear-gradient(transparent, rgba(10,15,30,.5));
  font-size: .72rem; color: rgba(255,255,255,.8);
  text-align: right;
}

.post-main { background: var(--bg); padding: 0 0 100px; }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 28px 0;
}

.post-article {
  background: #fff;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border: 1.5px solid var(--border);
  border-top: none;
  padding: 48px 52px 52px;
  box-shadow: var(--shadow);
}

.post-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--indigo-deep), var(--indigo), var(--teal));
  transition: width .1s linear;
  width: 0%;
}

.post-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.post-content p { font-size: .97rem; color: var(--text-2); line-height: 1.9; margin-bottom: 18px; }
.post-content strong { font-weight: 700; color: var(--text); }
.post-content em { font-style: italic; color: var(--text-2); }

.post-content a {
  color: var(--indigo-deep); font-weight: 500;
  border-bottom: 1px solid rgba(249,115,22,.3);
  transition: border-color .2s, color .2s;
}
.post-content a:hover { color: var(--indigo); border-bottom-color: var(--indigo); }

.post-content blockquote {
  margin: 28px 0; padding: 20px 24px;
  background: var(--indigo-pale);
  border-left: 4px solid var(--indigo);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.post-content blockquote::before {
  content: '"';
  font-family: var(--font-h); font-size: 4rem; line-height: .8;
  color: rgba(249,115,22,.2);
  position: absolute; top: 8px; left: 16px;
}
.post-content blockquote p {
  font-family: var(--font-h); font-style: italic;
  font-size: 1.05rem; color: var(--indigo-deep);
  line-height: 1.7; margin: 0; padding-left: 28px;
}

.post-content code {
  background: var(--bg-2); color: var(--teal-deep);
  padding: 2px 7px; border-radius: 5px;
  font-size: .88em; font-family: 'Fira Code', 'Courier New', monospace;
  border: 1px solid var(--border);
}
.post-content pre {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 24px 28px; overflow-x: auto;
  margin: 24px 0;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-md); position: relative;
}
.post-content pre::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-deep), var(--indigo));
  border-radius: var(--radius) var(--radius) 0 0;
}
.post-content pre code {
  background: none; color: #e2e8f0; border: none;
  font-size: .85rem; padding: 0; line-height: 1.7;
}

.post-content ul,
.post-content ol { margin: 0 0 18px 24px; }
.post-content li { font-size: .97rem; color: var(--text-2); line-height: 1.85; margin-bottom: 6px; }
.post-content ul li::marker { color: var(--indigo); }
.post-content ol li::marker { color: var(--indigo-deep); font-weight: 700; }

.post-content img {
  width: 100%; border-radius: var(--radius-lg);
  margin: 24px 0; display: block;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.post-callout {
  display: flex; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius); margin: 24px 0;
}
.post-callout-tip  { background: var(--teal-pale);   border: 1px solid var(--border-teal); }
.post-callout-warn { background: var(--rose-pale);   border: 1px solid rgba(245,158,11,.25); }
.post-callout-info { background: var(--indigo-pale); border: 1px solid rgba(249,115,22,.2); }
.post-callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.post-callout-body strong { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.post-callout-body p { font-size: .83rem; color: var(--text-2); line-height: 1.65; margin: 0; }

.post-content hr { border: none; height: 1px; background: var(--border); margin: 36px 0; }

.post-article-footer { margin-top: 52px; padding-top: 32px; border-top: 1.5px solid var(--border); }
.paf-tags-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-4); margin-bottom: 12px;
}
.paf-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.paf-tag {
  padding: 5px 14px; border-radius: 100px;
  background: var(--bg); border: 1.5px solid var(--border);
  font-size: .75rem; font-weight: 500; color: var(--text-3);
  transition: all .2s var(--ease); cursor: pointer;
}
.paf-tag:hover { background: var(--indigo-pale); border-color: rgba(249,115,22,.3); color: var(--indigo-deep); }

.paf-share {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 24px; background: var(--bg);
  border-radius: var(--radius); border: 1.5px solid var(--border); flex-wrap: wrap;
}
.paf-share-txt { font-size: .85rem; font-weight: 600; color: var(--text-2); flex: 1; }
.paf-share-txt span { color: var(--indigo-deep); }
.paf-share-btns { display: flex; gap: 8px; }
.paf-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--border); background: #fff;
  font-family: var(--font-b); font-size: .75rem; font-weight: 600;
  color: var(--text-2); cursor: pointer; transition: all .22s var(--ease);
}
.paf-share-btn:hover { background: var(--indigo-pale); border-color: rgba(249,115,22,.3); color: var(--indigo-deep); }

.post-author-card {
  margin-top: 36px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; gap: 22px; align-items: flex-start;
}
.pac-av {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  border: 3px solid #fff; box-shadow: 0 6px 20px rgba(234,88,12,.22);
}
.pac-body { flex: 1; }
.pac-label {
  font-size: .65rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 4px;
}
.pac-name { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.pac-role { font-size: .76rem; color: var(--text-4); margin-bottom: 10px; }
.pac-bio  { font-size: .83rem; color: var(--text-3); line-height: 1.7; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.pnav-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 20px;
  display: flex; gap: 12px; align-items: center;
  transition: all .25s var(--ease); cursor: pointer; text-decoration: none;
}
.pnav-card:hover { border-color: var(--indigo); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pnav-card.prev { flex-direction: row; }
.pnav-card.next { flex-direction: row-reverse; text-align: right; }
.pnav-arrow {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .25s var(--ease);
}
.pnav-card:hover .pnav-arrow { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.pnav-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-4); margin-bottom: 4px;
}
.pnav-title { font-size: .84rem; font-weight: 600; color: var(--text); line-height: 1.35; transition: color .2s; }
.pnav-card:hover .pnav-title { color: var(--indigo-deep); }

.related-section {
  margin-top: 64px; padding: 0 28px;
  max-width: 1200px; margin-left: auto; margin-right: auto; padding-bottom: 0;
}
.related-label { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.related-label h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 600;
  color: var(--text); white-space: nowrap;
}
.related-line { flex: 1; height: 1px; background: var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rel-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all .35s var(--ease);
  cursor: pointer; display: flex; flex-direction: column;
}
.rel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--indigo); }
.rel-img { height: 180px; overflow: hidden; position: relative; flex-shrink: 0; }
.rel-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); display: block; }
.rel-card:hover .rel-img img { transform: scale(1.06); }
.rel-img-placeholder { width:100%; height:180px; display:flex; align-items:center; justify-content:center; font-size:2.8rem; }
.rel-bar { height: 3px; }
.rel-bar-1 { background: linear-gradient(90deg,var(--teal-deep),var(--teal)); }
.rel-bar-2 { background: linear-gradient(90deg,var(--indigo-deep),var(--indigo)); }
.rel-bar-3 { background: linear-gradient(90deg,#059669,#34d399); }
.rel-body { padding: 18px 20px 22px; flex:1; display:flex; flex-direction:column; }
.rel-cat {
  display:inline-flex; align-items:center;
  padding:3px 9px; border-radius:100px;
  font-size:.62rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  margin-bottom:8px; width:fit-content;
}
.rel-cat-t { background:var(--teal-dim);  color:var(--teal-deep); }
.rel-cat-i { background:var(--indigo-dim); color:var(--indigo-deep); }
.rel-cat-g { background:rgba(5,150,105,.1); color:#065f46; }
.rel-title { font-family:var(--font-h); font-size:.97rem; font-weight:600; color:var(--text); line-height:1.35; margin-bottom:10px; flex:1; }
.rel-meta {
  display:flex; align-items:center; gap:8px; font-size:.72rem; color:var(--text-4);
  padding-top:12px; border-top:1px solid var(--border); margin-top:auto;
}
.rel-av { width:24px; height:24px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:.6rem; font-weight:700; color:#fff; }
.rel-author { font-weight:600; color:var(--text-3); }
.rel-sep { color:var(--border-2); }

/* ── Sidebar ── */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }

/* ── TOC Widget ── */
.toc-widget {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.toc-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; background: var(--bg);
}
.toc-head h4 { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.toc-body { padding: 10px 0; }

.toc-item {
  display: flex; flex-direction: column; align-items: stretch;
  padding: 0; cursor: pointer;
  transition: all .2s var(--ease);
  border-left: 2px solid transparent;
}
.toc-item:hover { background: var(--indigo-pale); border-left-color: var(--indigo); }
.toc-item.active { background: var(--indigo-pale); border-left-color: var(--indigo-deep); }

.toc-main-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; cursor: pointer; width: 100%;
}
.toc-num { font-size: .65rem; font-weight: 700; color: var(--indigo-deep); min-width: 18px; }
.toc-txt { font-size: .8rem; color: var(--text-2); line-height: 1.4; flex: 1; }
.toc-item.active .toc-txt { color: var(--indigo-deep); }

.toc-arrow {
  margin-left: auto; font-size: .55rem;
  color: var(--text-4); flex-shrink: 0;
  transition: transform .2s ease; line-height: 1;
}
.toc-item.open .toc-arrow { transform: rotate(90deg); color: var(--indigo-deep); }

.toc-sub-list { display: none; padding: 0 12px 10px 46px; }
.toc-item.open .toc-sub-list { display: block; }

.toc-sub-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0; font-size: .74rem;
  color: var(--text-3); line-height: 1.4;
}
.toc-sub-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--border-2); flex-shrink: 0;
}

/* ── Progress Widget ── */
.progress-widget {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow);
}
.pw-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-4);
  margin-bottom: 10px; display: flex; justify-content: space-between;
}
.pw-bar-wrap { height: 6px; background: var(--bg-2); border-radius: 100px; overflow: hidden; }
.pw-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--indigo-deep), var(--indigo));
  border-radius: 100px; transition: width .2s linear;
}
.pw-pct { font-size: .78rem; font-weight: 700; color: var(--indigo-deep); }

/* ── Sidebar Widgets ── */
.sw {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.sw-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.sw-head h4 { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.sw-head-icon { font-size: .9rem; }
.sw-body { padding: 14px 18px; }
.sw-post {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all .22s;
}
.sw-post:last-child { border-bottom: none; padding-bottom: 0; }
.sw-post:hover .sw-post-title { color: var(--indigo-deep); }
.sw-post-img {
  width: 56px; height: 52px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg,#e8f0fe,#dbeafe);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; overflow: hidden;
}
.sw-post-img img { width:100%; height:100%; object-fit:cover; border-radius:8px; }
.sw-post-cat { font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 3px; }
.sw-post-title { font-size: .77rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 3px; transition: color .2s; }
.sw-post-date { font-size: .66rem; color: var(--text-4); }

.sw-cta {
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  border-radius: var(--radius-lg); padding: 22px 20px;
  text-align: center; position: relative; overflow: hidden;
}
.sw-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='1' fill='%23ffffff' fill-opacity='0.07'/%3E%3C/svg%3E");
}
.sw-cta-inner { position: relative; z-index: 1; }
.sw-cta-icon  { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.sw-cta h4 { font-family: var(--font-h); font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.sw-cta p { font-size: .74rem; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 14px; }
.sw-cta .btn { background: #fff; color: var(--indigo-deep); width: 100%; justify-content: center; font-size: .78rem; font-weight: 700; padding: 10px 16px; }
.sw-cta .btn:hover { background: var(--indigo-pale); transform: translateY(-1px); }

/* ── Animations ── */
.rv { opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease),transform .7s var(--ease); }
.rv.in { opacity:1; transform:none; }
.d1{transition-delay:.06s}.d2{transition-delay:.12s}.d3{transition-delay:.18s}
.d4{transition-delay:.24s}.d5{transition-delay:.30s}

.post-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.post-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}




.global-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.global-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    word-wrap: break-word;
}

.global-table th {
    text-align: left;
    padding: 14px;
    background: #f8f9fb;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.global-table th:last-child {
    border-right: none;
}

.global-table td {
    padding: 16px 14px;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    white-space: normal;
    word-wrap: break-word;
}

.global-table td:last-child {
    border-right: none;
}

.global-table td:nth-child(1) {
    font-weight: 500;
}

.global-table td ul {
    margin: 0;
    padding-left: 18px;
}

.global-table td ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .global-table th,
    .global-table td {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .global-table thead {
        display: none;
    }

    .global-table,
    .global-table tbody,
    .global-table tr,
    .global-table td {
        display: block;
        width: 100%;
    }

    .global-table tr {
        border: 1px solid #e5e7eb;
        margin-bottom: 12px;
    }

    .global-table td {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 10px 12px;
        text-align: left !important;
    }

    .global-table td:last-child {
        border-bottom: none;
    }

    .global-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        font-size: 12px;
        color: #6b7280;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}







.hero-card {
  overflow: hidden;
}
.fg {
  gap: 2px;
  margin-bottom: 10px;
}

.fl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}

.fi {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .92rem;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.fi:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}

.fi::placeholder {
  color: #bbb;
}

textarea.fi {
  resize: vertical;
  min-height: 90px;
}
input:-webkit-autofill-strong-password-viewable,
.fi::-webkit-contacts-auto-fill-button,
.fi::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
/* ── Contact Form Card Overrides ── */

form.hero-card {
  overflow: visible;
  padding: 24px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

form.hero-card .fg {
  margin-bottom: 10px;
}

form.hero-card .fl {
  margin-bottom: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-4);
}

form.hero-card .fi {
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  font-size: .87rem;
}

form.hero-card .fi:focus {
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 3px var(--indigo-dim);
}

form.hero-card textarea.fi {
  resize: vertical;
  min-height: 80px;
  rows: 3;
}

form.hero-card .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: .9rem;
  border-radius: 10px;
}



@media(max-width:1024px){
  .post-layout      { grid-template-columns:1fr; padding:36px 28px 0; }
  .post-sidebar     { position:static; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
  .toc-widget       { grid-column:span 2; }
  .progress-widget  { grid-column:span 2; }
  .sw-cta           { grid-column:span 2; }
  .post-article     { border-radius:var(--radius-xl); border:1.5px solid var(--border); }
  .post-hero-img-wrap { border-radius:var(--radius-xl); }
  .related-grid     { grid-template-columns:1fr 1fr; }
  .post-nav         { grid-template-columns:1fr; }
  .post-meta-bar    { gap:12px; }
}
@media(max-width:768px){
  .blog-detail-page { padding-top:72px; }
  .post-article     { padding:28px 22px 36px; }
  .post-sidebar     { grid-template-columns:1fr; }
  .toc-widget,.progress-widget,.sw-cta { grid-column:span 1; }
  .related-grid     { grid-template-columns:1fr; }
  .post-hero-img-wrap {
  height: auto;
}

.post-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
  .post-hero-inner  { padding:0 20px; }
  .post-title       { font-size:1.9rem; }
  .post-author-card { flex-direction:column; gap:14px; }
  .paf-share        { flex-direction:column; align-items:flex-start; }
}