/* ============================================================
   expreg.css — CannBus Trade Regulations (Import/Export)
   cannbus.org · Cannabis Import & Export Regulations
   Teal brand theme · White background · DM Sans + Playfair
   Updated: March 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --teal-deep:    #0d3a3a;
  --teal-mid:     #1a5c5c;
  --teal-bright:  #2a9090;
  --teal-light:   #4ab8b8;
  --teal-pale:    #e6f5f5;
  --teal-xpale:   #f0fafa;
  --white:        #ffffff;
  --off-white:    #f8fdfd;
  --red:          #c8401b;
  --red-pale:     #fff0ec;
  --amber:        #c8881b;
  --amber-pale:   #fff8ec;
  --green:        #1e7a3a;
  --green-pale:   #edf7f0;
  --purple:       #6b21a8;
  --purple-pale:  #f5f0ff;
  --blue:         #1d5fa8;
  --blue-pale:    #eef4ff;
  --text:         #1a2e2e;
  --text-muted:   #4a6868;
  --border:       rgba(42, 144, 144, 0.18);
  --shadow:       0 2px 16px rgba(13, 58, 58, 0.09);
  --shadow-md:    0 6px 32px rgba(13, 58, 58, 0.13);
  --shadow-lg:    0 12px 56px rgba(13, 58, 58, 0.16);
  --radius:       10px;
  --radius-lg:    14px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal-bright); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--teal-mid); }
strong { font-weight: 700; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.tr-bc-bar {
  width: 100%;
  background: var(--teal-xpale);
  border-bottom: 1px solid rgba(42, 144, 144, 0.20);
  position: relative;
  z-index: 80;
}

.tr-bc-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
}

.tr-bc-bar .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.58rem 0;
  margin: 0;
  list-style: none;
  background: transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  gap: 0;
}

.tr-bc-bar .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 0.44rem;
  color: var(--teal-light);
  font-size: 0.9rem;
  font-weight: 700;
  float: none;
  line-height: 1;
}

.tr-bc-bar .breadcrumb-item a {
  color: var(--teal-bright);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: color 0.15s ease;
}

.tr-bc-bar .breadcrumb-item a:hover {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tr-bc-bar .breadcrumb-item.active {
  color: var(--teal-mid);
  font-weight: 600;
}

.tr-bc-bar .bc-home { font-size: 0.80rem; line-height: 1; }

/* ── Site Header ────────────────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 50%, var(--teal-bright) 100%);
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 15% 50%, rgba(74, 184, 184, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(42, 144, 144, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-bright), var(--teal-light));
  opacity: 0.5;
}

.hdr-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.hdr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.site-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}

.site-header h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hdr-sub {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.97rem;
  max-width: 860px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hdr-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hdr-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Country Header Gradient Variants */
.hdr-us    { background: linear-gradient(135deg, #0d3a3a 0%, #1a5c5c 45%, #2a9090 100%); }
.hdr-pr    { background: linear-gradient(135deg, #1a0040 0%, #4a148c 45%, #7b1fa2 100%); }
.hdr-ca    { background: linear-gradient(135deg, #0d2e0d 0%, #1b5e20 45%, #2e7d32 100%); }
.hdr-mx    { background: linear-gradient(135deg, #3e0000 0%, #b71c1c 45%, #c62828 100%); }
.hdr-cu    { background: linear-gradient(135deg, #1a0a00 0%, #bf360c 45%, #d84315 100%); }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 52px 0; }
.section-alt { background: var(--white); }

/* ── Section Header ─────────────────────────────────────── */
.sec-hdr {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.sec-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-bright));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sec-title h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--teal-deep);
  margin-bottom: 4px;
}

.sec-title p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Status Banner ──────────────────────────────────────── */
.status-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 2px solid;
}

.status-pill.prohibited { background: var(--red-pale);    color: var(--red);        border-color: #e57c66; }
.status-pill.restricted { background: var(--amber-pale);  color: #8a4e00;           border-color: #e0b070; }
.status-pill.controlled { background: var(--blue-pale);   color: var(--blue);       border-color: #93b8e0; }
.status-pill.medical    { background: var(--green-pale);  color: var(--green);      border-color: #78c494; }
.status-pill.note       { background: var(--teal-pale);   color: var(--teal-mid);   border-color: var(--teal-light); }
.status-pill.severe     { background: #1a0000;            color: #ff8a80;           border-color: var(--red); }

/* ── Info Cards ─────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.info-card h4 {
  font-size: 0.94rem;
  color: var(--teal-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.info-card p, .info-card li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card ul {
  padding-left: 16px;
  margin-top: 6px;
}

.info-card ul li { margin-bottom: 4px; }

/* Card accent borders */
.info-card.red    { border-top: 3px solid var(--red); }
.info-card.amber  { border-top: 3px solid var(--amber); }
.info-card.green  { border-top: 3px solid var(--green); }
.info-card.teal   { border-top: 3px solid var(--teal-bright); }
.info-card.purple { border-top: 3px solid var(--purple); }
.info-card.blue   { border-top: 3px solid var(--blue); }

/* ── Alert / Warning Boxes ──────────────────────────────── */
.alert-box {
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.alert-box .alert-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-box .alert-body { flex: 1; }
.alert-box .alert-body strong { display: block; margin-bottom: 4px; font-size: 0.93rem; }
.alert-box .alert-body p { font-size: 0.87rem; margin-bottom: 0; line-height: 1.6; }
.alert-box ul { font-size: 0.87rem; padding-left: 18px; margin-top: 6px; }
.alert-box ul li { margin-bottom: 4px; }

.alert-box.danger   { background: var(--red-pale);    border: 1.5px solid #e57c66; }
.alert-box.danger   .alert-body strong { color: var(--red); }
.alert-box.danger   .alert-body p, .alert-box.danger ul { color: #7a2010; }

.alert-box.warning  { background: var(--amber-pale);  border: 1.5px solid #e0b070; }
.alert-box.warning  .alert-body strong { color: #8a4e00; }
.alert-box.warning  .alert-body p, .alert-box.warning ul { color: #6a3c00; }

.alert-box.info     { background: var(--teal-pale);   border: 1.5px solid var(--teal-light); }
.alert-box.info     .alert-body strong { color: var(--teal-mid); }
.alert-box.info     .alert-body p, .alert-box.info ul { color: var(--text-muted); }

.alert-box.success  { background: var(--green-pale);  border: 1.5px solid #78c494; }
.alert-box.success  .alert-body strong { color: var(--green); }
.alert-box.success  .alert-body p, .alert-box.success ul { color: #155228; }

.alert-box.critical {
  background: #1a0000;
  border: 2px solid var(--red);
}
.alert-box.critical .alert-body strong { color: #ff6b5b; font-size: 1rem; }
.alert-box.critical .alert-body p, .alert-box.critical ul { color: #ffcdd2; }

/* ── Regulation Block ───────────────────────────────────── */
.reg-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.reg-block-head {
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reg-block-head .rh-icon { font-size: 1.3rem; }

.reg-block-head h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
}

.reg-block-head .rh-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.reg-block-head.amber-head {
  background: linear-gradient(90deg, #8a4e00 0%, #c8881b 100%);
}

.reg-block-head.red-head {
  background: linear-gradient(90deg, #7a1c1c 0%, #c8401b 100%);
}

.reg-block-head.green-head {
  background: linear-gradient(90deg, #0e4020 0%, #1e7a3a 100%);
}

.reg-block-head.purple-head {
  background: linear-gradient(90deg, #3b0d6e 0%, #6b21a8 100%);
}

.reg-block-body {
  padding: 22px;
}

.reg-block-body ul {
  list-style: none;
  padding: 0;
}

.reg-block-body ul li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.90rem;
  color: var(--text);
  border-bottom: 1px solid var(--teal-xpale);
  line-height: 1.55;
}

.reg-block-body ul li:last-child { border-bottom: none; }

.reg-block-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--teal-bright);
  font-size: 0.80rem;
}

.reg-block-body ul li strong {
  color: var(--teal-deep);
}

.reg-block-body ul.doc-list li::before { content: '📄'; font-style: normal; font-size: 0.82rem; top: 7px; }
.reg-block-body ul.agency-list li::before { content: '🏛️'; font-style: normal; font-size: 0.80rem; top: 7px; }
.reg-block-body ul.penalty-list li::before { content: '⚠️'; font-style: normal; font-size: 0.80rem; top: 7px; }
.reg-block-body ul.check-list li::before { content: '✅'; font-style: normal; font-size: 0.80rem; top: 7px; }

/* ── Document Table ─────────────────────────────────────── */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin: 16px 0;
}

.doc-table thead th {
  background: var(--teal-deep);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.doc-table tbody tr { border-bottom: 1px solid var(--teal-pale); }
.doc-table tbody tr:hover { background: var(--teal-xpale); }

.doc-table tbody td {
  padding: 10px 14px;
  vertical-align: top;
  color: var(--text);
  line-height: 1.5;
}

.doc-table tbody td:first-child { font-weight: 600; color: var(--teal-mid); }

/* ── Agency Cards ───────────────────────────────────────── */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.agency-card {
  background: var(--teal-xpale);
  border: 1px solid var(--teal-pale);
  border-left: 4px solid var(--teal-bright);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.agency-card .ag-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 2px;
}

.agency-card .ag-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-mid);
  margin-bottom: 6px;
}

.agency-card .ag-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Key Points Highlight ───────────────────────────────── */
.key-points {
  background: linear-gradient(135deg, #fff8e6, #fffbf0);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 24px 0;
}

.key-points h4 {
  color: #8a4e00;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-points ul {
  list-style: none;
  padding: 0;
}

.key-points ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.89rem;
  color: #5a3000;
  line-height: 1.55;
  border-bottom: 1px solid rgba(200, 136, 27, 0.15);
}

.key-points ul li:last-child { border-bottom: none; }

.key-points ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 0.80rem;
}

/* ── Quick-Facts Strip ──────────────────────────────────── */
.facts-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal-bright);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.fact-card.red    { border-top-color: var(--red); }
.fact-card.amber  { border-top-color: var(--amber); }
.fact-card.green  { border-top-color: var(--green); }
.fact-card.purple { border-top-color: var(--purple); }

.fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 5px;
}

.fact-card.red    .fact-num { color: var(--red); }
.fact-card.amber  .fact-num { color: var(--amber); }
.fact-card.green  .fact-num { color: var(--green); }
.fact-card.purple .fact-num { color: var(--purple); }

.fact-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ── Country Index Cards ────────────────────────────────── */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--text);
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text);
}

.cc-head {
  padding: 24px 22px 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cc-head::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cc-flag { font-size: 2.2rem; display: block; margin-bottom: 8px; }
.cc-name { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; margin-bottom: 4px; }
.cc-status-line { font-size: 0.78rem; opacity: 0.85; font-weight: 500; }

.cc-body { padding: 18px 22px 20px; }

.cc-status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cc-status-pill.prohibited { background: var(--red-pale);   color: var(--red); }
.cc-status-pill.medical    { background: var(--green-pale); color: var(--green); }
.cc-status-pill.restricted { background: var(--amber-pale); color: #8a4e00; }
.cc-status-pill.federal    { background: var(--teal-pale);  color: var(--teal-mid); }

.cc-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }

.cc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cc-tag {
  background: var(--teal-xpale);
  color: var(--teal-mid);
  border: 1px solid var(--teal-pale);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.70rem;
  font-weight: 600;
}

.cc-cta {
  display: block;
  text-align: center;
  background: var(--teal-pale);
  color: var(--teal-mid);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px;
  border-top: 1px solid var(--teal-pale);
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
}

.country-card:hover .cc-cta {
  background: var(--teal-bright);
  color: #fff;
}

/* Country card header backgrounds */
.cc-head.us     { background: linear-gradient(135deg, #0d3a3a, #2a9090); }
.cc-head.pr     { background: linear-gradient(135deg, #1a0040, #7b1fa2); }
.cc-head.canada { background: linear-gradient(135deg, #0d2e0d, #2e7d32); }
.cc-head.mexico { background: linear-gradient(135deg, #3e0000, #c62828); }
.cc-head.cuba   { background: linear-gradient(135deg, #1a0a00, #d84315); }

/* ── Callout Box ────────────────────────────────────────── */
.callout {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  color: #fff;
  margin: 28px 0;
}

.callout h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.callout p  { color: rgba(255, 255, 255, 0.82); font-size: 0.88rem; line-height: 1.65; margin-bottom: 0; }

/* ── Disclaimer ─────────────────────────────────────────── */
.disclaimer-box {
  background: var(--red-pale);
  border: 2px solid #e57c66;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.disclaimer-box h4 {
  color: var(--red);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.disclaimer-box p, .disclaimer-box li {
  font-size: 0.87rem;
  color: #7a2010;
  line-height: 1.6;
}

/* ── References ─────────────────────────────────────────── */
.references {
  background: var(--teal-xpale);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
}

.references h4 {
  font-size: 0.92rem;
  color: var(--teal-deep);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--teal-pale);
}

.references ol {
  padding-left: 20px;
}

.references ol li {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.references a {
  color: var(--teal-bright);
  word-break: break-all;
}

.doc-updated {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--teal-pale);
}

/* ── Site Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.80rem;
  line-height: 1.65;
}

.site-footer a { color: var(--teal-light); }
.site-footer strong { color: #fff; }

/* ── Fade-in Animation ──────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fi.vis { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .country-grid { grid-template-columns: 1fr 1fr; }
  .facts-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767.98px) {
  .tr-bc-inner { padding: 0 1.1rem; }
  .tr-bc-bar .breadcrumb { font-size: 0.70rem; padding: 0.44rem 0; }
  .tr-bc-bar .breadcrumb-item + .breadcrumb-item::before { padding: 0 0.28rem; }
  .site-header { padding: 46px 0 38px; }
  .hdr-meta { gap: 7px; }
  .facts-strip { grid-template-columns: 1fr 1fr; }
  .doc-table { font-size: 0.78rem; }
  .doc-table thead th, .doc-table tbody td { padding: 8px 10px; }
}

@media (max-width: 600px) {
  .info-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .agency-grid { grid-template-columns: 1fr; }
  .facts-strip { grid-template-columns: 1fr 1fr; }
  .status-banner { flex-direction: column; }
}

@media (max-width: 400px) {
  .tr-bc-bar .breadcrumb-item:not(:first-child):not(:last-child) a {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
  }
}
