:root {
  --en-bg: #f4f8ff;
  --en-bg-soft: #eef5ff;
  --en-surface: #ffffff;
  --en-surface-soft: #f8fbff;
  --en-surface-strong: #e6f0ff;
  --en-text: #12233d;
  --en-text-soft: #4f6484;
  --en-text-faint: #7a8da8;
  --en-line: #d8e5f8;
  --en-line-strong: #bdd1ef;
  --en-blue: #2563eb;
  --en-blue-deep: #1849b8;
  --en-cyan: #d8e9ff;
  --en-green: #0f9d77;
  --en-orange: #ff8b3d;
  --en-shadow-lg: 0 24px 64px rgba(23, 59, 128, 0.12);
  --en-shadow-md: 0 16px 36px rgba(34, 88, 177, 0.1);
  --en-shadow-sm: 0 8px 24px rgba(34, 88, 177, 0.08);
  --en-radius-xl: 28px;
  --en-radius-lg: 22px;
  --en-radius-md: 18px;
  --en-radius-sm: 14px;
  --en-shell: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.en-site {
  margin: 0;
  color: var(--en-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(151, 196, 255, 0.38), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, var(--en-bg) 38%, #edf4ff 100%);
}

body.en-site a {
  /* color: var(--en-blue); */
  text-decoration: none;
}

.en-pagination li.thisclass > a {
  min-width: 44px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 999px;
}

.en-pagination li.thisclass > a:hover {
  background: transparent;
  border-color: transparent;
  color: #fff;
}

body.en-site a:hover {
  text-decoration: underline;
}

body.en-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

.en-skip-link {
  position: absolute;
  left: 16px;
  top: -52px;
  z-index: 80;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--en-text);
}

.en-skip-link:focus {
  top: 16px;
}

.en-page {
  min-height: 100vh;
}

.en-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(189, 209, 239, 0.75);
  background: rgba(249, 252, 255, 0.9);
}

.en-topbar-inner {
  width: var(--en-shell);
  margin: 0 auto;
  padding: 16px 0 12px;
}

.en-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.en-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--en-text);
}

.en-brand:hover {
  text-decoration: none;
}

.en-brand-mark {
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #ecf4ff);
  /* box-shadow: var(--en-shadow-sm);
  border: 1px solid rgba(189, 209, 239, 0.9); */
  overflow: hidden;
}

.en-brand-mark img {
  object-fit: contain;
}

.en-brand-copy {
  display: grid;
  gap: 4px;
}

.en-brand-copy strong {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.en-brand-copy span {
  color: var(--en-text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.en-brand-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--en-blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  font-size: 12px;
  font-weight: 700;
}

.en-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 16px;
}

.en-nav-item {
  position: relative;
  display: flex;
  flex: 0 0 auto;
}

.en-nav-item-has-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.en-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--en-text-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.92));
  border: 1px solid rgba(216, 229, 248, 0.95);
  box-shadow: 0 10px 24px rgba(34, 88, 177, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.en-nav-item-has-menu > .en-nav-link {
  padding-right: 16px;
}

.en-nav-caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.72;
  transition: transform .18s ease, opacity .18s ease;
}

.en-nav-link[aria-current="page"],
.en-nav-link.is-current,
.en-nav-item.is-current-section > .en-nav-link,
.en-nav-link:hover,
.en-nav-item-has-menu:hover > .en-nav-link,
.en-nav-item-has-menu:focus-within > .en-nav-link,
.en-nav-item-has-menu.is-open > .en-nav-link {
  color: var(--en-text);
  border-color: rgba(157, 186, 233, 0.98);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 16px 34px rgba(34, 88, 177, 0.14);
  text-decoration: none;
  transform: translateY(-1px);
}

.en-nav-item-has-menu:hover .en-nav-caret,
.en-nav-item-has-menu:focus-within .en-nav-caret,
.en-nav-item-has-menu.is-open .en-nav-caret {
  transform: rotate(225deg) translateY(1px);
  opacity: 1;
}

.en-nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 229, 248, 0.96);
  box-shadow: 0 24px 44px rgba(18, 35, 61, 0.14);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 70;
}

.en-nav-item-has-menu:hover .en-nav-dropdown,
.en-nav-item-has-menu:focus-within .en-nav-dropdown,
.en-nav-item-has-menu.is-open .en-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.en-nav-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--en-text-soft);
  background: transparent;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.en-nav-dropdown-link-featured {
  color: var(--en-text);
  background: linear-gradient(180deg, rgba(232, 242, 255, 0.95), rgba(245, 249, 255, 0.98));
  border-color: rgba(200, 219, 247, 0.94);
}

.en-nav-dropdown-link:hover,
.en-nav-dropdown-link:focus,
.en-nav-dropdown-link.is-current {
  color: var(--en-blue-deep);
  background: rgba(238, 245, 255, 0.9);
  border-color: rgba(200, 219, 247, 0.92);
  text-decoration: none;
}

.en-main {
  width: var(--en-shell);
  margin: 0 auto;
  padding: 22px 0 72px;
}

.en-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 229, 248, 0.95);
  box-shadow: var(--en-shadow-sm);
}

.en-breadcrumb a,
.en-breadcrumb span {
  color: var(--en-text-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.en-breadcrumb-sep {
  color: var(--en-text-faint);
}

.en-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--en-radius-xl);
  border: 1px solid rgba(189, 209, 239, 0.95);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.94)),
    var(--en-surface);
  box-shadow: var(--en-shadow-lg);
}

.en-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 151, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.en-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
  gap: 28px;
  padding: 36px;
}

.en-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--en-blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.en-hero h1,
.en-section-title,
.en-card h3,
.en-article-title,
.en-article-panel h2 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0;
}

.en-hero h1 {
  margin-top: 18px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
}

.en-hero p {
  max-width: 44rem;
  margin: 16px 0 0;
  color: var(--en-text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.en-hero-actions,
.en-chip-row,
.en-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.en-hero-actions {
  margin-top: 22px;
}

.en-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  box-shadow: var(--en-shadow-sm);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.en-button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.en-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--en-blue-deep), var(--en-blue));
}

.en-button-secondary {
  color: var(--en-text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(189, 209, 239, 0.95);
}

.en-trust-list {
  display: grid;
  gap: 12px;
}

.en-trust-card {
  padding: 18px;
  border-radius: var(--en-radius-lg);
  border: 1px solid rgba(216, 229, 248, 0.95);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--en-shadow-sm);
}

.en-trust-card span {
  display: block;
  color: var(--en-text-faint);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.en-trust-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.en-trust-card p,
.en-card p,
.en-article-item p,
.en-faq-item p,
.en-footer-note,
.en-article-panel p {
  margin: 8px 0 0;
  color: var(--en-text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.en-section {
  margin-top: 24px;
}

.en-section-panel,
.en-card,
.en-article-panel,
.en-faq-item,
.en-footer {
  border-radius: var(--en-radius-lg);
  border: 1px solid rgba(216, 229, 248, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--en-shadow-md);
}

.en-section-panel {
  padding: 28px;
}

.en-section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
}

.en-section-title {
  font-size: 30px;
  line-height: 1.08;
}

.en-section-copy {
  max-width: 46rem;
  color: var(--en-text-soft);
  font-size: 15px;
  line-height: 1.72;
}

.en-stat-grid,
.en-category-grid,
.en-feed-grid,
.en-archive-grid,
.en-related-grid,
.en-faq-grid {
  display: grid;
  gap: 16px;
}

.en-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.en-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.en-feed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.en-archive-grid,
.en-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.en-card {
  padding: 20px;
}

.en-card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--en-blue);
  font-size: 12px;
  font-weight: 800;
}

.en-card h3 {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.2;
}

.en-card-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.en-card-meta strong {
  display: block;
  font-size: 26px;
  line-height: 1.05;
}

.en-card-meta span {
  color: var(--en-text-faint);
  font-size: 13px;
  line-height: 1.5;
}

.en-channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.en-channel-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(189, 209, 239, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--en-text);
  font-size: 14px;
  font-weight: 800;
}

.en-channel-tabs a:hover {
  text-decoration: none;
  border-color: rgba(37, 99, 235, 0.25);
}

.en-channel-grid {
  display: grid;
  gap: 16px;
}

.en-channel-card {
  padding: 20px;
  border-radius: var(--en-radius-lg);
  border: 1px solid rgba(216, 229, 248, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--en-shadow-sm);
}

.en-channel-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.en-channel-card p {
  margin: 10px 0 0;
  color: var(--en-text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.en-mini-table {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(216, 229, 248, 0.92);
}

.en-mini-table table {
  width: 100%;
  border-collapse: collapse;
}

.en-mini-table th,
.en-mini-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(216, 229, 248, 0.9);
  text-align: left;
  vertical-align: top;
}

.en-mini-table th {
  color: var(--en-text-faint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(244, 248, 255, 0.9);
}

.en-mini-table tr:last-child td {
  border-bottom: 0;
}

.en-channel-more {
  margin-top: 16px;
}

.en-category-grid .en-card:hover,
.en-feed-item:hover,
.en-related-item:hover,
.en-archive-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(34, 88, 177, 0.12);
}

.en-feed-item,
.en-related-item,
.en-archive-item {
  display: block;
  padding: 20px;
  border-radius: var(--en-radius-lg);
  border: 1px solid rgba(216, 229, 248, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--en-shadow-sm);
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.en-feed-item:hover,
.en-related-item:hover,
.en-archive-item:hover {
  text-decoration: none;
  border-color: rgba(37, 99, 235, 0.22);
}

.en-feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--en-text-faint);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.en-feed-title {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.18;
}

.en-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--en-blue);
  font-size: 14px;
  font-weight: 800;
}

.en-feed-link::after,
.en-footer-links a::after,
.en-related-item::after,
.en-archive-item::after {
  content: "->";
}

.en-list-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.en-list-table {
  overflow: hidden;
  border-radius: var(--en-radius-lg);
  border: 1px solid rgba(216, 229, 248, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--en-shadow-md);
}

.en-list-table table {
  width: 100%;
  border-collapse: collapse;
}

.en-list-table th,
.en-list-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(216, 229, 248, 0.9);
  text-align: left;
  vertical-align: top;
}

.en-list-table th {
  color: var(--en-text-faint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.en-list-table tr:last-child td {
  border-bottom: 0;
}

.en-version-link {
  display: block;
  color: var(--en-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.en-version-link span {
  display: block;
  margin-top: 8px;
  color: var(--en-text-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.en-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.en-badge-current {
  color: var(--en-blue);
  background: rgba(37, 99, 235, 0.08);
}

.en-badge-warm {
  color: var(--en-green);
  background: rgba(15, 157, 119, 0.1);
}

.en-badge-muted {
  color: var(--en-text-soft);
  background: rgba(79, 100, 132, 0.1);
}

.en-sidebar-stack {
  display: grid;
  gap: 16px;
}

.en-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.en-article-panel {
  padding: 28px;
}

.en-article-title,
  .en-news-title {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}

.en-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.en-meta-grid div,
.en-callout {
  padding: 16px;
  border-radius: var(--en-radius-md);
  background: var(--en-surface-soft);
  border: 1px solid rgba(216, 229, 248, 0.92);
}

.en-meta-grid span {
  display: block;
  color: var(--en-text-faint);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.en-meta-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.en-prose {
  color: var(--en-text);
  font-size: 16px;
  line-height: 1.78;
}

.en-prose p {
  margin: 0 0 16px;
}

.en-prose h2,
.en-prose h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.en-prose ul,
.en-prose ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

.en-prose li {
  margin-bottom: 10px;
}

.en-callout strong {
  display: block;
  font-size: 15px;
}

.en-callout p {
  margin: 10px 0 0;
}

.en-faq-item {
  padding: 20px;
}

.en-faq-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.en-footer {
  margin-top: 24px;
  padding: 28px;
}

.en-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
}

.en-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.en-footer-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: var(--en-radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 229, 248, 0.92);
  color: var(--en-text);
  font-size: 14px;
  font-weight: 700;
}

.en-footer-links a:hover {
  text-decoration: none;
}

.en-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 229, 248, 0.95);
  color: var(--en-text-faint);
  font-size: 13px;
}

.en-pagination {
  margin-top: 24px;
  padding: 14px 24px 22px;
  border-top: 1px solid rgba(216, 229, 248, 0.92);
}

.en-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.en-pagination li a,
.en-pagination li span,
.en-pagination li.thisclass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 229, 248, 0.95);
  color: var(--en-text-soft);
  font-size: 14px;
  font-weight: 700;
}

.en-pagination li.thisclass,
.en-pagination li.thisclass span,
.en-pagination li a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--en-blue-deep), var(--en-blue));
  border-color: transparent;
  text-decoration: none;
}

.en-pagination .pageinfo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-inline: 18px;
  color: var(--en-text-soft);
  white-space: nowrap;
}

.en-pagination .pageinfo strong {
  display: inline-block;
  margin-inline: 1px;
  color: var(--en-text);
}

.en-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .en-hero-grid,
  .en-list-shell,
  .en-news-layout,
  .en-article-layout,
  .en-footer-top {
    grid-template-columns: 1fr;
  }

  .en-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .en-feed-grid,
  .en-stat-grid,
  .en-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --en-shell: min(100%, calc(100% - 24px));
  }

  .en-topbar-row {
    flex-direction: column;
    align-items: start;
  }

  .en-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 6px;
    gap: 10px;
  }

  .en-nav-item {
    flex: 0 0 auto;
  }

  .en-nav-item-has-menu::after {
    display: none;
  }

  .en-nav-dropdown {
    top: calc(100% + 8px);
    min-width: 208px;
    padding: 10px;
  }

  .en-nav-link {
    min-height: 42px;
    padding: 0 16px;
    box-shadow: none;
    transform: none !important;
  }

  .en-nav-caret {
    width: 8px;
    height: 8px;
  }

  .en-hero-grid,
  .en-section-panel,
  .en-news-panel,
  .en-article-panel,
  .en-footer {
    padding: 20px;
  }

  .en-stat-grid,
  .en-category-grid,
  .en-feed-grid,
  .en-archive-grid,
  .en-related-grid,
  .en-faq-grid,
  .en-meta-grid,
  .en-footer-links {
    grid-template-columns: 1fr;
  }

  .en-list-table {
    overflow-x: auto;
  }

  .en-list-table table {
    min-width: 620px;
  }

  .en-breadcrumb {
    border-radius: 18px;
  }

  .en-hero h1,
  .en-article-title,
  .en-news-title {
    font-size: 28px;
  }

  .en-section-title {
    font-size: 26px;
  }
}


.en-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.en-news-layout {
  align-items: start;
}

.en-sidebar-stack-news {
  align-self: start;
  height: fit-content;
}

.en-news-panel {
  padding: 24px;
}

.en-news-list {
  display: grid;
  gap: 16px;
}

.en-news-item {
  padding: 20px;
  border-radius: var(--en-radius-md);
  border: 1px solid rgba(216, 229, 248, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
  box-shadow: 0 14px 30px rgba(34, 88, 177, 0.08);
}

.en-news-item-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.en-news-time {
  color: var(--en-text-faint);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.en-news-title {
  margin: 14px 0 0;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: 0;
}

.en-news-title a {
  color: var(--en-text);
}

.en-news-title a:hover {
  color: var(--en-blue-deep);
  text-decoration: none;
}

.en-news-excerpt {
  margin: 14px 0 0;
  color: var(--en-text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.en-news-actions {
  margin-top: 14px;
}

.en-news-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.en-news-mini-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--en-radius-sm);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 229, 248, 0.92);
  color: var(--en-text);
}

.en-news-mini-item:hover {
  text-decoration: none;
  border-color: rgba(157, 186, 233, 0.96);
  box-shadow: 0 12px 24px rgba(34, 88, 177, 0.1);
}

.en-news-mini-item strong {
  font-size: 14px;
  line-height: 1.45;
}

.en-news-mini-item span {
  color: var(--en-text-faint);
  font-size: 12px;
  font-weight: 700;
}

.en-news-pagination {
  margin-top: 22px;
}


/* Pagination current page fix */
.en-pagination li.thisclass > a {
  min-width: 44px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 999px;
}

.en-pagination li.thisclass > a:hover {
  background: transparent;
  border-color: transparent;
  color: #fff;
}


/* English news article page */
.en-story-hero {
  padding-bottom: 8px;
}

.en-story-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 380px);
  gap: 18px;
  align-items: stretch;
}

.en-story-copy {
  padding: 24px 28px;
  border-radius: var(--en-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.95));
  border: 1px solid rgba(216, 229, 248, 0.92);
  box-shadow: 0 20px 44px rgba(34, 88, 177, 0.09);
}

.en-story-title {
  margin: 12px 0 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  color: var(--en-text);
}

.en-story-summary {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--en-text-soft);
  font-size: 16px;
  line-height: 1.68;
}

.en-story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 16px;
}

.en-story-meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(228, 238, 252, 0.72);
  color: var(--en-text-soft);
  font-size: 14px;
  font-weight: 700;
}

.en-story-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  border-radius: var(--en-radius-xl);
  border: 1px solid rgba(216, 229, 248, 0.92);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,255,0.94));
  box-shadow: 0 20px 44px rgba(34, 88, 177, 0.09);
}

.en-story-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
}

.en-story-layout {
  align-items: start;
}

.en-story-panel {
  padding: 30px 32px;
}

.en-story-body {
  font-size: 18px;
  line-height: 1.84;
}

.en-story-body > *:first-child {
  margin-top: 0;
}

.en-story-body p {
  margin: 0 0 20px;
}

.en-story-body img {
  display: block;
  width: 100%;
  height: auto;
  margin: 26px auto;
  border-radius: 20px;
  border: 1px solid rgba(216, 229, 248, 0.92);
  box-shadow: 0 20px 44px rgba(34, 88, 177, 0.10);
}

.en-story-body h2,
.en-story-body h3 {
  margin: 34px 0 14px;
  line-height: 1.18;
}

.en-story-body a {
  color: var(--en-blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.en-story-body blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--en-blue);
  border-radius: 18px;
  background: rgba(242, 247, 255, 0.92);
  color: var(--en-text-soft);
}

.en-story-sidebar {
  align-self: start;
}

.en-story-card {
  align-self: start;
}

.en-story-meta-grid {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .en-story-masthead {
    grid-template-columns: 1fr;
  }

  .en-story-cover img {
    max-height: 240px;
  }
}

@media (max-width: 760px) {
  .en-story-copy,
  .en-story-panel {
    padding: 22px 18px;
  }

  .en-story-summary,
  .en-story-body {
    font-size: 15px;
  }

  .en-story-cover img {
    max-height: 200px;
  }
}


.en-story-card .en-related-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.en-story-card .en-related-item {
  min-height: 0;
}


.en-article-facts {
  margin-top: 24px;
}

.en-article-facts h3 {
  margin: 14px 0 0;
}

.en-article-facts-grid {
  margin-top: 14px;
}


.en-sidebar-stack .en-related-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.en-sidebar-stack .en-related-item {
  min-height: 0;
}


.en-pan-layer-open {
  overflow: hidden;
}

.en-pan-layer[hidden] {
  display: none;
}

.en-pan-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.en-pan-layer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 54, 0.56);
  backdrop-filter: blur(8px);
}

.en-pan-layer__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  margin: min(10vh, 84px) auto 0;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(189, 209, 255, 0.86);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.96));
  box-shadow: 0 28px 70px rgba(26, 62, 142, 0.24);
}

.en-pan-layer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(230, 238, 255, 0.96);
  color: var(--en-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.en-pan-layer__copy {
  margin-top: 12px;
  color: var(--en-muted);
}

.en-pan-layer__rows {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.en-pan-layer__item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(189, 209, 255, 0.84);
  background: rgba(255,255,255,0.84);
}

.en-pan-layer__item span {
  display: block;
  margin-bottom: 8px;
  color: var(--en-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.en-pan-layer__item a,
.en-pan-layer__item strong {
  display: block;
  color: var(--en-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  word-break: break-all;
}

.en-pan-layer__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 640px) {
  .en-pan-layer__dialog {
    width: calc(100vw - 24px);
    margin-top: 72px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .en-pan-layer__actions {
    flex-direction: column;
  }

  .en-pan-layer__actions .en-button {
    width: 100%;
  }
}


.en-pan-layer__dialog--primary {
  border-color: rgba(121, 163, 255, 0.82);
  background: linear-gradient(180deg, rgba(242, 247, 255, 0.99), rgba(228, 239, 255, 0.96));
  box-shadow: 0 28px 70px rgba(36, 94, 214, 0.26);
}

.en-pan-layer__dialog--primary .en-card-badge {
  color: #1e5cff;
  background: rgba(220, 232, 255, 0.96);
  border-color: rgba(166, 196, 255, 0.8);
}

.en-pan-layer__dialog--secondary {
  border-color: rgba(189, 209, 255, 0.86);
}

.en-pan-layer__dialog--primary .en-pan-layer__close {
  background: rgba(216, 230, 255, 0.98);
  color: #1240a8;
}

.en-pan-layer__dialog--primary .en-pan-layer__item {
  border-color: rgba(166, 196, 255, 0.82);
  background: rgba(255,255,255,0.88);
}

.en-pan-layer__dialog--primary #enPanOpenLink {
  background: linear-gradient(135deg, var(--en-blue-deep), var(--en-blue));
  color: #fff;
}

.en-pan-layer__dialog--primary #enPanCopyCode {
  background: rgba(255,255,255,0.95);
  border-color: rgba(166, 196, 255, 0.84);
  color: var(--en-text);
}

.en-pan-layer__actions .en-button:disabled {
  opacity: 0.65;
  cursor: default;
  transform: none;
}
