/* Shared shell for the two legacy multi-country guides. Keep this small: the
   article body intentionally owns its page-specific presentation inline. */
:root {
  --legacy-bg: #050508;
  --legacy-text: #e2e8f0;
  --legacy-muted: #94a3b8;
  --legacy-border: rgba(255, 255, 255, 0.1);
  --legacy-accent: #a78bfa;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--legacy-bg);
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--legacy-bg);
  color: var(--legacy-text);
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.6;
}

.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-bottom: 1px solid var(--legacy-border);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--legacy-text);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.lp-logo svg {
  display: block;
  width: 40px;
  height: 40px;
}

.lp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.lp-nav a,
.blog-post a {
  color: var(--legacy-accent);
}

.lp-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.lp-nav a:hover,
.lp-nav a:focus-visible,
.blog-post a:hover,
.blog-post a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post {
  width: 100%;
}

.lp-footer {
  border-top: 1px solid var(--legacy-border);
}

.footer-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.footer-col p {
  margin: 0 0 4px;
}

@media (max-width: 640px) {
  .lp-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .lp-nav {
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-grid {
    padding: 20px 16px;
  }
}
