/* Q-DASH Local Knowledge Hub Fonts */
@font-face {
  font-family: 'Cairo Local';
  font-style: normal;
  font-weight: 400 900;
  font-display: optional;
  src: url('/assets/fonts/cairo/cairo-arabic.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: 'Cairo Local';
  font-style: normal;
  font-weight: 400 900;
  font-display: optional;
  src: url('/assets/fonts/cairo/cairo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora Local';
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url('/assets/fonts/sora/sora-latin.woff2') format('woff2');
}

/* ═══════════════════════════════════════════════════════════════════════════
   Q-DASH BUSINESS KNOWLEDGE HUB & BLOG SYSTEM (V3 - MAIN SITE INTEGRATED)
   Identity: Q-DASH Deep Navy (#0B1F33), Vibrant Orange (#E05C2A), Clean Light (#F8FAFC, #FFFFFF)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --kh-navy: #0B1F33;
  --kh-navy-card: #162447;
  --kh-orange: #E05C2A;
  --kh-orange-hover: #C84B1B;
  --kh-orange-light: rgba(224, 92, 42, 0.08);
  --kh-bg-page: #F8FAFC;
  --kh-bg-card: #FFFFFF;
  --kh-border: #E2E8F0;
  --kh-border-hover: #CBD5E1;
  --kh-tx-main: #0F172A;
  --kh-tx-body: #334155;
  --kh-tx-muted: #64748B;
  --kh-tx-light: #94A3B8;
  --kh-green: #10B981;
  --kh-wa: #25D366;
  --kh-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --kh-shadow-md: 0 6px 20px rgba(15, 23, 42, 0.06);
  --kh-shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.08);
  --kh-shadow-orange: 0 8px 24px rgba(224, 92, 42, 0.18);
  --kh-radius: 12px;
  --kh-radius-sm: 8px;
  --kh-radius-lg: 18px;
  --kh-font: 'Cairo Local', Arial, sans-serif;
}

body.en {
  --kh-font: 'Sora Local', Arial, sans-serif;
}

/* ── Reading Progress Bar ────────────────────────────────────────── */
.kh-read-progress {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999;
}
.kh-read-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E05C2A, #FF7A45);
  transition: width 0.1s ease-out;
}

/* ── Global Page Wrapper ─────────────────────────────────────────── */
.kh-main-wrapper {
  background-color: var(--kh-bg-page);
  color: var(--kh-tx-body);
  font-family: var(--kh-font);
  line-height: 1.8;
  min-height: 80vh;
  padding-bottom: 60px;
}

/* ── Breadcrumb Bar (Standard Q-DASH) ────────────────────────────── */
.kh-breadcrumb-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--kh-border);
  padding: 12px 0;
  font-size: 13px;
}
.kh-breadcrumb-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--kh-tx-muted);
}
.kh-breadcrumb-wrap a {
  color: var(--kh-tx-body);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.kh-breadcrumb-wrap a:hover {
  color: var(--kh-orange);
}
.kh-breadcrumb-sep {
  color: var(--kh-tx-light);
  font-size: 11px;
}
.kh-breadcrumb-cur {
  color: var(--kh-orange);
  font-weight: 700;
}

/* ── Listing Hero Banner ─────────────────────────────────────────── */
.kh-listing-hero {
  background: linear-gradient(135deg, #0B1F33 0%, #162447 100%);
  color: #FFFFFF;
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--kh-orange);
}
.kh-listing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224, 92, 42, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.kh-listing-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.kh-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 92, 42, 0.16);
  border: 1px solid rgba(224, 92, 42, 0.35);
  color: #FFA07A;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.kh-listing-hero h1 {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 14px;
  line-height: 1.35;
}
.kh-listing-hero h1 span.hl {
  color: #FF7A45;
}
.kh-listing-hero p {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: #CBD5E1;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Category Filter Bar ─────────────────────────────────────────── */
.kh-filter-section {
  max-width: 1180px;
  margin: -22px auto 32px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.kh-filter-container {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow: var(--kh-shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.kh-filter-container::-webkit-scrollbar {
  display: none;
}
.kh-filter-pill {
  background: transparent;
  border: none;
  color: var(--kh-tx-body);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kh-filter-pill:hover {
  background: var(--kh-bg-page);
  color: var(--kh-orange);
}
.kh-filter-pill.active {
  background: var(--kh-orange);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(224, 92, 42, 0.35);
}

/* ── 3-Column Responsive Grid ────────────────────────────────────── */
.kh-grid-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.kh-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Compact Knowledge Card ─────────────────────────────────────── */
.kh-card {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--kh-shadow-sm);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.kh-card:hover {
  transform: translateY(-4px);
  border-color: var(--kh-orange);
  box-shadow: var(--kh-shadow-md), 0 0 0 1px var(--kh-orange);
}

/* Card Visual Header (35-40% ratio) */
.kh-card-visual {
  height: 125px;
  background: linear-gradient(135deg, #0B1F33 0%, #162447 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.kh-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(224, 92, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.kh-card-visual-svg {
  width: 100%;
  height: 100%;
  max-height: 85px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
.kh-card:hover .kh-card-visual-svg {
  transform: scale(1.04);
}
.kh-card-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(11, 31, 51, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFA07A;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}
body.en .kh-card-badge {
  right: auto;
  left: 12px;
}

/* Card Content Area (60-65% ratio) */
.kh-card-content {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.kh-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--kh-tx-muted);
  margin-bottom: 8px;
}
.kh-card-service-link {
  color: var(--kh-orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.kh-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--kh-tx-main);
  line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 46px;
  transition: color 0.2s ease;
}
.kh-card:hover .kh-card-title {
  color: var(--kh-orange);
}
.kh-card-excerpt {
  font-size: 13px;
  color: var(--kh-tx-body);
  line-height: 1.6;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.kh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--kh-border);
  font-size: 12.5px;
  margin-top: auto;
}
.kh-card-read-time {
  color: var(--kh-tx-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.kh-card-cta {
  color: var(--kh-orange);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.kh-card:hover .kh-card-cta {
  gap: 9px;
}

/* ── ARTICLE PAGE STYLING ────────────────────────────────────────── */
.kh-article-page {
  background: #FFFFFF;
  color: var(--kh-tx-body);
}

/* Article Hero Header */
.kh-article-hero {
  background: linear-gradient(135deg, #0B1F33 0%, #162447 100%);
  color: #FFFFFF;
  padding: 44px 20px 48px;
  border-bottom: 3px solid var(--kh-orange);
  position: relative;
}
.kh-article-hero-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.kh-article-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.kh-badge-pill {
  background: rgba(224, 92, 42, 0.18);
  border: 1px solid rgba(224, 92, 42, 0.4);
  color: #FFA07A;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.kh-badge-neutral {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #E2E8F0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}
.kh-article-hero h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0 0 16px;
}
.kh-article-hero-lead {
  font-size: clamp(15px, 2vw, 17.5px);
  color: #CBD5E1;
  line-height: 1.75;
  margin: 0 0 20px;
}
.kh-article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94A3B8;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.kh-article-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Article Body Container */
.kh-article-content-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 20px 60px;
}

/* Content Sections */
.kh-content-block {
  margin-bottom: 44px;
}
.kh-content-block h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: var(--kh-navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  border-bottom: 2px solid var(--kh-border);
  padding-bottom: 10px;
}
.kh-content-block h2 i {
  color: var(--kh-orange);
  font-size: 20px;
}
.kh-content-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--kh-navy);
  margin: 24px 0 12px;
}
.kh-content-block p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--kh-tx-body);
  margin-bottom: 18px;
}

/* Problem Highlight Box */
.kh-callout-box {
  background: #FFF7ED;
  border-right: 4px solid var(--kh-orange);
  border-radius: var(--kh-radius-sm);
  padding: 20px 24px;
  margin: 22px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #7C2D12;
}
body.en .kh-callout-box {
  border-right: none;
  border-left: 4px solid var(--kh-orange);
}

/* Visual Analysis Card & SVG Container */
.kh-scene-card {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  overflow: hidden;
  box-shadow: var(--kh-shadow-md);
  margin: 28px 0;
}
.kh-scene-header {
  background: #0B1F33;
  color: #FFFFFF;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kh-scene-title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kh-scene-title i {
  color: #FF7A45;
}
.kh-scene-body {
  padding: 20px;
  background: #F8FAFC;
}
.kh-scene-desc {
  font-size: 14.5px;
  color: var(--kh-tx-body);
  margin-bottom: 18px;
}
.kh-scene-svg-wrap {
  background: #0B132B;
  border-radius: var(--kh-radius-sm);
  padding: 16px;
  text-align: center;
  overflow-x: auto;
}
.kh-scene-svg-wrap svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Step by Step Flow Grid */
.kh-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.kh-step-card {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius-sm);
  padding: 18px;
  position: relative;
  box-shadow: var(--kh-shadow-sm);
  transition: transform 0.2s ease;
}
.kh-step-card:hover {
  transform: translateY(-2px);
  border-color: var(--kh-orange);
}
.kh-step-num {
  display: inline-block;
  background: var(--kh-navy);
  color: #FF7A45;
  font-size: 13px;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.kh-step-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--kh-navy);
  margin-bottom: 6px;
}
.kh-step-desc {
  font-size: 13px;
  color: var(--kh-tx-body);
  line-height: 1.65;
}

/* KPI Dashboard Cards */
.kh-kpi-deck {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.kh-kpi-box {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  padding: 20px;
  box-shadow: var(--kh-shadow-sm);
  display: flex;
  flex-direction: column;
}
.kh-kpi-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.kh-kpi-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--kh-navy);
}
.kh-kpi-badge {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}
.kh-kpi-calc-formula {
  background: #0B1F33;
  color: #38BDF8;
  font-family: 'Fira Code', monospace;
  font-size: 12.5px;
  direction: ltr;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 10px 0;
  font-weight: 700;
  text-align: center;
}
.kh-kpi-desc {
  font-size: 13.5px;
  color: var(--kh-tx-body);
  line-height: 1.6;
  margin-bottom: 12px;
}
.kh-kpi-decision-callout {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: #166534;
  margin-top: auto;
}

/* Interactive Checklist */
.kh-checklist-box {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  padding: 18px 22px;
  margin: 20px 0;
}
.kh-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--kh-border);
  cursor: pointer;
  user-select: none;
}
.kh-check-row:last-child {
  border-bottom: none;
}
.kh-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
  transition: all 0.2s ease;
}
.kh-check-row.checked .kh-check-icon {
  background: var(--kh-green);
  border-color: var(--kh-green);
  color: #FFFFFF;
}
.kh-check-label {
  font-size: 14.5px;
  color: var(--kh-tx-body);
  line-height: 1.6;
}
.kh-check-row.checked .kh-check-label {
  color: var(--kh-tx-muted);
  text-decoration: line-through;
}

/* Mistakes Table */
.kh-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  margin: 20px 0;
}
.kh-custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  font-size: 14px;
}
body.en .kh-custom-table {
  text-align: left;
}
.kh-custom-table th {
  background: #0B1F33;
  color: #FFFFFF;
  padding: 12px 18px;
  font-weight: 800;
}
.kh-custom-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--kh-border);
  line-height: 1.6;
}
.kh-custom-table tr:nth-child(even) {
  background: #F8FAFC;
}

/* Dual Conversion CTA Section */
.kh-dual-cta-banner {
  background: linear-gradient(135deg, #0B1F33 0%, #162447 100%);
  border-radius: var(--kh-radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: #FFFFFF;
  margin: 48px 0 32px;
  box-shadow: var(--kh-shadow-lg);
  border: 2px solid rgba(224, 92, 42, 0.4);
}
.kh-dual-cta-banner h3 {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.kh-dual-cta-banner p {
  font-size: 15px;
  color: #CBD5E1;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.kh-dual-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kh-btn-action-orange {
  background: var(--kh-orange);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--kh-shadow-orange);
  transition: all 0.25s ease;
}
.kh-btn-action-orange:hover {
  background: var(--kh-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 92, 42, 0.35);
}
.kh-btn-action-wa {
  background: var(--kh-wa);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease;
}
.kh-btn-action-wa:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.kh-btn-action-contact {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.kh-btn-action-contact:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Accordion */
.kh-faq-deck {
  margin: 24px 0;
}
.kh-faq-card {
  background: #FFFFFF;
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--kh-shadow-sm);
}
.kh-faq-trigger {
  width: 100%;
  text-align: right;
  background: #FFFFFF;
  border: none;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--kh-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease;
}
body.en .kh-faq-trigger {
  text-align: left;
}
.kh-faq-trigger:hover {
  background: #F8FAFC;
  color: var(--kh-orange);
}
.kh-faq-chevron {
  color: var(--kh-tx-muted);
  font-size: 14px;
  transition: transform 0.25s ease;
}
.kh-faq-card.open .kh-faq-chevron {
  transform: rotate(180deg);
  color: var(--kh-orange);
}
.kh-faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--kh-tx-body);
  line-height: 1.8;
  border-top: 1px solid #F1F5F9;
}
.kh-faq-card.open .kh-faq-answer {
  display: block;
}

/* Related Articles Grid */
.kh-related-section {
  border-top: 2px solid var(--kh-border);
  padding-top: 40px;
  margin-top: 48px;
}
.kh-related-heading {
  font-size: 20px;
  font-weight: 900;
  color: var(--kh-navy);
  margin-bottom: 22px;
}

/* ── RESPONSIVE BREAKPOINTS ──────────────────────────────────────── */
@media (max-width: 992px) {
  .kh-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .kh-kpi-deck {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kh-articles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .kh-listing-hero {
    padding: 36px 16px;
  }
  .kh-filter-section {
    margin-top: -16px;
    padding: 0 12px;
  }
  .kh-dual-cta-banner {
    padding: 28px 18px;
  }
  .kh-dual-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .kh-btn-action-orange,
  .kh-btn-action-wa {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
