:root {
  --bg: #f4f8fc;
  --bg-soft: #eef5fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-tint: rgba(255, 255, 255, 0.86);
  --line: #dbe6f2;
  --line-strong: #c8d7e8;
  --text: #1f2f46;
  --muted: #58708f;
  --title: #18324f;
  --primary: #2f80ed;
  --primary-dark: #1d68d1;
  --primary-soft: #eaf3ff;
  --green: #21b573;
  --green-soft: #e8fbf2;
  --shadow: 0 18px 40px rgba(20, 58, 95, 0.08);
  --shadow-soft: 0 12px 24px rgba(20, 58, 95, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shell-width: 1280px;
  --shell-gutter: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(33, 181, 115, 0.1), transparent 22%),
    var(--bg);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-orb {
  position: fixed;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.3;
}

.page-orb-left {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.28), transparent 68%);
}

.page-orb-right {
  right: -120px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(33, 181, 115, 0.24), transparent 68%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  overflow: visible;
  padding: 20px 0 0;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.95), rgba(244, 248, 252, 0.78) 68%, rgba(244, 248, 252, 0));
}

.site-shell {
  width: calc(100% - (var(--shell-gutter) * 2));
  max-width: var(--shell-width);
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  position: relative;
  z-index: 5001;
  overflow: visible;
  isolation: isolate;
  padding: 16px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(242, 248, 255, 0.96);
  box-shadow: 0 12px 32px rgba(20, 58, 95, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.navbar .container {
  max-width: none;
  padding: 0;
}

.navbar-brand {
  color: var(--title);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.navbar-brand strong,
.navbar-brand small {
  display: block;
}

.navbar-brand strong {
  color: var(--title);
  font-size: 0.98rem;
}

.navbar-brand small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.navbar-toggler {
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.12);
}

.navbar-toggler-icon {
  filter: none;
}

.navbar-nav {
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.75rem 0.95rem !important;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.language-dropdown {
  position: relative;
  z-index: 5002;
}

.language-dropdown summary {
  list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
  display: none;
}

.language-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 184px;
  padding: 0.65rem 0.9rem 0.65rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f5faff);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.language-trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid #6d83a1;
  border-bottom: 2px solid #6d83a1;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.language-dropdown[open] .language-trigger::after {
  transform: rotate(-135deg) translateY(-2px);
}

.language-trigger-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.language-trigger-title {
  color: #7c91ab;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.language-trigger-label strong {
  color: var(--title);
  font-size: 0.9rem;
}

.language-trigger-short {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 5003;
  min-width: 260px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.language-menu-head {
  padding: 0.35rem 0.5rem 0.65rem;
  color: #7c91ab;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  color: var(--text);
}

.language-option strong,
.language-option small,
.language-option em {
  display: block;
  font-style: normal;
}

.language-option strong {
  color: var(--title);
  font-size: 0.95rem;
}

.language-option small {
  color: var(--muted);
  font-size: 0.78rem;
}

.language-option em {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #f4f8fd;
  color: #6b84a5;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-option:hover,
.language-option.active {
  background: linear-gradient(180deg, #f7fbff, #eef6ff);
}

.language-option.active {
  box-shadow: inset 0 0 0 1px rgba(47, 128, 237, 0.18);
}

.breadcrumb-wrap {
  padding-top: 1.25rem;
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(219, 230, 242, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.breadcrumb-item,
.breadcrumb-item a {
  color: var(--muted);
}

.hero-section {
  padding: 2rem 0 2.4rem;
}

.hero-grid,
.page-hero-inner,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy,
.hero-panel,
.page-hero-inner,
.section-block > .site-shell,
.site-footer > .site-shell {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(219, 230, 242, 0.95);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.96));
  box-shadow: var(--shadow);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0.8rem 0 0.75rem;
  color: var(--title);
  max-width: 100%;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.message-h1-inline {
  white-space: nowrap;
}

.hero-lead,
.page-hero p,
.section-heading p,
.info-card p,
.step-card p,
.faq-item p,
.notice-card,
.site-footer p,
.hero-stat-card p {
  color: var(--muted);
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1.03rem;
  line-height: 1.82;
}

.hero-badges,
.hero-actions,
.service-grid,
.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-badges {
  margin-top: 1.25rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.86rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--title);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 52px;
  padding: 0.82rem 1.28rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #3889f3, #2a77df);
  border-color: #2a77df;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2f7ee8, #2469cb);
  border-color: #2469cb;
}

.btn-outline-light,
.btn-dark {
  color: var(--primary-dark);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-outline-light:hover,
.btn-dark:hover {
  color: var(--primary-dark);
  border-color: #bfd6f3;
  background: #f7fbff;
}

.hero-actions {
  width: 100%;
  margin-top: 0.95rem;
  gap: 0.85rem;
  align-items: stretch;
}

.hero-actions .btn {
  min-width: 180px;
  font-size: 0.97rem;
}

.hero-panel {
  display: grid;
  gap: 0.9rem;
}

.hero-stat-card,
.country-card,
.info-card,
.step-card,
.article-card,
.number-card,
.message-card,
.notice-card,
.faq-item,
.page-hero-inner {
  border: 1px solid rgba(219, 230, 242, 0.92);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-stat-card {
  padding: 1.25rem 1.3rem;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.hero-stat-card strong {
  display: block;
  margin: 0.55rem 0 0.3rem;
  color: var(--title);
  font-size: 2rem;
  line-height: 1;
}

.stat-label {
  color: #6e83a0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-desc {
  font-size: 0.92rem;
  line-height: 1.72;
}

.stat-desc,
.country-head p,
.country-meta span,
.message-meta span,
.message-content span,
.text-link,
.footer-bottom {
  color: var(--muted);
}

.section-block {
  padding: 1.4rem 0 2rem;
}

.section-block > .site-shell {
  padding: 2rem;
  border: 1px solid rgba(219, 230, 242, 0.92);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.alt-section > .site-shell {
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.96), rgba(244, 249, 255, 0.94));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.9rem;
}

.section-heading h2,
.site-footer h2,
.site-footer h3 {
  margin: 0.95rem 0 0.55rem;
  color: var(--title);
  line-height: 1.22;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
}

.country-grid,
.info-grid,
.steps-grid,
.number-grid,
.article-grid,
.tips-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-grid {
  justify-content: stretch;
}

.service-card {
  flex: 1 1 210px;
  text-align: center;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.country-card,
.info-card,
.step-card,
.number-card,
.message-card,
.article-card,
.tip-card,
.notice-card,
.faq-item {
  padding: 1.35rem;
}

.country-head,
.number-card-head,
.message-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.country-head {
  align-items: center;
}

.country-flag,
.hero-flag {
  width: 58px;
  height: 58px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.country-card h3,
.info-card h3,
.step-card h3,
.article-card h2,
.article-card h3,
.number-card h2,
.number-card h3,
.message-card strong {
  color: var(--title);
  margin-bottom: 0.55rem;
}

.country-card h3,
.info-card h3,
.step-card h3,
.article-card h2,
.article-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
}

.country-meta,
.stat-box,
.source-pill {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: #f7fbff;
  border: 1px solid var(--line);
}

.country-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.15rem 0;
}

.country-meta strong,
.stat-box strong,
.number-card h2,
.number-card h3 {
  font-size: 1.5rem;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
}

.page-hero {
  padding: 1.8rem 0 0.7rem;
}

.page-hero-inner {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.96));
}

.country-page-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
}

.message-page-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) 156px;
  align-items: center;
}

.message-hero-copy {
  min-width: 0;
}

.article-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1.42fr) minmax(140px, 0.32fr);
  gap: 1.75rem;
  align-items: center;
}

.article-hero-copy {
  min-width: 0;
  max-width: 860px;
}

.article-hero .eyebrow {
  margin-bottom: 0.2rem;
}

.article-hero h1 {
  max-width: 100%;
  margin: 0.65rem 0 0.9rem;
  font-size: clamp(2.15rem, 3vw, 3.35rem);
  line-height: 1.14;
  letter-spacing: -0.038em;
  text-wrap: pretty;
  word-break: break-word;
}

.article-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.76;
}

.article-hero-side {
  align-self: stretch;
  justify-content: flex-end;
}

.country-hero-side {
  width: 180px;
  justify-self: end;
  align-self: center;
}

.country-page-hero .hero-flag {
  width: 104px;
  height: 70px;
  padding: 0;
  border-radius: 14px;
  margin: 0 auto 0.85rem;
}

.country-page-hero .stat-box {
  width: 100%;
  text-align: center;
  padding: 1.15rem 1rem 1.2rem;
}

.country-page-hero .stat-box span,
.country-page-hero .stat-box strong {
  display: block;
}

.country-page-hero .stat-box span {
  margin-bottom: 0.45rem;
}

.article-stat-box {
  min-width: 132px;
  align-self: center;
}

.article-stat-box strong {
  font-size: 2rem;
  line-height: 1;
}

.hero-inline-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f7fbff;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.landing-summary {
  margin-bottom: 1.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  color: var(--text);
  line-height: 1.82;
}

.page-hero-side,
.page-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: flex-end;
}

.page-actions {
  flex-direction: column;
  width: 156px;
  justify-self: end;
  align-self: center;
}

.page-actions .btn {
  width: 100%;
}

.source-row {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.source-pill {
  color: var(--primary-dark);
  font-weight: 700;
}

.number-card.compact h3,
.number-card h2 {
  word-break: break-all;
}

.number-card h2,
.number-card.compact h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.copy-btn {
  padding: 0.55rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 700;
}

.copy-btn.copied,
[data-copy].copied {
  background: var(--green-soft);
  color: #148f63;
}

.message-list,
.faq-list {
  display: grid;
  gap: 1rem;
}

.message-card {
  padding: 1.2rem 1.35rem;
}

.message-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.article-card-lg {
  min-height: 100%;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-meta-hero {
  margin-top: 1rem;
}

.tip-card {
  border: 1px solid rgba(219, 230, 242, 0.92);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
}

.tip-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.78;
}

.tip-card h3 {
  margin: 0 0 0.7rem;
  color: var(--title);
  font-size: 1.08rem;
  line-height: 1.35;
}

.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.platform-card .article-tag {
  margin-bottom: 0.2rem;
}

.landing-card h3 {
  margin: 0 0 0.8rem;
  color: var(--title);
  font-size: 1.08rem;
}

.compact-list {
  margin-top: 0;
}

.article-body {
  max-width: 860px;
  margin: 0;
  padding: 0.4rem 0;
}

.article-entry-panel {
  margin: 0 0 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(206, 222, 239, 0.92);
  border-radius: var(--radius-xl);
  background: rgba(247, 251, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.article-entry-head h2 {
  margin: 0.35rem 0 0.75rem;
  color: var(--title);
  font-size: 1.6rem;
}

.article-entry-head p,
.article-entry-group > p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.article-entry-group + .article-entry-group {
  margin-top: 1.4rem;
}

.article-entry-group h3 {
  margin: 0 0 0.5rem;
  color: var(--title);
  font-size: 1.1rem;
}

.article-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.article-inline-card {
  padding: 1.1rem;
  border: 1px solid rgba(211, 225, 240, 0.96);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
}

.article-inline-card h4 {
  margin: 0 0 0.45rem;
  color: var(--title);
  font-size: 1.02rem;
}

.article-inline-card p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.article-section + .article-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 1.2rem;
  color: var(--title);
  font-size: 1.65rem;
  font-weight: 700;
}

.article-section p,
.article-list li {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-list {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.article-list li + li {
  margin-top: 0.55rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--title);
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.text-link {
  font-weight: 700;
}

.site-footer {
  margin-top: 1.8rem;
  padding: 0 0 2rem;
  color: var(--text);
  background: transparent;
}

.site-footer > .site-shell {
  padding: 1.8rem 2rem;
  border: 1px solid rgba(219, 230, 242, 0.92);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 991px) {
  .hero-grid,
  .page-hero-inner,
  .footer-grid,
  .country-grid,
  .info-grid,
  .steps-grid,
  .number-grid,
  .article-grid,
  .article-inline-grid,
  .tips-list {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .page-hero-side,
  .page-actions {
    justify-content: flex-start;
  }

  .country-page-hero .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .message-page-hero .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) 156px;
  }

  .language-menu {
    right: auto;
    left: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .article-hero .page-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .article-hero h1 {
    font-size: clamp(1.95rem, 4.5vw, 2.7rem);
    line-height: 1.18;
  }

  .article-hero-side {
    justify-content: flex-start;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 12.4ch;
    font-size: clamp(2rem, 5.3vw, 3.1rem);
  }
}

@media (max-width: 767px) {
  :root {
    --shell-gutter: 10px;
  }

  .site-header {
    padding-top: 10px;
  }

  .hero-grid,
  .page-hero-inner,
  .footer-grid,
  .country-grid,
  .info-grid,
  .steps-grid,
  .number-grid,
  .article-grid,
  .article-inline-grid,
  .tips-list {
    grid-template-columns: 1fr;
  }

  .message-page-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .country-page-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-block > .site-shell,
  .site-footer > .site-shell,
  .page-hero-inner {
    padding: 1.2rem;
  }

  .navbar {
    padding: 12px 14px;
  }

  .article-body {
    max-width: 100%;
  }

  .article-entry-panel {
    padding: 1.25rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 1.82rem;
    line-height: 1.16;
  }

  .message-h1-inline {
    white-space: normal;
  }

  .article-hero h1 {
    font-size: 1.75rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .article-hero p {
    font-size: 0.97rem;
    line-height: 1.74;
  }

  .hero-actions .btn,
  .page-actions .btn,
  .number-card .btn,
  .language-trigger {
    width: 100%;
  }

  .page-actions {
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
  }

  .country-hero-side {
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .article-stat-box {
    width: 100%;
    max-width: 220px;
  }

  .hero-actions {
    margin-top: 0.85rem;
  }

  .hero-badges {
    gap: 0.65rem;
  }

  .badge-item {
    font-size: 0.86rem;
  }

  .country-head,
  .number-card-head,
  .message-meta,
  .source-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading h2,
  .article-section h2 {
    font-size: 1.45rem;
  }

  .article-card,
  .tip-card {
    padding: 1.15rem;
  }

  .breadcrumb {
    border-radius: 18px;
  }

  .language-menu {
    left: 0;
    right: 0;
    min-width: 100%;
  }
}
