﻿/* ============================================================
   EVISA-CARD.COM â€” GLOBAL STYLESHEET v2026
   Authority-Calm Â· GovTech-Fintech Modern Design System
   Pure CSS Â· Zero dependencies Â· RTL via logical props
   Dark mode: prefers-color-scheme Â· < 100 KB

   01  Design Tokens
   02  Multi-script font overrides
   03  Reset & Base
   04  Typography
   05  Layout system
   06  Skip link
   07  Header & Navigation
   08  Language Selector
   09  Breadcrumb
   10  Hero variants
   11  Destination Search
   12  Trust Bar
   13  Visa Snapshot Card
   14  Country Cards
   15  Badges & Pills
   16  Buttons
   17  Responsive Tables
   18  How-to Steps Timeline
   19  FAQ Accordion
   20  Alert Boxes
   21  CTA Banner
   22  TOC
   23  Related Links
   24  Page Layout (article + aside)
   25  Directory
   26  Footer
   27  Back to Top
   28  Article Body
   29  Utilities
   30  Dark Mode
   31  Responsive Breakpoints
   ============================================================ */

/* â”€â”€ 01. DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Brand â€” Passport Blue */
  --brand-900: #0B1F3A;
  --brand-800: #0F2E54;
  --brand-700: #173A6B;
  --brand-600: #1E4D8C;
  --brand-500: #2D6CB8;
  --brand-300: #8FB4DD;
  --brand-100: #E7EFFA;
  --brand-050: #F4F8FD;

  /* Action â€” Approved Green */
  --action-700: #0B7A53;
  --action-600: #0E9F6E;
  --action-500: #15B981;
  --action-100: #DCF6EC;

  /* Accent â€” Official Gold (rare) */
  --accent-600: #C9871F;
  --accent-500: #E8A33D;
  --accent-100: #FCF1DE;

  /* Semantic */
  --success: #0E9F6E;
  --warning: #E8A33D;
  --danger:  #D64545;
  --info:    #2D6CB8;

  /* Neutrals â€” Slate ink */
  --ink-900:   #0B1220;
  --ink-700:   #27313F;
  --ink-500:   #5A6675;
  --ink-400:   #8A94A3;
  --line:      #E3E8EF;
  --surface-2: #F6F8FB;
  --surface:   #FFFFFF;

  /* Font families */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Type scale (modular ~1.2, base 16 px) */
  --fs-xs:   .800rem;
  --fs-sm:   .900rem;
  --fs-base: 1.000rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.750rem;
  --fs-2xl:  2.250rem;
  --fs-3xl:  3.000rem;

  /* Spacing (4 px base) */
  --sp-1:  .25rem;
  --sp-2:  .5rem;
  --sp-3:  .75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-pill: 999px;

  /* Shadows â€” brand-tinted soft */
  --sh-1: 0 1px 3px rgba(11,31,58,.06), 0 1px 2px rgba(11,31,58,.04);
  --sh-2: 0 4px 12px rgba(11,31,58,.08), 0 2px 6px rgba(11,31,58,.05);
  --sh-3: 0 8px 24px rgba(11,31,58,.10), 0 4px 12px rgba(11,31,58,.06);

  /* Transitions */
  --tr:      160ms ease;
  --tr-slow: 280ms ease;

  /* Layout */
  --container-max: 1200px;
  --article-max:   740px;
  --gutter:        1.5rem;
  --header-h:      64px;
}

/* â”€â”€ 02. MULTI-SCRIPT FONT OVERRIDES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:lang(zh) {
  --font-body:    'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
  --font-heading: 'Noto Sans SC', 'PingFang SC', system-ui, sans-serif;
}
:lang(ja) {
  --font-body:    'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', system-ui, sans-serif;
  --font-heading: 'Noto Sans JP', 'Hiragino Sans', system-ui, sans-serif;
}
:lang(ko) {
  --font-body:    'Noto Sans KR', 'Apple SD Gothic Neo', system-ui, sans-serif;
  --font-heading: 'Noto Sans KR', 'Apple SD Gothic Neo', system-ui, sans-serif;
}
:lang(th) {
  --font-body:    'Noto Sans Thai', 'IBM Plex Sans Thai', 'Leelawadee UI', system-ui, sans-serif;
  --font-heading: 'Noto Sans Thai', 'Leelawadee UI', system-ui, sans-serif;
}
:lang(ar) {
  --font-body:    'IBM Plex Sans Arabic', 'Noto Sans Arabic', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', system-ui, sans-serif;
}
:lang(ru) {
  --font-body:    'Inter', 'Roboto', system-ui, sans-serif;
}

/* â”€â”€ 03. RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color var(--tr); }
a:hover { color: var(--brand-700); }
a:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; border-radius: 2px; }
ul, ol { padding-inline-start: 1.5em; }
li { margin-block-end: var(--sp-1); }
strong { font-weight: 600; color: var(--ink-900); }
small { font-size: var(--fs-sm); }
table { border-collapse: collapse; width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }
hr { border: none; border-block-start: 1px solid var(--line); margin-block: var(--sp-8); }

/* â”€â”€ 04. TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-900);
  text-wrap: balance;
}

h1 { font-size: var(--fs-2xl); margin-block-end: var(--sp-4); scroll-margin-block-start: calc(var(--header-h) + 1rem); }
h2 { font-size: var(--fs-xl);  margin-block: var(--sp-8) var(--sp-4);  scroll-margin-block-start: calc(var(--header-h) + 1rem); }
h3 { font-size: var(--fs-lg);  margin-block: var(--sp-6) var(--sp-3); }
h4 { font-size: var(--fs-md);  margin-block: var(--sp-4) var(--sp-2); }
h5 { font-size: var(--fs-base); font-weight: 600; }
h6 { font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-500); }

p { margin-block-end: var(--sp-4); max-width: 70ch; text-wrap: pretty; }
p:last-child { margin-block-end: 0; }

blockquote {
  border-inline-start: 3px solid var(--brand-300);
  padding-inline-start: var(--sp-4);
  color: var(--ink-500);
  font-style: italic;
  margin-block: var(--sp-6);
}

/* â”€â”€ 05. LAYOUT SYSTEM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--article { max-width: var(--article-max); }

.section { padding-block: var(--sp-16); }
.section--sm { padding-block: var(--sp-8); }
.section--lg { padding-block: var(--sp-24); }
.section--alt { background: var(--surface-2); }
.section--brand { background: var(--brand-800); color: white; }
.section--brand h2,
.section--brand h3 { color: white; }
.section--breadcrumb {
  background: var(--surface);
  border-block-end: 1px solid var(--line);
}

/* Grid */
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid--auto-lg { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* Flex */
.flex { display: flex; }
.flex--center { justify-content: center; align-items: center; }
.flex--between { justify-content: space-between; align-items: center; }
.flex--wrap { flex-wrap: wrap; }
.flex--col { flex-direction: column; }

/* â”€â”€ 06. SKIP LINK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.skip-link {
  position: absolute;
  inset-block-start: var(--sp-2);
  inset-inline-start: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--brand-700);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
  text-decoration: none;
  z-index: 9999;
  transform: translateY(-150%);
  transition: transform var(--tr);
}
.skip-link:focus { transform: translateY(0); }

/* â”€â”€ 07. HEADER & NAVIGATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--surface);
  border-block-end: 1px solid var(--line);
  box-shadow: var(--sh-1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: 100%;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex-shrink: 0;
  margin-inline-end: auto; /* logo left, everything else pushed right */
}
.site-logo img { height: 40px; width: auto; display: block; }
.site-logo__mark {
  width: 36px; height: 36px;
  background: var(--brand-700);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.site-logo__text {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
}
.site-logo__text span { color: var(--brand-600); }

/* Main nav */
.site-nav {
  display: none; /* mobile-first: hidden until desktop */
  list-style: none;
  padding: 0; margin: 0;
  gap: var(--sp-1);
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.site-nav__link:hover { background: var(--brand-050); color: var(--brand-700); }
.site-nav__link--active { background: var(--brand-100); color: var(--brand-700); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-toggle { order: 10; } /* hamburger sits at the far right on mobile */

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: var(--sp-2);
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink-700);
  border-radius: 1px;
  transition: all var(--tr);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }

/* Desktop: show nav inline, hide toggle */
@media (min-width: 1025px) {
  .site-nav {
    display: flex;
    flex-direction: row;
  }
  .nav-toggle { display: none; }
}

/* Mobile open state */
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset-block-start: var(--header-h);
  inset-inline: 0;
  background: var(--surface);
  border-block-end: 1px solid var(--line);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--sh-2);
  z-index: 99;
  margin-inline-start: 0;
}
.site-nav.is-open .site-nav__link {
  padding-block: var(--sp-3);
  border-block-end: 1px solid var(--line);
  border-radius: 0;
}
.site-nav.is-open li:last-child .site-nav__link { border-block-end: none; }

/* â”€â”€ 08. LANGUAGE SELECTOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lang-selector { position: relative; }

.lang-selector__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr);
  white-space: nowrap;
}
.lang-selector__btn:hover { border-color: var(--brand-300); background: var(--brand-050); }
.lang-selector__btn:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }

.lang-selector__dropdown {
  display: none;
  position: absolute;
  inset-block-start: calc(100% + 6px);
  inset-inline-end: 0;
  min-width: 188px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  padding: var(--sp-2);
  z-index: 200;
}
.lang-selector.is-open .lang-selector__dropdown { display: block; }

.lang-selector__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--ink-700);
  transition: background var(--tr);
}
.lang-selector__item:hover { background: var(--brand-050); color: var(--brand-700); }
.lang-selector__item--active { background: var(--brand-100); color: var(--brand-700); font-weight: 600; }

/* â”€â”€ 09. BREADCRUMB â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-block: var(--sp-3);
  font-size: var(--fs-sm);
  list-style: none;
  padding-inline: 0;
  margin: 0;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item::after {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A94A3' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/16px no-repeat;
  flex-shrink: 0;
  margin-inline: 2px;
}
.breadcrumb__item:last-child::after { display: none; }
[dir="rtl"] .breadcrumb__item::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A94A3' stroke-width='2'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.breadcrumb__link { color: var(--ink-500); text-decoration: none; transition: color var(--tr); }
.breadcrumb__link:hover { color: var(--brand-600); }
.breadcrumb__current { color: var(--ink-700); font-weight: 500; }

/* â”€â”€ 10. HERO VARIANTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Â·Â· Home hero Â·Â· */
.hero-home {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 65%, var(--brand-600) 100%);
  padding-block: var(--sp-24) var(--sp-16);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(45,108,184,.3) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(30,77,140,.25) 0%, transparent 50%);
  pointer-events: none;
}
.hero-home__inner { position: relative; z-index: 1; }
.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--action-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-block-end: var(--sp-4);
}
.hero-home__title {
  font-size: clamp(1.75rem, 5vw, var(--fs-3xl));
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-block-end: var(--sp-4);
  max-width: 720px;
}
.hero-home__subtitle {
  font-size: var(--fs-md);
  color: var(--brand-300);
  max-width: 560px;
  line-height: 1.65;
  margin-block-end: var(--sp-8);
}

/* Â·Â· Country hero (hub page) Â·Â· */
.hero-country {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 100%);
  border-block-end: 1px solid var(--brand-700);
  padding-block: var(--sp-8) var(--sp-10);
}
.hero-country__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-block-end: var(--sp-4);
}
.hero-country__flag {
  width: 48px; height: 36px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-2);
  flex-shrink: 0;
}
.hero-country__flag img { width: 100%; height: 100%; object-fit: cover; }
.hero-country__title { font-size: clamp(1.5rem, 3vw, var(--fs-2xl)); margin-block-end: var(--sp-2); color: white; }
.hero-country__subtitle { font-size: var(--fs-md); color: var(--brand-300); margin-block-end: 0; }

/* Â·Â· Article hero (info pages) Â·Â· */
.hero-article {
  background: var(--surface-2);
  border-block-end: 1px solid var(--line);
  padding-block: var(--sp-8);
}
.hero-article__title { font-size: clamp(1.35rem, 2.5vw, var(--fs-xl)); margin-block-end: var(--sp-2); }
.hero-article__subtitle { font-size: var(--fs-md); color: var(--ink-500); margin-block-end: 0; }

/* â”€â”€ 11. DESTINATION SEARCH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dest-search { position: relative; max-width: 580px; }
.dest-search__inner {
  display: flex;
  align-items: center;
  background: var(--surface);
  border-radius: var(--r-pill);
  padding: var(--sp-2);
  gap: var(--sp-2);
  box-shadow: 0 4px 24px rgba(11,31,58,.18), 0 1px 4px rgba(11,31,58,.12);
}
.dest-search__icon {
  flex-shrink: 0;
  color: var(--ink-400);
  padding-inline-start: var(--sp-2);
  display: flex; align-items: center;
}
.dest-search__input {
  flex: 1;
  border: none; outline: none;
  font-size: var(--fs-md);
  color: var(--ink-700);
  background: transparent;
  padding-block: var(--sp-2);
  min-width: 0;
}
.dest-search__input::placeholder { color: var(--ink-400); }

/* â”€â”€ 12. TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: var(--sp-3);
}
.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
  list-style: none; padding: 0; margin: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-500);
}
.trust-bar__item svg { color: var(--action-600); flex-shrink: 0; }

/* â”€â”€ 13. VISA SNAPSHOT CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.visa-snapshot {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  margin-block: var(--sp-6);
}
.visa-snapshot__header {
  background: var(--brand-800);
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.visa-snapshot__title {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: white;
  margin: 0;
}
.visa-snapshot__updated {
  font-size: var(--fs-xs);
  color: var(--brand-300);
  display: flex; align-items: center; gap: var(--sp-1);
  white-space: nowrap;
}
.visa-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.visa-snapshot__kpi {
  background: var(--surface);
  padding: var(--sp-5) var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.visa-snapshot__kpi-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-400);
}
.visa-snapshot__kpi-value {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}
.visa-snapshot__kpi-sub { font-size: var(--fs-xs); color: var(--ink-400); }
.visa-snapshot__kpi--highlight .visa-snapshot__kpi-value { color: var(--action-700); }
.visa-snapshot__footer {
  padding: var(--sp-4) var(--sp-6);
  background: var(--brand-050);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  border-block-start: 1px solid var(--line);
}
.visa-snapshot__eligibility {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  display: flex; align-items: center; gap: var(--sp-2);
}

/* â”€â”€ 14. COUNTRY CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.country-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  transition: box-shadow var(--tr), border-color var(--tr), transform var(--tr);
  box-shadow: var(--sh-1);
}
.country-card:hover {
  box-shadow: var(--sh-2);
  border-color: var(--brand-300);
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}
.country-card__flag {
  width: 40px; height: 30px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-1);
  flex-shrink: 0;
}
.country-card__flag img { width: 100%; height: 100%; object-fit: cover; }
.country-card__info { flex: 1; min-width: 0; }
.country-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-block-end: 2px;
}
.country-card__meta { font-size: var(--fs-xs); color: var(--ink-400); }
.country-card__arrow {
  color: var(--ink-400);
  flex-shrink: 0;
  transition: transform var(--tr), color var(--tr);
}
.country-card:hover .country-card__arrow { color: var(--brand-600); transform: translateX(2px); }
[dir="rtl"] .country-card:hover .country-card__arrow { transform: translateX(-2px); }

/* â”€â”€ 15. BADGES & PILLS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 2px var(--sp-2);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1.6;
}
.badge--brand   { background: var(--brand-100); color: var(--brand-700); }
.badge--success { background: var(--action-100); color: var(--action-700); }
.badge--warning { background: var(--accent-100); color: var(--accent-600); }
.badge--danger  { background: #FEECEC; color: var(--danger); }
.badge--official{
  background: var(--accent-100);
  color: var(--accent-600);
  border: 1px solid rgba(232,163,61,.4);
}
.badge--neutral { background: var(--surface-2); color: var(--ink-500); border: 1px solid var(--line); }

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink-700);
  text-decoration: none;
  transition: all var(--tr);
}
.pill-tag:hover {
  background: var(--brand-100);
  border-color: var(--brand-300);
  color: var(--brand-700);
  text-decoration: none;
}

/* â”€â”€ 16. BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; }

.btn--primary { background: var(--action-600); color: white; border-color: var(--action-600); }
.btn--primary:hover { background: var(--action-700); border-color: var(--action-700); color: white; text-decoration: none; }

.btn--secondary { background: transparent; color: var(--brand-700); border-color: var(--brand-700); }
.btn--secondary:hover { background: var(--brand-100); color: var(--brand-700); text-decoration: none; }

.btn--ghost { background: transparent; color: white; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: white; text-decoration: none; }

.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: var(--fs-sm); }
.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--fs-md); }

/* â”€â”€ 17. RESPONSIVE TABLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  margin-block: var(--sp-6);
}
.table-wrap table { min-width: 480px; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table caption {
  font-size: var(--fs-xs);
  color: var(--ink-400);
  text-align: start;
  padding: var(--sp-2) var(--sp-3);
  caption-side: bottom;
  border-block-start: 1px solid var(--line);
}
.data-table thead th {
  background: var(--brand-800);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: start;
  padding: var(--sp-3) var(--sp-4);
  white-space: nowrap;
}
.data-table thead th:first-child { border-start-start-radius: calc(var(--r-md) - 1px); }
.data-table thead th:last-child  { border-start-end-radius: calc(var(--r-md) - 1px); }
.data-table tbody tr {
  border-block-end: 1px solid var(--line);
  transition: background var(--tr);
}
.data-table tbody tr:last-child { border-block-end: none; }
.data-table tbody tr:hover { background: var(--brand-050); }
.data-table td {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--ink-700);
  vertical-align: top;
}
.data-table td strong { font-weight: 600; color: var(--ink-900); }
.td--number { font-family: var(--font-heading); font-weight: 600; color: var(--ink-900); white-space: nowrap; }
.td--free   { color: var(--success) !important; font-weight: 600; }
.row--highlight { background: var(--action-100); }
.row--highlight:hover { background: #c5eedf !important; }

/* â”€â”€ 18. HOW-TO STEPS TIMELINE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: var(--sp-4);
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  inset-inline-start: 19px;
  inset-block-start: 40px;
  inset-block-end: 0;
  width: 2px;
  background: var(--line);
}
.step:last-child::before { display: none; }
.step__number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-700);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  margin-block-start: 2px;
}
.step__content { flex: 1; padding-block-end: var(--sp-8); }
.step:last-child .step__content { padding-block-end: var(--sp-4); }
.step__title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--ink-900);
  margin-block-end: var(--sp-2);
}
.step__body { font-size: var(--fs-base); color: var(--ink-700); line-height: 1.7; }
.step__body p { margin-block-end: var(--sp-2); max-width: 60ch; }
.step__body p:last-child { margin-block-end: 0; }

/* â”€â”€ 19. FAQ ACCORDION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-list {
  display: flex; flex-direction: column; gap: var(--sp-2);
  list-style: none; padding: 0; margin-block: var(--sp-4);
}
.faq-item details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: box-shadow var(--tr);
}
.faq-item details:hover { box-shadow: var(--sh-1); }
.faq-item details[open] { border-color: var(--brand-300); box-shadow: var(--sh-1); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  gap: var(--sp-4);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--brand-500);
  transition: transform var(--tr);
}
.faq-item details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: var(--sp-4) var(--sp-6) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--ink-700);
  line-height: 1.75;
  border-block-start: 1px solid var(--line);
}
.faq-answer p { margin-block-end: var(--sp-3); max-width: 65ch; }
.faq-answer p:last-child { margin-block-end: 0; }

/* â”€â”€ 20. ALERT BOXES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.alert {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-md);
  border-inline-start: 4px solid;
  margin-block: var(--sp-6);
}
.alert__icon { flex-shrink: 0; width: 20px; height: 20px; margin-block-start: 1px; }
.alert__content { flex: 1; }
.alert__title {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  margin-block-end: var(--sp-1);
}
.alert__body { font-size: var(--fs-sm); line-height: 1.65; }
.alert__body p { margin-block-end: 0; max-width: none; }

.alert--info     { background: var(--brand-050); border-color: var(--brand-500); color: var(--brand-800); }
.alert--info     .alert__icon { color: var(--brand-500); }
.alert--warning  { background: #FFFBF0; border-color: var(--warning); color: #5A3E00; }
.alert--warning  .alert__icon { color: var(--warning); }
.alert--official { background: var(--accent-100); border-color: var(--accent-600); color: #5A3B00; }
.alert--official .alert__icon { color: var(--accent-600); }
.alert--danger   { background: #FFF5F5; border-color: var(--danger); color: #7A1F1F; }
.alert--danger   .alert__icon { color: var(--danger); }
.alert--success  { background: var(--action-100); border-color: var(--success); color: #054B36; }
.alert--success  .alert__icon { color: var(--success); }

/* â”€â”€ 21. CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 100%);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-block: var(--sp-8);
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: white;
  margin-block-end: var(--sp-2);
}
.cta-banner__body { color: var(--brand-300); font-size: var(--fs-base); margin-block-end: 0; max-width: 55ch; }
.cta-banner__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; flex-shrink: 0; }

/* â”€â”€ 22. TOC â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toc {
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  margin-block: var(--sp-6);
}
.toc__title {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--ink-900);
  margin-block-end: var(--sp-3);
}
.toc__list {
  list-style: none; padding: 0; margin: 0;
  columns: 2; column-gap: var(--sp-8);
}
.toc__item { break-inside: avoid; }
.toc__item a {
  font-size: var(--fs-sm);
  color: var(--brand-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-block: 3px;
  transition: color var(--tr);
}
.toc__item a::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-300);
  flex-shrink: 0;
}
.toc__item a:hover { color: var(--brand-800); text-decoration: underline; }

/* â”€â”€ 23. RELATED LINKS BLOCK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-links {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-5);
  margin-block: var(--sp-4);
}
.related-links__title {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-900);
  margin-block-end: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.related-links__list { list-style: none; padding: 0; margin: 0; }
.related-links__item a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--brand-700);
  text-decoration: none;
  padding-block: var(--sp-2);
  border-block-end: 1px solid var(--line);
  transition: color var(--tr);
}
.related-links__item:last-child a { border-block-end: none; }
.related-links__item a::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4D8C' stroke-width='2.5'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/14px no-repeat;
  flex-shrink: 0;
}
[dir="rtl"] .related-links__item a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4D8C' stroke-width='2.5'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.related-links__item a:hover { color: var(--brand-900); }

/* â”€â”€ 24. PAGE LAYOUT (article + aside) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
  padding-block: var(--sp-8);
}
.page-layout__main { min-width: 0; }
.page-layout__aside {
  position: sticky;
  inset-block-start: calc(var(--header-h) + var(--sp-4));
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-1);
}
.sidebar-card__head {
  background: var(--surface-2);
  padding: var(--sp-3) var(--sp-4);
  border-block-end: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sidebar-card__body { padding: var(--sp-4); }

/* Continent separator */
.continent-label {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-400);
  margin-block: var(--sp-8) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.continent-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* â”€â”€ 25. DIRECTORY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dir-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--sp-3); }

.dir-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--tr);
  box-shadow: var(--sh-1);
}
.dir-card:hover {
  border-color: var(--brand-300);
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}
.dir-card__flag {
  width: 56px; height: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--sh-1);
}
.dir-card__flag img { width: 100%; height: 100%; object-fit: cover; }
.dir-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-900);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-pill);
  padding: var(--sp-2) var(--sp-4);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.search-bar:focus-within {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(45,108,184,.12);
}
.search-bar__input {
  flex: 1;
  border: none; outline: none;
  font-size: var(--fs-base);
  background: transparent;
  color: var(--ink-700);
  min-width: 0;
}
.search-bar__input::placeholder { color: var(--ink-400); }

/* â”€â”€ 26. FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-400);
  padding-block: var(--sp-16) var(--sp-8);
  margin-block-start: var(--sp-24);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr);
  gap: var(--sp-8);
  padding-block-end: var(--sp-8);
  border-block-end: 1px solid rgba(255,255,255,.08);
}
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  margin-block-end: var(--sp-4);
}
.footer-brand__name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: white;
}
.footer-brand__name span { color: var(--brand-300); }
.footer-brand__desc {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--ink-400);
  max-width: 22ch;
  margin-block-end: var(--sp-4);
}
.footer-col__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-block-end: var(--sp-4);
}
.footer-col__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.footer-col__list a {
  font-size: var(--fs-sm);
  color: var(--ink-400);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color var(--tr);
}
.footer-col__list a:hover { color: white; }
.footer-col__list img { border-radius: 2px; flex-shrink: 0; }
.site-footer__bottom {
  padding-block-start: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-legal {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--sp-4);
  font-size: var(--fs-xs); color: var(--ink-500);
}
.footer-legal a { color: var(--ink-400); text-decoration: none; transition: color var(--tr); }
.footer-legal a:hover { color: white; }
.footer-copyright { font-size: var(--fs-xs); color: var(--ink-500); }

/* â”€â”€ 27. BACK TO TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.back-to-top {
  position: fixed;
  inset-block-end: var(--sp-6);
  inset-inline-end: var(--sp-6);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-700);
  color: white;
  border: none;
  box-shadow: var(--sh-2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  z-index: 50;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--brand-600); box-shadow: var(--sh-3); }

/* â”€â”€ 28. ARTICLE BODY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-body { font-size: var(--fs-base); line-height: 1.75; color: var(--ink-700); }
.article-body h2 {
  font-size: var(--fs-xl);
  padding-block-end: var(--sp-3);
  border-block-end: 2px solid var(--brand-100);
  margin-block-end: var(--sp-5);
}
.article-body h3 { color: var(--brand-800); }
.article-body ul, .article-body ol { margin-block: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.article-body li > strong { color: var(--ink-900); }

/* Flag chip */
.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 3px var(--sp-3) 3px var(--sp-1);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  transition: all var(--tr);
}
.flag-chip:hover { border-color: var(--brand-300); background: var(--brand-050); color: var(--brand-700); text-decoration: none; }
.flag-chip__img { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; display: block; }

/* â”€â”€ 28b. HERO STATS ROW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-stats {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-block-start: var(--sp-8);
  padding-block-start: var(--sp-6);
  border-block-start: 1px solid rgba(255,255,255,.12);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat__value {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--brand-300);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* â”€â”€ 28c. COUNTRY CARD BADGE INSIDE META â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.country-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.country-card__badge--evisa  { background: #DCF6EC; color: #0B7A53; }
.country-card__badge--free   { background: #E7EFFA; color: #173A6B; }
.country-card__badge--voa    { background: #FCF1DE; color: #C9871F; }
.country-card__badge--visa   { background: #F6F8FB; color: #5A6675; }

/* Directory tile with description (destination index) */
.dir-tile {
  display: flex; flex-direction: column; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  text-decoration: none; color: inherit;
  transition: box-shadow var(--tr), border-color var(--tr), transform var(--tr);
}
.dir-tile:hover { box-shadow: var(--sh-2); border-color: var(--brand-300); transform: translateY(-2px); color: inherit; text-decoration: none; }
.dir-tile:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
.dir-tile__head { display: flex; align-items: center; gap: var(--sp-3); }
.dir-tile__flag { width: 34px; height: 25px; border-radius: 4px; overflow: hidden; box-shadow: var(--sh-1); flex-shrink: 0; }
.dir-tile__flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dir-tile__name { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-md); color: var(--ink-900); flex: 1; min-width: 0; line-height: 1.2; }
.dir-tile__arrow { color: var(--brand-300); flex-shrink: 0; transition: color var(--tr), transform var(--tr); }
.dir-tile:hover .dir-tile__arrow { color: var(--brand-600); transform: translateX(2px); }
[dir="rtl"] .dir-tile:hover .dir-tile__arrow { transform: translateX(-2px); }
.dir-tile__desc { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.55; margin: 0; }

/* ── Visa search selector (nationality × destination × purpose) ── */
#visa-search-container { margin-block-start: var(--sp-6); }
.visa-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--sp-3);
  align-items: end;
  background: var(--surface);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  max-width: 860px;
  text-align: start;
}
.visa-search-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.visa-search-field label {
  font-size: var(--fs-xs); font-weight: 700; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: .04em;
}
.visa-search-field select {
  height: 46px; width: 100%; padding: 0 var(--sp-3);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: var(--fs-sm); color: var(--ink-900);
  background: var(--surface); cursor: pointer; appearance: auto;
}
.visa-search-field select:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 1px; }
.visa-search-btn-wrap { justify-content: flex-end; }
#vs-btn {
  height: 46px; padding-inline: var(--sp-5); white-space: nowrap;
  background: var(--action-600); color: #fff; border: none;
  border-radius: var(--r-sm); font-family: var(--font-heading);
  font-weight: 700; font-size: var(--fs-sm); cursor: pointer;
  transition: background var(--tr);
}
#vs-btn:hover { background: var(--action-700); }
#vs-btn:focus-visible { outline: 2px solid var(--brand-050); outline-offset: 2px; }
.visa-result-error {
  margin-block-start: var(--sp-3); padding: var(--sp-3) var(--sp-4);
  background: var(--accent-100); color: var(--accent-600);
  border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 600; text-align: start;
}
@media (max-width: 720px) {
  .visa-search-form { grid-template-columns: 1fr; }
  #vs-btn { width: 100%; }
}

/* ── Visa result page (visa-result.html, rendered by visa-search.js) ── */
.vr-container { max-width: 820px; margin-inline: auto; }
.vr-header {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  background: var(--brand-050); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-5); margin-block-end: var(--sp-5); flex-wrap: wrap;
}
.vr-flag { font-size: 40px; line-height: 1; border-radius: 4px; flex-shrink: 0; }
.vr-title { font-size: var(--fs-xl); margin: 0 0 var(--sp-1); color: var(--ink-900); }
.vr-subtitle { color: var(--brand-700); font-weight: 600; margin: 0; }
.vr-badge-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.vr-badge { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-2) var(--sp-4); }
.vr-badge-label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--ink-400); font-weight: 700; }
.vr-badge-value { font-family: var(--font-heading); font-weight: 700; color: var(--action-700); }
.vr-body { display: flex; flex-direction: column; gap: var(--sp-4); }
.vr-section { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); }
.vr-section-title { font-family: var(--font-heading); font-weight: 700; color: var(--ink-900); margin-block-end: var(--sp-2); display: flex; align-items: center; gap: var(--sp-2); }
.vr-section p { margin: 0; color: var(--ink-700); line-height: 1.6; }
.vr-steps, .vr-docs { margin: 0; padding-inline-start: 1.25rem; color: var(--ink-700); line-height: 1.7; }
.vr-steps li, .vr-docs li { margin-block-end: 4px; }
.vr-fee-row { display: flex; gap: var(--sp-6); flex-wrap: wrap; }
.vr-fee-label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .04em; color: var(--ink-400); font-weight: 700; }
.vr-fee-value { font-weight: 600; color: var(--ink-900); }
.vr-warning { border-inline-start: 3px solid var(--danger); background: #FEECEC; }
.vr-info { border-inline-start: 3px solid var(--info); background: var(--brand-100); }
.vr-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-block-start: var(--sp-2); }
.vr-actions .btn, .vr-container .btn {
  display: inline-flex; align-items: center; height: 44px; padding-inline: var(--sp-5);
  border-radius: var(--r-sm); font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-sm);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
}
.vr-actions .btn-primary, .vr-container .btn-primary { background: var(--action-600); color: #fff; }
.vr-actions .btn-primary:hover { background: var(--action-700); }
.vr-actions .btn-secondary { background: var(--brand-600); color: #fff; }
.vr-actions .btn-outline { background: transparent; border-color: var(--line); color: var(--brand-700); }
.vr-error { padding: var(--sp-6); text-align: center; color: var(--ink-700); }

/* â”€â”€ 28d. VISA SNAPSHOT 5-col â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.visa-snapshot__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .visa-snapshot__grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .visa-snapshot__grid--5 { grid-template-columns: repeat(2, 1fr); }
}

/* â”€â”€ 28e. ARTICLE H2 ANCHOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.anchor-link {
  display: inline-flex;
  opacity: 0;
  margin-inline-start: .4em;
  vertical-align: middle;
  color: var(--brand-300);
  text-decoration: none;
  transition: opacity var(--tr), color var(--tr);
}
h2:hover .anchor-link,
h2:focus-within .anchor-link { opacity: 1; }
.anchor-link:hover { color: var(--brand-600); }

/* â”€â”€ 32. TRAVEL STYLE â€” Photo cards & hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Hero travel â€” photo bg, warm overlay */
.hero-travel {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-travel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(10,20,40,.65) 0%,
    rgba(10,20,40,.25) 100%);
}
.hero-travel__inner {
  position: relative; z-index: 1;
  padding-block: var(--sp-16);
  width: 100%;
}
.hero-travel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--action-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-block-end: var(--sp-4);
}
.hero-travel__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  margin-block-end: var(--sp-3);
  max-width: 640px;
}
.hero-travel__sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin-block-end: var(--sp-8);
}

/* Destination photo card â€” travel magazine style */
.dest-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  transition: transform var(--tr), box-shadow var(--tr);
  background: var(--ink-900);
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  text-decoration: none;
}
.dest-card__photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.dest-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.dest-card:hover .dest-card__photo img { transform: scale(1.06); }
.dest-card__flag {
  position: absolute;
  inset-block-start: var(--sp-3);
  inset-inline-start: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.18);
}
.dest-card__flag img,
.dest-card__flag .fi {
  width: 22px; height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}
.dest-card__flag-name {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: white;
  letter-spacing: .02em;
}
.dest-card__visa-badge {
  position: absolute;
  inset-block-end: var(--sp-3);
  inset-inline-end: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  letter-spacing: .03em;
}
.dest-card__visa-badge--evisa  { background: #0E9F6E; color: white; }
.dest-card__visa-badge--voa    { background: #E8A33D; color: white; }
.dest-card__visa-badge--free   { background: #2D6CB8; color: white; }
.dest-card__visa-badge--visa   { background: rgba(0,0,0,.55); color: white; backdrop-filter:blur(4px); }
.dest-card__body {
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  flex: 1;
}
.dest-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--ink-900);
  margin-block-end: 4px;
  padding-inline: 0;
}
.dest-card__meta {
  font-size: var(--fs-xs);
  color: var(--ink-400);
  padding-inline: 0;
}

/* Dest grid â€” auto responsive */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .dest-card__photo { height: 130px; }
}

/* Section heading travel style */
.section-heading {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-block: var(--sp-12) var(--sp-6);
}
.section-heading__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--brand-100);
  color: var(--brand-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section-heading__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--ink-900);
  margin: 0;
}
.section-heading__sub {
  font-size: var(--fs-sm);
  color: var(--ink-400);
  margin: 0;
}
.section-heading--warm .section-heading__icon {
  background: #FCF1DE;
  color: #C9871F;
}
.section-heading--green .section-heading__icon {
  background: var(--action-100);
  color: var(--action-700);
} â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-muted  { color: var(--ink-500); }
.text-sm     { font-size: var(--fs-sm); }
.text-xs     { font-size: var(--fs-xs); }
.font-bold   { font-weight: 700; }

/* â”€â”€ 30. DARK MODE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* DÃ‰SACTIVÃ‰ â€” les pages de contenu ont trop de couleurs inline
   incompatibles avec le dark mode. On force le mode clair globalement.
   RÃ©activer uniquement si toutes les couleurs inline sont purgÃ©es. */
/*
@media (prefers-color-scheme: dark) {
  :root {
    --surface:   #0F1623;
    --surface-2: #161D2C;
    --line:      #263044;
    --ink-900:   #EFF2F7;
    --ink-700:   #C4CCd8;
    --ink-500:   #7A8496;
    --ink-400:   #4F5C6E;
    --brand-050: #0C1828;
    --brand-100: #122035;
    --sh-1: 0 1px 3px rgba(0,0,0,.3),  0 1px 2px rgba(0,0,0,.2);
    --sh-2: 0 4px 12px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.25);
    --sh-3: 0 8px 24px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.3);
  }
  .site-header  { background: var(--surface-2); }
  .trust-bar    { background: var(--surface-2); }
  .hero-country { background: var(--surface-2); }
  .hero-article { background: var(--surface-2); }
  .section--breadcrumb { background: var(--surface-2); }
  .site-footer  { background: #07101C; }
  .data-table thead th { background: #0D1E33; }
  .lang-selector__btn { background: var(--surface-2); }
}
*/

/* Force light mode on all pages */
:root { color-scheme: light; }

/* â”€â”€ 31. RESPONSIVE BREAKPOINTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â‰¥1025 â€” Desktop: handled inline via defaults above */

/* â‰¤1024 â€” Tablet + Mobile: stacked aside */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-layout__aside { position: static; }
  .site-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .visa-snapshot__grid { grid-template-columns: repeat(2, 1fr); }
}

/* â‰¤768 â€” Tablet */
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__top > .footer-brand { grid-column: 1 / -1; }
  .cta-banner { padding: var(--sp-6) var(--sp-6); flex-direction: column; gap: var(--sp-4); }
  .cta-banner__actions { width: 100%; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .toc__list { columns: 1; }
}

/* â‰¤480 â€” Mobile */
@media (max-width: 480px) {
  :root { --gutter: 1rem; }
  h1 { font-size: var(--fs-xl); }
  h2 { font-size: var(--fs-lg); }
  .section { padding-block: var(--sp-12); }
  .section--lg { padding-block: var(--sp-16); }
  .hero-home { padding-block: var(--sp-12) var(--sp-8); }
  .hero-home__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero-home__subtitle { font-size: var(--fs-base); }
  .visa-snapshot__grid { grid-template-columns: 1fr 1fr; }
  .visa-snapshot__kpi { padding: var(--sp-4); }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .grid--auto   { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .grid--auto-lg{ grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__top > .footer-brand { grid-column: 1 / -1; }
  .cta-banner { border-radius: var(--r-md); padding: var(--sp-5); }
  .cta-banner__title { font-size: var(--fs-lg); }
  .dest-search__inner { border-radius: var(--r-md); }
}

