:root {
  --wb-primary: #0169ff;
  --wb-primary-hover: #2780ff;
  --wb-primary-active: #0850c5;
  --wb-text-primary: #25262c;
  --wb-text-secondary: #717687;
  --wb-text-muted: #8e93a2;
  --wb-border: #d8dadf;
  --wb-border-soft: #eaecee;
  --wb-page: #f5f5f5;
  --wb-card: #fff;
  --wb-card-soft: #f8f9fa;
  --wb-success: #00c78a;
  --wb-success-bg: #ecf8f0;
  --wb-warning: #fa9924;
  --wb-warning-bg: #fff7e8;
  --wb-danger: #fa4d56;
  --wb-danger-bg: #fff0ee;
  --wb-radius-lg: 24px;
  --wb-radius-md: 16px;
  --wb-radius-sm: 8px;
  --wb-header-height: 81px;
  --wb-container: 1392px;
  --wb-focus: 0 0 0 3px rgba(1, 105, 255, 0.24);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--wb-page);
  color: var(--wb-text-primary);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  border-radius: var(--wb-radius-sm);
  box-shadow: var(--wb-focus);
  outline: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  min-height: var(--wb-header-height);
  border-bottom: 1px solid var(--wb-border-soft);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--wb-header-height);
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 30px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 158px;
  color: #000;
}

.whitebird-logo-img {
  width: 158px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.wordmark-text,
.footer-brand span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1;
}

.wordmark-mark {
  position: relative;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--wb-primary);
}

.wordmark-mark::before {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 18px;
  height: 13px;
  border-radius: 14px 14px 3px 14px;
  background: #fff;
  content: "";
  transform: rotate(22deg);
}

.wordmark-mark::after {
  position: absolute;
  top: 9px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wb-primary);
  content: "";
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.desktop-nav a,
.language-link,
.mobile-nav a {
  color: var(--wb-primary);
  font-size: 16px;
  line-height: 20px;
}

.desktop-nav a:hover,
.language-link:hover,
.breadcrumbs a:hover,
.back-link:hover,
.summary-card a:hover,
.section-row a:hover,
.footer-nav a:hover {
  color: var(--wb-primary-active);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.language-link::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-3px) rotate(45deg);
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 40px;
  padding: 8px 24px;
  border: 2px solid var(--wb-primary);
  border-radius: var(--wb-radius-sm);
  color: var(--wb-primary);
  font-size: 18px;
  line-height: 20px;
}

.login-button:hover,
.button.secondary:hover {
  background: rgba(1, 105, 255, 0.05);
}

.mobile-menu {
  display: none;
}

.article-shell {
  max-width: var(--wb-container);
  margin: 0 auto;
  padding: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--wb-text-secondary);
  font-size: 14px;
}

.breadcrumbs a,
.back-link,
.section-row a {
  color: var(--wb-primary);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(280px, 335px);
  gap: 40px;
  align-items: start;
}

.article-column {
  min-width: 0;
}

.article-hero {
  margin-bottom: 25px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 20px;
}

.back-link::before {
  display: inline-grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "‹";
  font-size: 13px;
  line-height: 12px;
}

.hero-label,
.cta-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 9px;
  background: var(--wb-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.article-hero h1 {
  max-width: 920px;
  margin: 0 0 20px;
  color: var(--wb-text-primary);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 820px;
  margin: 0;
  color: var(--wb-text-secondary);
  font-size: 19px;
  line-height: 1.45;
}

.article-card,
.summary-card,
.side-card,
.brief-card,
.toc-inline,
.step-card,
.cta-panel,
.other-news-card,
.faq-item {
  border-radius: var(--wb-radius-lg);
  background: var(--wb-card);
}

.article-card {
  overflow: hidden;
}

.article-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--wb-radius-lg) var(--wb-radius-lg) 0 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #0169ff 0%, #0850c5 100%);
}

.article-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.visual-fallback {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(320px, calc(100% - 64px));
  pointer-events: none;
}

.balance-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(12px);
}

.balance-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.28;
}

.balance-caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.status-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--wb-success);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.article-body {
  padding: 32px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
  color: var(--wb-text-secondary);
  font-size: 16px;
}

.article-meta span + span {
  position: relative;
}

.article-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wb-border);
  content: "";
  transform: translateY(-50%);
}

.lead-section p:first-of-type {
  color: #06152d;
  font-size: 18px;
  line-height: 1.55;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 9px;
}

.brief-card,
.toc-inline,
.step-card {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid var(--wb-border-soft);
  background: var(--wb-card-soft);
}

.brief-card {
  border-color: rgba(1, 105, 255, 0.13);
  background: #f6faff;
}

.brief-card h2,
.toc-inline h2,
.content-section h2,
.cta-panel h2,
.summary-card h2,
.other-news h2 {
  margin: 0 0 18px;
  color: var(--wb-text-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.toc-inline ol {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.toc-inline a,
.summary-card a {
  color: var(--wb-primary);
}

.content-section {
  scroll-margin-top: 105px;
  margin-top: 46px;
}

.content-section h2 {
  margin-bottom: 20px;
}

.content-section h3 {
  margin: 24px 0 8px;
  color: var(--wb-text-primary);
  font-size: 18px;
  line-height: 1.35;
}

.step-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--wb-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.callout {
  margin: 26px 0 4px;
  padding: 20px 22px;
  border-radius: var(--wb-radius-md);
  font-weight: 500;
}

.callout.info {
  border: 1px solid rgba(1, 105, 255, 0.14);
  background: #eef6ff;
  color: #113766;
}

.callout.warning {
  border: 1px solid rgba(250, 77, 86, 0.14);
  background: var(--wb-danger-bg);
  color: #681b22;
}

.partner-banner {
  position: relative;
  display: grid;
  gap: 24px;
  scroll-margin-top: 105px;
  margin: 38px 0 42px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(1, 105, 255, 0.16);
  border-radius: var(--wb-radius-lg);
  background:
    linear-gradient(135deg, rgba(1, 105, 255, 0.1), rgba(255, 255, 255, 0.88) 48%),
    #f6faff;
}

.partner-banner::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(1, 105, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 105, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(125deg, transparent 0%, #000 18%, #000 68%, transparent 100%);
  pointer-events: none;
}

.partner-banner-bg {
  position: absolute;
  right: -92px;
  bottom: -108px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 105, 255, 0.16), rgba(1, 105, 255, 0) 68%);
  pointer-events: none;
}

.partner-logos,
.partner-content,
.partner-points,
.partner-link {
  position: relative;
  z-index: 1;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border: 1px solid rgba(216, 218, 223, 0.92);
  border-radius: 18px;
  background: #fff;
}

.partner-logo-whitebird {
  min-width: 214px;
  padding: 16px 22px;
}

.partner-logo-whitebird img {
  width: 166px;
  height: auto;
}

.partner-logo-autogolden {
  gap: 10px;
  min-width: 194px;
  padding: 12px 18px;
  color: #16140f;
}

.partner-logo-autogolden img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.partner-logo-autogolden span {
  color: #c9962b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.partner-logo-autogolden b {
  color: #16140f;
}

.partner-connector {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--wb-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.partner-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--wb-primary);
  font-size: 14px;
  font-weight: 700;
}

.partner-content h2 {
  max-width: 620px;
  margin: 0 0 12px;
  color: var(--wb-text-primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.partner-content p {
  max-width: 720px;
  margin: 0;
  color: #3f4452;
}

.partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(1, 105, 255, 0.13);
  border-radius: 999px;
  background: #fff;
  color: var(--wb-text-secondary);
  font-size: 14px;
  font-weight: 700;
}

.partner-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 2px solid var(--wb-primary);
  border-radius: var(--wb-radius-sm);
  color: var(--wb-primary);
  font-weight: 700;
}

.partner-link:hover {
  background: rgba(1, 105, 255, 0.05);
  color: var(--wb-primary-active);
}

.attention-list h3 + p {
  color: #3f4452;
}

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

.faq-item {
  border: 1px solid var(--wb-border-soft);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--wb-text-primary);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--wb-primary);
  border-bottom: 2px solid var(--wb-primary);
  content: "";
  transform: translateY(-3px) rotate(45deg);
}

.faq-item[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #3f4452;
}

.final-disclaimer {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--wb-radius-md);
  background: var(--wb-card-soft);
  color: var(--wb-text-secondary);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-top: 44px;
  padding: 32px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, var(--wb-primary) 0%, var(--wb-primary-active) 100%);
  color: #fff;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-label {
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: var(--wb-radius-sm);
  font-weight: 700;
  line-height: 20px;
}

.button.primary {
  background: #fff;
  color: var(--wb-primary);
}

.button.primary:hover {
  color: var(--wb-primary-active);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.summary-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 20px;
}

.summary-card,
.side-card {
  padding: 24px;
}

.summary-card h2 {
  margin-bottom: 14px;
}

.summary-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wb-border-soft);
}

.summary-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.side-card {
  border: 1px solid rgba(1, 105, 255, 0.12);
  background: #f6faff;
}

.side-card span {
  color: var(--wb-primary);
  font-size: 14px;
  font-weight: 700;
}

.side-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.side-card p {
  margin: 0;
  color: var(--wb-text-secondary);
}

.other-news {
  margin-top: 56px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-row h2 {
  margin: 0;
}

.section-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.section-row a::after {
  content: "›";
  font-size: 26px;
  line-height: 1;
}

.other-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.other-news-card {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.other-news-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 10, 36, 0.05) 0%, rgba(2, 10, 36, 0.78) 100%);
  content: "";
}

.other-news-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--wb-primary), var(--wb-primary-active));
}

.other-news-card span {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--wb-danger);
  font-size: 14px;
  font-weight: 700;
}

.other-news-card h3 {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.site-footer {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--wb-radius-lg) var(--wb-radius-lg) 0 0;
  background: var(--wb-primary);
  color: #fff;
}

.footer-inner {
  max-width: var(--wb-container);
  margin: 0 auto;
  padding: 48px 20px 34px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-nav div {
  display: grid;
  gap: 12px;
}

.footer-nav h2 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 16px;
  line-height: 20px;
}

.footer-nav a {
  width: fit-content;
  color: #fff;
  font-size: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand::after {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.footer-brand span {
  color: #fff;
  font-size: 28px;
  letter-spacing: 7px;
}

.footer-legal {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0 0 10px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .article-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .article-column {
    max-width: 860px;
  }

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

@media (max-width: 820px) {
  :root {
    --wb-header-height: 50px;
  }

  .site-header {
    min-height: var(--wb-header-height);
  }

  .header-inner {
    min-height: var(--wb-header-height);
    gap: 12px;
    padding: 5px 16px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 22px;
    height: 22px;
    align-content: center;
    gap: 4px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--wb-primary);
  }

  .mobile-nav {
    position: absolute;
    top: 36px;
    left: 0;
    display: grid;
    width: min(250px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid var(--wb-border-soft);
    border-radius: var(--wb-radius-md);
    background: #fff;
    box-shadow: 0 18px 34px rgba(37, 38, 44, 0.12);
  }

  .mobile-nav a {
    padding: 10px 8px;
  }

  .wordmark {
    min-width: 138px;
    gap: 7px;
  }

  .whitebird-logo-img {
    width: 138px;
    max-height: 30px;
  }

  .wordmark-mark {
    width: 28px;
    height: 28px;
  }

  .header-actions {
    gap: 16px;
    margin-left: auto;
  }

  .language-link {
    font-size: 16px;
  }

  .login-button {
    min-width: 98px;
    min-height: 40px;
    padding: 8px 22px;
    font-size: 16px;
  }

  .article-shell {
    padding: 24px 16px;
  }

  .breadcrumbs {
    display: none;
  }

  .article-hero {
    margin-bottom: 26px;
  }

  .hero-label {
    margin-bottom: 14px;
  }

  .article-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(30px, 7.8vw, 40px);
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .article-visual,
  .article-visual img {
    min-height: 280px;
  }

  .visual-fallback {
    right: 18px;
    bottom: 18px;
    width: min(270px, calc(100% - 36px));
  }

  .balance-card {
    padding: 16px;
  }

  .balance-card strong {
    font-size: 17px;
  }

  .article-body {
    padding: 24px 16px 28px;
  }

  .article-meta {
    gap: 8px 16px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .brief-card,
  .toc-inline,
  .step-card {
    margin: 28px 0;
    padding: 22px 18px;
  }

  .brief-card h2,
  .toc-inline h2,
  .content-section h2,
  .cta-panel h2,
  .summary-card h2,
  .other-news h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .content-section {
    margin-top: 38px;
    scroll-margin-top: 74px;
  }

  .callout,
  .final-disclaimer {
    padding: 18px;
  }

  .summary-aside {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px 18px;
  }

  .cta-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 220px;
  }

  .other-news-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 440px) {
  .header-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wordmark {
    min-width: 136px;
  }

  .header-actions {
    gap: 10px;
  }

  .login-button {
    min-width: 98px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .language-link {
    display: none;
  }

  .back-link {
    margin-bottom: 22px;
  }

  .article-hero h1 {
    font-size: 22px;
    line-height: 1.28;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .article-visual,
  .article-visual img {
    min-height: 178px;
  }

  .visual-fallback {
    display: none;
  }

  .article-card,
  .summary-card,
  .side-card,
  .brief-card,
  .toc-inline,
  .step-card,
  .cta-panel,
  .other-news-card,
  .faq-item {
    border-radius: 20px;
  }

  .article-body {
    padding: 20px 16px 26px;
  }

  .article-meta {
    display: grid;
    gap: 6px;
  }

  .article-meta span + span::before {
    display: none;
  }

  .lead-section p:first-of-type {
    font-size: 16px;
  }

  .brief-card h2,
  .toc-inline h2,
  .content-section h2,
  .cta-panel h2,
  .summary-card h2,
  .other-news h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .section-row {
    display: block;
  }

  .section-row a {
    margin-top: 8px;
  }

  .other-news-card {
    min-height: 246px;
  }

  .footer-inner {
    padding-top: 40px;
  }

  .footer-brand span {
    font-size: 24px;
    letter-spacing: 6px;
  }
}
