/* ─────────────────────────────────────────────────────────────
   GoNitaq — mobile carousels + Astra integration
   This file is loaded AFTER gonitaq.css and adds:
   1. Carousel behavior for cat-grid, method-grid, values-row on mobile
   2. Hides Astra header/footer on GoNitaq pages (body.gonitaq-page)
   3. WordPress media path fixes for hero backgrounds
   ───────────────────────────────────────────────────────────── */

/* ─── Hide Astra theme chrome on GoNitaq pages ─────────────── */
body.gonitaq-page #masthead,
body.gonitaq-page .site-header.ast-primary-header-bar,
body.gonitaq-page .ast-above-header,
body.gonitaq-page .ast-below-header,
body.gonitaq-page #colophon,
body.gonitaq-page .entry-header,
body.gonitaq-page .entry-title,
body.gonitaq-page .ast-container,
body.gonitaq-page .ast-no-thumbnail .entry-content {
  display: none !important;
}

/* Astra also wraps content in #colophon — kill its descendants too in case they leak */
body.gonitaq-page #colophon * {
  display: none !important;
}

/* Reset Astra's content wrapper so GoNitaq design fills viewport */
body.gonitaq-page .site-content,
body.gonitaq-page #content,
body.gonitaq-page .ast-container,
body.gonitaq-page .entry-content,
body.gonitaq-page main#primary,
body.gonitaq-page .site-main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Remove any default Astra body padding */
body.gonitaq-page {
  padding: 0 !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE CAROUSELS
   Strategy: native scroll-snap on the X axis. CSS-only carousel
   that's smooth, touch-native, with momentum. JS adds dot dots.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Categories: 6 cards → mobile carousel ────────────────── */
@media (max-width: 720px) {
  .cat-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-grid::-webkit-scrollbar { display: none; }

  .cat-grid .cat-card {
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* ─── Methodology: 4 steps → mobile carousel ───────────────── */
@media (max-width: 720px) {
  .method-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .method-grid::-webkit-scrollbar { display: none; }

  .method-grid .method-step {
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: 200px;
  }
}

/* ─── Values: 3 props → stacked on mobile (cleaner than swipe for 3) ── */
@media (max-width: 720px) {
  .values-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }
  .values-row .val {
    width: 100%;
  }
}

/* ─── Carousel dot indicators ──────────────────────────────── */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 720px) {
  .carousel-dots { display: flex; }
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-300);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 200ms ease;
}
.carousel-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ─── Hero background images ───────────────────────────────── */
/* The hero::before background-image URLs are injected at runtime
   by gonitaq-loader.php via wp_add_inline_style() to point to the
   correct WordPress uploads URL. This avoids hardcoding paths. */

/* ─── Sticky WhatsApp FAB: ensure it's above everything ────── */
.whatsapp-fab {
  z-index: 9999 !important;
}

/* ─── Performance: prevent image jank on slow connections ──── */
.hero { contain: layout style paint; }
.logos-track-wrap { contain: layout style paint; }

/* ─── Astra body class compatibility ───────────────────────── */
/* Astra may add classes like .ast-separate-container that wrap content.
   Override to prevent it from interfering with our design. */
body.gonitaq-page.ast-separate-container .site-content {
  background: transparent !important;
  padding: 0 !important;
}

body.gonitaq-page .single .entry-content {
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   FIXES v1.0.6 — third iteration, careful cascade-aware fixes
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. Hero alignment — match logo/icon right edge exactly ──
   
   THE BUG: .hero .inner has classes "container inner". Base CSS gives:
     .container { max-width: 1200px; margin: 0 auto; padding: 0 24px }
     .hero .inner { max-width: 920px }
   The 920px wins (higher specificity), but margin: 0 auto still applies
   from .container. Result: a 920px box CENTERED in viewport → headline
   sits 140px to the left of where logo/icons sit.
   
   THE FIX: Override .hero .inner's max-width back to 1200px so it
   matches the container. Then constrain only the h1 to 920px width
   pinned to the right edge (start in RTL) for readable line length. */

.hero .inner {
  max-width: 1200px !important;  /* match .container, not 920px */
  width: 100% !important;
  margin: 0 auto !important;     /* keep centered like .container */
  padding: 0 24px !important;    /* keep container padding */
}

/* Constrain headline width for readability, pinned to right edge in RTL.
   With margin-inline-start: 0 (right in RTL) and margin-inline-end: auto
   (left in RTL = auto), the headline pins to the right. */
.hero .inner h1.h-display {
  max-width: 920px;
  margin-inline-start: 0 !important;   /* right edge = 0 margin */
  margin-inline-end: auto !important;  /* left side absorbs the slack */
}

/* Eyebrow stays as base CSS defines it: inline-flex with gap: 8px.
   (Removed previous display: inline-block override that broke the gap
   between the saffron dot and the text.) */

/* Lede paragraph — narrower for readability, also pinned right */
.hero .inner .lede {
  max-width: 640px;
  margin-inline-start: 0 !important;
  margin-inline-end: auto !important;
}

/* ─── 2. Value-prop icons — Tabby style, right-aligned ───── */
/* .val is a flex column. In RTL, cross-axis "flex-start" = right side.
   We need the icon to align right (matching text below it). */
.values-row .val {
  align-items: flex-start; /* in RTL, flex-start = right side */
}
.values-row .val .label.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent !important;
  color: var(--teal);
  margin-bottom: 8px;
  padding: 0;
  border-radius: 0;
  align-self: flex-start; /* in RTL column flex, flex-start = right */
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.values-row .val .label.icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.6;
}
.values-row .val .label.icon::before {
  display: none !important;
}
.values-row .val:hover .label.icon {
  background: transparent !important;
  color: var(--teal-700);
  transform: translateY(-2px);
}

/* ─── 3. Mobile menu — MOBILE ONLY (was breaking on desktop) ── */
/* Wrap all .mobile-menu-btn rules inside @media (max-width: 880px)
   so they NEVER apply on desktop. Base CSS hides the button on desktop;
   we must NOT override that with !important outside the media query. */
@media (max-width: 880px) {
  .mobile-menu-btn,
  .mobile-menu-btn:link,
  .mobile-menu-btn:visited {
    background: transparent !important;
    border: 1.5px solid var(--teal) !important;
    color: var(--teal) !important;
    border-radius: 8px !important;
    padding: 8px !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .mobile-menu-btn svg {
    stroke: var(--teal) !important;
    fill: none !important;
    width: 20px !important;
    height: 20px !important;
  }
  .mobile-menu-btn.is-open {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    color: var(--white) !important;
  }
  .mobile-menu-btn.is-open svg {
    stroke: var(--white) !important;
  }

  .site-header { position: sticky; }
  .site-header .inner { position: relative; }

  .site-header .nav.is-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline-end: 0;
    inset-inline-start: 0;
    background: var(--white) !important;
    padding: 16px 20px 20px;
    gap: 8px;
    align-items: flex-end;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: 0 8px 24px -16px rgba(20, 32, 31, 0.12);
    z-index: 100;
  }
  .site-header .nav.is-open a {
    display: block !important;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-900) !important;
    text-align: right;
    border-bottom: 1px solid var(--ink-100);
    text-decoration: none;
  }
  .site-header .nav.is-open a:hover {
    color: var(--teal) !important;
  }
  .site-header .nav.is-open a:last-child {
    border-bottom: 0;
  }
}

/* Desktop safety: explicitly hide mobile menu button on desktop.
   Base CSS already does this but added as safety net since previous
   !important rules broke it. */
@media (min-width: 881px) {
  .mobile-menu-btn {
    display: none !important;
  }
}

/* ─── 4. PDF email input — taller on mobile ─────────────── */
@media (max-width: 880px) {
  .lead-form input {
    height: 52px;
    min-height: 52px;
    padding: 0 18px;
    font-size: 16px;
  }
  .lead-form button.btn {
    min-height: 52px;
    padding: 14px 22px;
  }
  .lead-form {
    padding: 24px 20px;
  }
  .lead-form .row {
    gap: 12px;
  }
}

/* ─── 5. الشرق الأوسط label sizing ───────────────────────── */
.stat .num-display .label-em {
  font-family: var(--font-ar);
  font-weight: 700;
  color: var(--teal);
  display: inline-block;
  white-space: nowrap;
}

/* ─── 6. Methodology section ──────────────────────────────
   Sand background, white cards with teal border matching the
   "WordPress" featured card style exactly: 1px border, 12px radius. */
.method-section {
  background: var(--sand) !important;
}
.method-grid {
  gap: 20px !important;
}
.method-grid .method-step {
  background: var(--white) !important;
  border: 1px solid var(--teal) !important;       /* was 1.5px → now 1px to match WordPress card */
  border-radius: 12px !important;                  /* was 16px → now 12px to match WordPress card */
  padding: 28px 24px !important;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.04);
  transition: box-shadow 280ms ease, transform 280ms ease;
}
.method-grid .method-step:hover {
  box-shadow: 0 12px 24px rgba(13, 115, 119, 0.10);
  transform: translateY(-2px);
}
.method-grid .method-step .step-num {
  color: var(--saffron) !important;
}

/* ─── 7. Footer signature — keep on one line ─────────────── */
.site-footer .signature {
  white-space: nowrap;
}
.site-footer .tagline {
  white-space: nowrap;
}
.site-footer .brand .desc {
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .site-footer .signature,
  .site-footer .tagline {
    white-space: normal;
  }
  .site-footer .brand .desc {
    text-wrap: balance;
  }
}

/* ─── 8. About: keep phrases from orphan-wrapping ────────── */
.about-hero .lede,
.founder .body p,
.about-section .lede {
  text-wrap: pretty;
}

/* ─── 9. Brand logos (image marquee) v1.1.2 ──────────────
   PNGs are pre-silhouetted at the source (uniform #3a3a3a),
   so no CSS color filter is needed. We only adjust opacity
   for a subtle "decorative" weight that matches premium
   "trusted by" strips (Stripe, Vercel, Linear pattern). */

.logos-section .logos-track {
  gap: 64px !important;
  animation-duration: 40s !important;
}

.logos-track .logo-item.logo-img {
  padding: 0;
  background: transparent;
  border: 0;
  height: 36px;
  display: inline-flex;
  align-items: center;
}

.logos-track .logo-item.logo-img img {
  height: 36px;
  width: auto;          /* preserve aspect ratio per logo */
  max-width: 140px;     /* cap wide logos so none dominate */
  object-fit: contain;
  display: block;
  opacity: 0.7;         /* lighter weight so they read as decorative */
  transition: opacity 320ms ease;
}

.logos-track .logo-item.logo-img:hover img {
  opacity: 1;
}

/* Mobile: smaller logos, tighter gap */
@media (max-width: 720px) {
  .logos-section .logos-track {
    gap: 44px !important;
  }
  .logos-track .logo-item.logo-img,
  .logos-track .logo-item.logo-img img {
    height: 28px;
  }
  .logos-track .logo-item.logo-img img {
    max-width: 110px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   v1.1.2 — Official partner feature (Hostinger)
   Stripped the card treatment. The minimalist aesthetic relies on
   typography hierarchy and whitespace, not containers. Now: just
   a centered eyebrow + logo with generous breathing room.
   ═══════════════════════════════════════════════════════════════ */

.logos-section .partner-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 48px;
  padding: 8px 24px;
  text-align: center;

  /* No card. No border. No background. Just space. */
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  max-width: none;
}

.logos-section .partner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ar);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);          /* near-black */
  text-transform: none;
  position: relative;
  padding-inline-start: 16px;
}
.logos-section .partner-eyebrow::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);  /* dot stays saffron */
}

.logos-section .partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1),
              filter 280ms ease;
  filter: none;
}
.logos-section .partner-logo:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.logos-section .partner-logo img {
  height: 56px;
  width: auto;
  max-width: min(320px, 80vw);
  object-fit: contain;
  display: block;
}

/* Tablet + mobile: smaller logo, tighter spacing */
@media (max-width: 720px) {
  .logos-section .partner-feature {
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 4px 16px;
  }
  .logos-section .partner-eyebrow {
    font-size: 12px;
  }
  .logos-section .partner-logo img {
    height: 44px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   v1.1.3 — About hero decorative background
   Same layered pattern as the home hero: a ::before pseudo-element
   sits behind the content and gets its background-image injected
   at runtime by the PHP loader (so paths stay correct).
   ═══════════════════════════════════════════════════════════════ */

.about-hero {
  position: relative;
  overflow: hidden;            /* keeps the SVG cropped to the section */
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;        /* never block clicks */
  z-index: 0;
}

.about-hero > .container {
  position: relative;          /* lifts content above the bg */
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   v1.2.2 — Nav dropdown (الاستضافة submenu)
   ═══════════════════════════════════════════════════════════════ */

/* Reset the .has-submenu wrapper so it sits inline with sibling nav links */
.site-header .nav .has-submenu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* The parent button (الاستضافة) — looks identical to a nav link */
.site-header .nav .submenu-trigger {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 280ms ease;
}
.site-header .nav .submenu-trigger:hover,
.site-header .nav .submenu-trigger[aria-expanded="true"] {
  color: var(--ink-900);
}
.site-header .nav .submenu-trigger .chev {
  transition: transform 240ms ease;
  color: currentColor;
  opacity: 0.7;
}
.site-header .nav .submenu-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
  opacity: 1;
}

/* The dropdown panel — hidden by default */
.site-header .nav .submenu {
  position: absolute;
  top: calc(100% + 14px);
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(-6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md, 12px);
  box-shadow: 0 12px 40px -20px rgba(20, 32, 31, 0.18);
  padding: 8px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  z-index: 200;
}

/* Show on hover (desktop) OR when JS sets aria-expanded */
.site-header .nav .has-submenu:hover .submenu,
.site-header .nav .has-submenu:focus-within .submenu,
.site-header .nav .submenu-trigger[aria-expanded="true"] + .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

/* Invisible hover bridge so the panel doesn't close when crossing the gap */
.site-header .nav .has-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 100%;
  height: 14px;
  pointer-events: none;
}
.site-header .nav .has-submenu:hover::after {
  pointer-events: auto;
}

/* Submenu items */
.site-header .nav .submenu li {
  list-style: none;
}
.site-header .nav .submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700) !important;
  border-radius: 8px;
  transition: background 200ms ease, color 200ms ease;
  text-align: right;
  width: 100%;
}
.site-header .nav .submenu a:hover,
.site-header .nav .submenu a:focus {
  background: var(--sand, #F1F4F4);
  color: var(--ink-900) !important;
}

/* ─── Mobile: dropdown becomes inline stacked items ─── */
@media (max-width: 880px) {
  /* Inside mobile menu, .has-submenu acts as a stacked block */
  .site-header .nav.is-open .has-submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-bottom: 1px solid var(--ink-100);
  }
  .site-header .nav.is-open .submenu-trigger {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-900) !important;
    text-align: right;
  }

  /* On mobile, submenu collapses inline below parent */
  .site-header .nav.is-open .submenu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: var(--sand, #F1F4F4) !important;
    border-radius: 8px;
    margin: 0 0 10px;
    padding: 4px 8px;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .site-header .nav.is-open .submenu-trigger[aria-expanded="true"] + .submenu {
    display: block;
  }

  .site-header .nav.is-open .submenu a {
    padding: 12px 6px;
    border-bottom: none;
    font-size: 15px;
  }

  /* Remove the desktop hover-bridge on mobile */
  .site-header .nav .has-submenu::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   v1.2.2 — Legal page wrapper styling
   Applies to /privacy/, /disclosure/, and any other regular WP page
   that gets wrapped via gonitaq_is_legal_wrapper_page().
   Goal: clean, readable, brand-aligned typography for WordPress
   Gutenberg content (h1/h2/h3/p/ul/ol/blockquote/a).
   ═══════════════════════════════════════════════════════════════ */

body.gonitaq-legal-page .legal-wrapper {
  padding: 64px 0 96px;
  background: var(--white);
}
@media (max-width: 720px) {
  body.gonitaq-legal-page .legal-wrapper {
    padding: 40px 0 64px;
  }
}

body.gonitaq-legal-page .legal-article {
  max-width: 720px;
  margin: 0 auto;
}

body.gonitaq-legal-page .legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-100);
}

body.gonitaq-legal-page .legal-title {
  font-family: var(--font-ar);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

/* The content block — styles what comes out of Gutenberg */
body.gonitaq-legal-page .legal-content {
  font-family: var(--font-ar);
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-700);
}

body.gonitaq-legal-page .legal-content > * + * {
  margin-top: 20px;
}

body.gonitaq-legal-page .legal-content h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-900);
  margin-top: 48px !important;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
body.gonitaq-legal-page .legal-content h2:first-child {
  margin-top: 0 !important;
}

body.gonitaq-legal-page .legal-content h3 {
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
  margin-top: 32px !important;
  margin-bottom: 8px;
}

body.gonitaq-legal-page .legal-content p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-700);
}

body.gonitaq-legal-page .legal-content strong {
  color: var(--ink-900);
  font-weight: 600;
}

body.gonitaq-legal-page .legal-content em {
  font-style: normal;
  color: var(--ink-500);
}

body.gonitaq-legal-page .legal-content a {
  color: var(--teal);
  border-bottom: 1px solid rgba(13, 115, 119, 0.3);
  transition: border-color 200ms ease, color 200ms ease;
}
body.gonitaq-legal-page .legal-content a:hover {
  color: var(--teal-700);
  border-bottom-color: var(--teal-700);
}

body.gonitaq-legal-page .legal-content ul,
body.gonitaq-legal-page .legal-content ol {
  padding-inline-start: 24px;
}
body.gonitaq-legal-page .legal-content li {
  margin-top: 8px;
  line-height: 1.75;
}
body.gonitaq-legal-page .legal-content li::marker {
  color: var(--teal);
}

body.gonitaq-legal-page .legal-content blockquote {
  border-inline-start: 3px solid var(--teal);
  padding: 4px 16px;
  margin: 24px 0;
  color: var(--ink-500);
  font-style: normal;
}

body.gonitaq-legal-page .legal-content hr {
  border: none;
  border-top: 1px solid var(--ink-100);
  margin: 48px 0;
}

body.gonitaq-legal-page .legal-content code {
  font-family: 'SF Mono', Menlo, monospace;
  background: var(--sand, #F1F4F4);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  direction: ltr;
  display: inline-block;
}
