.article-news-page {
  --article-news-shell-width: min(1600px, 85%);
  --article-news-banner-safe-top: var(--navbar-layout-bar-height);
  --article-news-column-gap: clamp(32px, 4vw, 72px);
  --article-news-sidebar-width: minmax(220px, 1fr);
  --article-news-content-width: minmax(0, 3fr);
  --article-news-border: rgba(0, 120, 212, 0.14);
  --article-news-divider: rgba(17, 17, 17, 0.08);
  --article-news-meta-color: var(--ui-color-text-muted);
  --article-news-link: var(--ui-color-brand-blue);
  --article-news-link-hover: var(--ui-color-brand-blue-strong);
  --article-news-title-sm: var(--font-title-md-sm);
  --page-banner-height: 30lvh;
  --page-banner-safe-top: var(--article-news-banner-safe-top);
  --page-banner-overlay: #477ca930;
  --page-banner-title-weight: 400;
  background: #F7FCFF;
  color: var(--ui-color-text-default);
}

.article-news-page .page-banner.ui-shell {
  width: 100%;
  max-width: none;
}

.article-news-content {
  background: #F7FCFF;
}

.article-news-content .page-content {
  padding:
    clamp(32px, 9vw, 52px)
    clamp(16px, 5vw, 24px);
}

.article-news-layout {
  width: var(--article-news-shell-width);
  max-width: none;
  display: grid;
  grid-template-columns: var(--article-news-sidebar-width) var(--article-news-content-width);
  gap: var(--article-news-column-gap);
  align-items: start;
}

.article-news-sidebar {
  min-width: 0;
}

.article-news-sidebar__inner {
  position: sticky;
  top: calc(var(--navbar-layout-bar-height) + 24px);
  display: grid;
  gap: 10px;
}

.article-news-sidebar__title,
.article-news-section-title {
  margin: 0;
  color: var(--ui-color-text-default);
}

.article-news-sidebar__title {
  font-size: var(--article-news-title-sm);
}

.article-news-recent-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-news-recent-list__empty {
  padding: 14px 0;
  color: var(--article-news-meta-color);
  font-size: var(--font-body-md);
}

.article-news-recent-list__link {
  display: grid;
  gap: 6px;
  padding: 4px 0;
  margin: 10px 0;
  color: inherit;
  text-decoration: none;
}

.article-news-recent-list__link:hover,
.article-news-recent-list__link:focus-visible {
  color: var(--ui-color-brand-blue);
  text-decoration: none;
}

.article-news-recent-list__title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-title-sm);
  line-height: 1.5;
}

.article-news-recent-list__title::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: calc((1.5em - 8px) / 2);
  border-radius: 50%;
  background: var(--ui-color-brand-blue);
}

.article-news-article {
  min-width: 0;
  display: grid;
}

.article-news-article__header {
  display: grid;
  gap: 14px;
  padding-bottom: 24px;
}

.article-news-article__title {
  margin: 0;
  color: var(--ui-color-text-default);
}

.article-news-article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ui-color-text-default);
  font-size: var(--font-body-md);
  font-weight: 700;
  line-height: 1.5;
}

.article-news-article__video video {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: var(--ui-radius-sm);
}

.article-news-body {
  font-size: var(--font-body-lg);
  line-height: 1.9;
}

.article-news-body > :first-child {
  margin-top: 0;
}

.article-news-body > :last-child {
  margin-bottom: 0;
}

.article-news-body a {
  color: var(--article-news-link);
}

.article-news-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}

.article-news-body figure {
  margin: 24px 0;
}

.article-news-body figcaption {
  margin-top: 10px;
  color: var(--article-news-meta-color);
  font-size: var(--font-body-sm);
  line-height: 1.5;
}

.article-news-body h2,
.article-news-body h3,
.article-news-body h4 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  color: var(--ui-color-text-default);
  line-height: 1.3;
}

.article-news-body p,
.article-news-body ul,
.article-news-body ol,
.article-news-body blockquote {
  margin-bottom: 1em;
}

.article-news-body blockquote {
  margin-left: 0;
  padding-left: 18px;
  border-left: 3px solid var(--ui-color-brand-orange);
  color: var(--ui-color-text-muted);
}

.article-news-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: var(--font-body-md);
  line-height: 1.6;
}

.article-news-body table th,
.article-news-body table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--article-news-divider);
}

.article-news-body table th {
  background: rgba(0, 120, 212, 0.06);
  color: var(--ui-color-text-default);
  font-weight: 600;
}

.article-news-body table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.article-news-body table tr:hover {
  background: rgba(0, 120, 212, 0.04);
}

.article-news-body .table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.article-news-body .table-wrapper table {
  margin: 0;
  min-width: 600px;
}

@media (max-width: 1199.98px) {
  .article-news-page {
    --page-banner-height: 180px;
  }

  .article-news-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-news-sidebar {
    order: 2;
  }

  .article-news-article {
    order: 1;
  }

  .article-news-sidebar__inner {
    position: static;
    padding-right: 0;
    padding-top: 24px;
  }

  .article-news-article__header {
    padding-bottom: 20px;
  }
}