:root {
  /* Brand palette — مستوحى من طيف للمحامين */
  --brand-900: #0A0F4D;
  --brand-800: #0F1A8C;
  --brand-700: #1928D6;
  --brand-600: #2A3DFF;
  --brand-500: #4A5BFF;
  --brand-400: #7A87FF;
  --brand-300: #A6AEFF;
  --brand-200: #CBD0FF;
  --brand-100: #E6E9FF;

  /* Aliases عشان أحافظ على نفس أسماء المتغيرات في HTML */
  --gold: var(--brand-600);
  --gold-dark: var(--brand-700);
  --gold-light: var(--brand-400);
  --black: #0A0F4D;
  --charcoal: var(--brand-800);
  --cream: #ffffff;
  --warm-gray: #F5F7FF;
  --text-muted: #5A6075;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;          /* prevent any rogue child from causing horizontal scroll */
}

body {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  background: var(--cream);
  color: var(--brand-900);
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;          /* belt-and-suspenders: also lock body */
  max-width: 100vw;
}

/* === Fix Fluent Forms screen-reader legend overflow ===
   The plugin renders a <legend class="ff_screen_reader_title"> element with
   scrollWidth ≈ 999999 px, which forces the whole page to be horizontally
   scrollable on mobile. Hide it properly without breaking accessibility. */
.ff_screen_reader_title,
.ff-screen-reader-text,
fieldset.fluentform-step legend,
.fluentform legend {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: -9999px !important;     /* don't push the layout */
  top: auto !important;
}

/* Force IBM Plex on all elements site-wide (no exceptions) */
body, body * {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
}

/* Override SVG/icon fonts that should keep their fonts */
body svg, body i.fa, body .ff-svg-icon {
  font-family: inherit;
}

.font-display {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Brand accent line */
.gold-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  margin: 0 12px;
  vertical-align: middle;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--brand-700);
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
}

/* Variant for use over dark/navy backgrounds — uses gold tint for visibility */
.gold-divider.cta-divider-on-dark::before,
.gold-divider.cta-divider-on-dark::after {
  background: linear-gradient(90deg, transparent, rgba(255, 213, 128, 0.6), transparent);
}

/* === Article + page dark CTA cards (bg-[var(--brand-900)] + text-white pattern) ===
   Forces high-contrast white text + gradient background for all CTA cards */
.bg-\[var\(--brand-900\)\].text-white {
  background: linear-gradient(135deg, #0F1A8C 0%, #1928D6 100%) !important;
}
.bg-\[var\(--brand-900\)\].text-white h2,
.bg-\[var\(--brand-900\)\].text-white h3,
.bg-\[var\(--brand-900\)\].text-white h4 {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.bg-\[var\(--brand-900\)\].text-white p {
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.8;
}
.bg-\[var\(--brand-900\)\].text-white .text-white\/70 {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Hero — gradient أزرق ملكي مع توهج */
.hero-pattern {
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(122, 135, 255, 0.55), transparent 60%),
    radial-gradient(800px 400px at 15% 80%, rgba(74, 91, 255, 0.35), transparent 60%),
    linear-gradient(135deg, #0F1A8C 0%, #1928D6 55%, #2A3DFF 100%);
}

.hero-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.7;
}

/* Buttons */
.btn-gold {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  background: white;
  color: var(--brand-700);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px -10px rgba(42, 61, 255, 0.45);
}
@media (min-width: 640px) {
  .btn-gold {
    padding: 16px 36px;
    font-size: 16px;
  }
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px -10px rgba(42, 61, 255, 0.65);
  background: var(--brand-100);
}

.btn-outline {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
@media (min-width: 640px) {
  .btn-outline {
    padding: 15px 36px;
    font-size: 16px;
  }
}

.btn-outline:hover {
  background: white;
  color: var(--brand-700);
  border-color: white;
}

/* Service cards */
.service-card {
  background: white;
  border: 1px solid var(--brand-100);
  padding: 40px 32px;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--brand-600), var(--brand-400));
  transition: height 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -20px rgba(42, 61, 255, 0.25);
  border-color: var(--brand-300);
}

.service-card:hover::before {
  height: 100%;
}

.service-number {
  font-family: 'Tajawal', sans-serif;
  font-size: 56px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 900;
  opacity: 0.6;
}

/* Stats counter */
.stat-number {
  font-family: 'Tajawal', sans-serif;
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, white, var(--brand-200));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Testimonial */
.testimonial-card {
  background: white;
  padding: 48px 40px;
  border-radius: 12px;
  position: relative;
  border-top: 3px solid var(--brand-600);
  box-shadow: 0 4px 20px rgba(15, 26, 140, 0.04);
}

.quote-mark {
  position: absolute;
  top: -20px;
  right: 32px;
  font-size: 96px;
  color: var(--brand-500);
  font-family: 'Tajawal', sans-serif;
  line-height: 1;
  font-weight: 900;
  opacity: 0.6;
}

/* Navbar */
.navbar-scrolled {
  background: rgba(15, 26, 140, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Underline animation for nav links */
.nav-link {
  position: relative;
  padding: 8px 0;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: white;
}

/* Section heading — same font as H1 (IBM Plex Sans Arabic, weight 900) */
.section-heading {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-900);
}

.section-eyebrow {
  color: var(--brand-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* WhatsApp float — moved to RIGHT side to avoid overlap with LiteSpeed scroll-to-top button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse 2s infinite;
}

/* Make sure LiteSpeed back-to-top stays on the LEFT (default is right) */
#litespeed-tap-to-top,
.litespeed-tap-to-top,
button[aria-label*="top" i] {
  left: 24px !important;
  right: auto !important;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
}

/* Process step */
.process-step {
  position: relative;
  padding-right: 60px;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tajawal', sans-serif;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(42, 61, 255, 0.35);
}

/* Subtle shine animation on hover */
@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shine-text {
  background: linear-gradient(90deg, white 0%, var(--brand-200) 50%, white 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.75);
}

.footer h4 {
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  display: block;
  padding: 6px 0;
}

.footer a:hover {
  color: white;
}

/* === Social icon — uniform centered glyphs ===
   All icons rendered at exactly 16×16 inside a 40×40 circle.
   No per-icon size tweaks: keeps optical weight consistent. */
.social-icon {
  position: relative;
  color: #ffffff !important;
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  flex-shrink: 0;
}
.footer a.social-icon,
.footer .social-icon {
  color: #ffffff !important;
  padding: 0 !important;
}
.social-icon:hover {
  background: #ffffff !important;
  color: var(--brand-900) !important;
  border-color: #ffffff !important;
}
.social-icon-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.social-icon-glyph svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
  fill: currentColor;
  color: inherit;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

/* === Blog/Single post layout overrides for Elementor Canvas template === */
body.single-post,
body.blog,
body.archive {
  background: var(--cream);
}

/* Article body container */
.single-post .entry-content,
.single-post article {
  max-width: 768px;
  margin: 60px auto 80px;
  padding: 0 24px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--brand-900);
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 900;
  color: var(--brand-900);
  letter-spacing: -0.02em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.single-post .entry-content h2 { font-size: 32px; }
.single-post .entry-content h3 { font-size: 24px; }

.single-post .entry-content p {
  margin-bottom: 1.4em;
  color: var(--text-muted);
}

.single-post .entry-content blockquote {
  border-right: 4px solid var(--brand-600);
  background: var(--warm-gray);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-900);
}

.single-post .entry-content a {
  color: var(--brand-700);
  font-weight: 700;
}

/* Blog index */
body.blog .ast-archive-description,
body.blog .entry-header {
  display: none;
}

body.blog .site-content,
body.blog #primary {
  background: var(--cream);
  padding: 0;
}

body.blog .ast-row,
body.blog .ast-container,
body.blog #primary {
  max-width: 100% !important;
  padding: 0 !important;
}

body.blog .blog-layout-1,
body.blog article.post {
  background: white;
  border: 1px solid var(--brand-100);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  transition: all 0.4s ease;
}

body.blog article.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -20px rgba(42, 61, 255, 0.2);
}

body.blog article.post .post-thumb img,
body.blog article.post .post-thumb-img-content img {
  border-radius: 12px;
  margin-bottom: 20px;
}

body.blog article.post .entry-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--brand-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

body.blog article.post .entry-title a {
  color: var(--brand-900);
  text-decoration: none;
}

body.blog article.post .entry-title a:hover {
  color: var(--brand-700);
}

body.blog article.post .entry-content,
body.blog article.post .entry-summary {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

body.blog .ast-pagination {
  margin: 60px 0;
  text-align: center;
}

/* Hide WP default page title heading on blog page (Astra renders it) */
body.blog .page-title {
  display: none !important;
}

/* === Fluent Forms styling to match site design === */
.fluentform .ff-el-form-control,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="number"],
.fluentform select,
.fluentform textarea {
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
  border: 1px solid var(--brand-200) !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  background: white !important;
  color: var(--brand-900) !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
}

.fluentform .ff-el-form-control:focus,
.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus {
  border-color: var(--brand-700) !important;
  box-shadow: 0 0 0 3px rgba(42, 61, 255, 0.12) !important;
  outline: none !important;
}

.fluentform label,
.fluentform .ff-el-input--label {
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
  font-weight: 700 !important;
  color: var(--brand-900) !important;
  margin-bottom: 8px !important;
}

.fluentform .ff-el-input--content {
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

/* Submit button */
.fluentform button.ff-btn,
.fluentform button.ff-btn-submit,
.fluentform input[type="submit"] {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600)) !important;
  color: white !important;
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  padding: 16px 36px !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 20px 60px -15px rgba(42, 61, 255, 0.55) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.fluentform button.ff-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px -15px rgba(42, 61, 255, 0.7) !important;
}

/* Radio cards (vertical list with full-width clickable areas) */
.fluentform .ff-el-form-check {
  display: block !important;
  margin-bottom: 8px !important;
  padding: 12px 16px !important;
  border: 1px solid var(--brand-100) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.fluentform .ff-el-form-check:hover {
  background: var(--warm-gray) !important;
  border-color: var(--brand-300) !important;
}
.fluentform .ff-el-form-check input[type="radio"] {
  margin-left: 8px !important;
  accent-color: var(--brand-700) !important;
}

/* Validation / help text */
.fluentform .ff-el-form-help {
  font-size: 13px !important;
  color: var(--text-muted) !important;
}

.fluentform .text-danger,
.fluentform .ff-el-is-error {
  color: #dc2626 !important;
}

/* Newsletter compact form (just email + button inline) */
.newsletter-form-wrap .fluentform {
  margin: 0 !important;
}
.newsletter-form-wrap .ff-t-cell {
  display: flex !important;
  gap: 12px !important;
  align-items: stretch !important;
  flex-wrap: wrap !important;
}
.newsletter-form-wrap .ff-el-input--content {
  flex: 1 !important;
  min-width: 200px !important;
}
.newsletter-form-wrap input[type="email"] {
  height: 52px !important;
  font-size: 16px !important;
}
.newsletter-form-wrap button.ff-btn {
  height: 52px !important;
  white-space: nowrap !important;
}

/* Confirmation messages styling */
.fluentform .ff-message-success,
.fluent_form_4 .ff-message-success {
  background: var(--brand-100) !important;
  color: var(--brand-900) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

/* === Reading progress bar (single posts) === */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(206, 214, 255, 0.15);
  z-index: 100;
}
.reading-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  box-shadow: 0 0 12px rgba(122, 135, 255, 0.6);
  transition: width 0.1s ease-out;
}

/* === Article TOC === */
.article-toc {
  background: var(--warm-gray);
  border: 1px solid var(--brand-100);
  border-right: 4px solid var(--brand-600);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0 40px;
}
.article-toc .toc-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.article-toc li {
  position: relative;
  padding-right: 20px;
}
.article-toc li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-600);
  opacity: 0.4;
}
.article-toc a {
  color: var(--brand-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  display: inline-block;
  transition: color 0.2s ease;
}
.article-toc a:hover {
  color: var(--brand-700);
}

/* === Article share bar === */
.article-share {
  margin: 60px 0 0;
  padding: 32px;
  background: var(--warm-gray);
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--brand-100);
}
.article-share .share-label {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 800;
  color: var(--brand-700);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-share .share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  background: white;
  color: var(--brand-900);
  border: 1px solid var(--brand-100);
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(42, 61, 255, 0.3);
}
.share-btn.share-x:hover { background: #000; color: white; }
.share-btn.share-wa:hover { background: #25d366; color: white; }
.share-btn.share-li:hover { background: #0077b5; color: white; }
.share-btn.share-copy {
  background: var(--brand-700);
  color: white;
  border-color: var(--brand-700);
}

/* === Article body styling (refined) === */
.post-body h2 {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--brand-900);
  letter-spacing: -0.02em;
  margin-top: 2em;
  margin-bottom: 0.8em;
  scroll-margin-top: 100px;
}
.post-body h3 {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--brand-900);
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}
.post-body p {
  margin-bottom: 1.4em;
  line-height: 1.85;
  color: #1a1f3e;
  font-size: 17px;
}
.post-body ul, .post-body ol {
  margin: 1em 0 1.5em;
  padding-right: 24px;
}
.post-body li {
  margin-bottom: 0.6em;
  line-height: 1.85;
  color: #1a1f3e;
}
.post-body strong {
  color: var(--brand-900);
  font-weight: 700;
}
.post-body a {
  color: var(--brand-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.post-body blockquote {
  border-right: 4px solid var(--brand-600);
  background: linear-gradient(135deg, var(--warm-gray), var(--brand-100));
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 16px 16px 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--brand-900);
}
.post-body details {
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 12px;
  background: white;
}
.post-body details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-900);
  font-size: 16px;
}
.post-body details[open] summary {
  margin-bottom: 12px;
  color: var(--brand-700);
}

/* === Layout fixes for canvas template === */
body.elementor-page,
body.single-post,
body.blog,
body.error404 {
  margin: 0;
  padding: 0;
}
