:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f2f7f8;
  --surface-strong: #e8eef0;
  --text: #111920;
  --muted: #65727d;
  --subtle: #8c98a2;
  --line: #d6dee2;
  --line-strong: #c6d0d6;
  --yellow: #f6b719;
  --yellow-strong: #ffca28;
  --dark: #0d1519;
  --dark-2: #071015;
  --green: #009e73;
  --red: #e9414f;
  --container: 1224px;
  --header-height: 161px;
  font-family:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  overflow-x: hidden;
}

body.dark {
  color-scheme: dark;
  --bg: #050b0e;
  --surface: #111b20;
  --surface-strong: #17262d;
  --text: #eef4f6;
  --muted: #9ba9b2;
  --subtle: #70808a;
  --line: #223139;
  --line-strong: #32444f;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-top {
  position: relative;
  z-index: 120;
  overflow: visible;
  background: var(--dark);
  color: #eef4f6;
}

.header-top__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 192px;
  height: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pill-btn,
.plain-tool,
.icon-button,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #eef4f6;
}

.pill-btn {
  height: 42px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 700;
}

.mini-bolt {
  display: grid;
  width: 28px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #eeb514;
  color: #071015;
  font-size: 11px;
  font-weight: 900;
}

.plain-tool {
  height: 40px;
  font-weight: 700;
}

.language-menu {
  position: relative;
  z-index: 240;
}

.language-options {
  position: absolute;
  z-index: 500;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #121c21;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.language-menu.is-open .language-options {
  display: grid;
}

.language-options button {
  border: 0;
  background: transparent;
  color: #e9f0f3;
  padding: 11px 14px;
  text-align: left;
}

.language-options button:hover,
.language-options button.is-current {
  background: rgba(246, 183, 25, 0.14);
  color: var(--yellow-strong);
}

.plain-tool svg,
.icon-button svg,
.icon-link svg,
.search-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.icon-link {
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 700;
}

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.icon-button:hover,
.plain-tool:hover,
.icon-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.chevron {
  opacity: 0.78;
  line-height: 1;
}

.mobile-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--yellow);
  color: #050b0e;
}

.floating-mobile-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--yellow);
  color: #050b0e;
}

.mobile-toggle span,
.floating-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.floating-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.floating-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.floating-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  background: var(--yellow);
  color: #050b0e;
}

.main-nav__inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-links > span {
  display: inline-flex;
  height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links > span:hover {
  background: rgba(0, 0, 0, 0.08);
}

.search-button {
  display: grid;
  width: 48px;
  height: 40px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #050b0e;
}

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: ticker 34s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: inline-flex;
  flex: 0 0 auto;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
}

.up {
  color: var(--green);
}

.down {
  color: var(--red);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mobile-panel {
  display: none;
}

main {
  padding-top: 32px;
}

.ad-banner {
  position: relative;
  display: grid;
  min-height: 66px;
  grid-template-columns: 190px 1fr 200px 136px;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  color: var(--yellow-strong);
  padding: 12px 32px 12px 20px;
}

.ad-banner > * {
  min-width: 0;
}

.ad-banner + .ad-banner {
  margin-top: 28px;
}

.ad-logo img {
  width: 166px;
}

.ad-banner strong {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.ad-art {
  height: 52px;
  border-inline: 1px solid rgba(246, 183, 25, 0.2);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.1), rgba(246, 183, 25, 0.18)),
    repeating-linear-gradient(135deg, rgba(246, 183, 25, 0.2) 0 8px, transparent 8px 18px);
  opacity: 0.9;
}

.ad-banner button:not(.ad-close) {
  min-width: 128px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow-strong);
  color: #050505;
  padding: 10px 18px;
  font-weight: 900;
}

.ad-label {
  position: absolute;
  top: 8px;
  right: 28px;
  color: #d7d7d7;
  font-size: 12px;
}

.ad-close {
  position: absolute;
  top: 4px;
  right: 5px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #b9b9b9;
  color: #111;
  font-size: 15px;
  line-height: 1;
}

.ad-banner--compact {
  margin-top: 32px;
  grid-template-columns: 190px 1fr 136px;
}

.ad-banner--compact .ad-art {
  display: none;
}

.top-grid {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr) 288px;
  gap: 20px;
  margin-top: 34px;
}

.latest-column,
.brief-column {
  min-width: 0;
  align-self: stretch;
}

.latest-column {
  display: grid;
  grid-template-rows: auto repeat(9, minmax(56px, 1fr));
  padding-right: 20px;
  border-right: 1px solid var(--line-strong);
}

.brief-column {
  display: grid;
  grid-template-rows: auto repeat(7, minmax(76px, 1fr));
  padding-left: 20px;
  border-left: 1px solid var(--line-strong);
}

.latest-column h2,
.brief-column h2,
.main-column > h1 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.main-column > h1 {
  font-size: 23px;
}

.latest-column article,
.brief-column article {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
  margin-bottom: 0;
  align-content: start;
}

.latest-column article {
  grid-template-columns: 1fr auto;
}

.latest-column a,
.brief-column a {
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
}

.latest-column a:hover,
.brief-column a:hover,
.news-card h3:hover,
.text-card h3:hover,
.hero-card h2:hover {
  text-decoration: underline;
}

.latest-column time {
  color: var(--muted);
  font-size: 13px;
}

.brief-column time {
  display: block;
  margin-bottom: 6px;
  color: #9a6d14;
  font-size: 14px;
  font-weight: 600;
}

.brief-column article {
  display: block;
  padding-bottom: 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #071015;
  color: #fff;
}

.hero-card img {
  width: calc(100% + 80px);
  max-width: none;
  margin-left: -40px;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.2s ease;
}

.hero-card:hover img {
  opacity: 0.9;
}

.hero-card::after {
  position: absolute;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.hero-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: block;
  padding: 24px 18px 20px;
}

.hero-card h2 {
  margin: 0;
  color: #f4f7f8;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-card p {
  margin: 12px 0 14px;
  color: #d6dfe4;
  font-size: 15px;
  line-height: 1.55;
}

.hero-card span {
  color: #ccd5d9;
  font-size: 13px;
  font-weight: 700;
}

.hero-card time {
  margin-left: 10px;
  color: #96a4ad;
}

.press-card {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  min-width: 0;
}

.press-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
}

.press-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.press-card header div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9a6d14;
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  padding: 0;
}

.dot.is-active {
  background: var(--yellow);
  box-shadow: 0 0 0 2px rgba(246, 183, 25, 0.18);
}

.press-slides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0 20px 20px;
}

.press-slide {
  display: none;
  min-width: 0;
  min-height: 72px;
  padding-right: 24px;
}

.press-slide.is-active {
  display: block;
}

.press-slide h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.press-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
  margin-top: 28px;
}

.news-card,
.text-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.news-card a,
.text-card a,
.press-slide a {
  display: block;
}

.news-card a {
  overflow: hidden;
}

.news-card img {
  width: calc(100% + 68px);
  max-width: none;
  margin-left: -34px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
  outline: 1px solid rgba(0, 0, 0, 0.06);
}

.news-card h3,
.text-card h3 {
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.text-card h3 {
  margin-top: 0;
}

.news-card p,
.text-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-card time,
.text-card time {
  margin-left: 8px;
  color: var(--subtle);
}

.section-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.section-block--last {
  padding-bottom: 44px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.section-title span {
  color: var(--subtle);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 34px;
  align-items: start;
}

.category-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.category-hero h2 {
  font-size: clamp(21px, 2vw, 29px);
}

.category-grid--market .category-hero {
  grid-column: span 2;
}

.category-grid--reverse .category-hero {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
}

.detail-main {
  padding: 40px 0 60px;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 48px;
  align-items: start;
}

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

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.back-link:hover {
  color: var(--text);
}

.article-kicker {
  width: fit-content;
  border-radius: 999px;
  background: var(--yellow);
  color: #071015;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 900;
}

.article-detail h1 {
  margin: 18px 0 16px;
  color: var(--text);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.article-dek {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 650;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.source-link {
  color: #9a6d14;
}

.article-cover-frame {
  overflow: hidden;
  border-radius: 8px;
  outline: 1px solid var(--line);
}

.article-cover {
  width: calc(100% + 88px);
  max-width: none;
  margin-left: -44px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  margin-top: 30px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

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

.detail-sidebar {
  position: sticky;
  top: 190px;
  border-left: 1px solid var(--line-strong);
  padding-left: 24px;
}

.detail-sidebar h2 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
}

.related-item {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
  margin-bottom: 16px;
}

.related-item span {
  color: #9a6d14;
  font-size: 13px;
  font-weight: 850;
}

.related-item strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
}

.related-item time,
.related-empty {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: var(--dark);
  color: #c9d3d8;
  padding: 44px 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
}

.site-footer img {
  margin-bottom: 18px;
  filter: none;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: #9ba9b2;
  line-height: 1.7;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
}

.site-footer a,
.site-footer span {
  color: #aebac1;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--yellow);
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: start center;
  background: rgba(3, 8, 11, 0.64);
  padding: 120px 24px 24px;
}

.search-modal.is-open {
  display: grid;
}

.search-modal__box {
  position: relative;
  width: min(680px, 100%);
  border-radius: 8px;
  background: var(--bg);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.search-modal__box label {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.search-modal__box input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

.search-modal__box input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(246, 183, 25, 0.18);
}

.search-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 1160px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

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

  .brief-column {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-top: 24px;
  }

  .brief-column article {
    display: inline-block;
    width: calc(50% - 12px);
    vertical-align: top;
    margin-right: 18px;
  }

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

  .category-hero,
  .category-grid--reverse .category-hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .ad-banner {
    grid-template-columns: 170px 1fr 132px;
  }

  .ad-art {
    display: none;
  }

  .detail-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .detail-sidebar {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-left: 0;
    padding-top: 26px;
  }
}

@media (max-width: 840px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  main,
  .site-footer,
  .ticker {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .container {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .header-top__inner {
    position: relative;
    min-height: 56px;
    width: 100%;
    padding-left: 16px;
    padding-right: 56px;
    gap: 12px;
  }

  .brand img {
    width: 148px;
  }

  .header-tools,
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    position: fixed;
    top: 0;
    right: 0;
    display: block !important;
    z-index: 1000;
  }

  .floating-mobile-toggle {
    position: fixed;
    top: 0;
    right: 0;
    display: block !important;
    z-index: 2000;
  }

  .mobile-panel {
    display: grid;
    position: absolute;
    inset: 56px 0 auto;
    transform: translateY(-120%);
    gap: 0;
    background: var(--dark);
    color: #fff;
    transition: transform 0.22s ease;
  }

  .mobile-panel.is-open {
    transform: translateY(0);
  }

.mobile-panel a,
  .mobile-panel > span {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
  }

  .mobile-panel button {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    padding: 16px 24px;
    text-align: left;
    font-weight: 800;
  }

  .mobile-panel button.is-current {
    color: var(--yellow-strong);
  }

  .ticker__item {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  main {
    padding-top: 24px;
  }

  .ad-banner,
  .ad-banner--compact {
    min-height: 86px;
    grid-template-columns: 1fr 122px;
    gap: 12px;
    padding: 16px 34px 16px 18px;
  }

  .ad-logo {
    display: none;
  }

  .ad-banner strong {
    text-align: left;
    font-size: 23px;
    line-height: 1.15;
  }

  .ad-banner button:not(.ad-close) {
    min-width: 108px;
    padding-inline: 12px;
  }

  .top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .main-column {
    order: 1;
  }

  .latest-column {
    display: block;
    order: 2;
    padding-right: 0;
    border-right: 0;
    border-top: 1px solid var(--line-strong);
    padding-top: 24px;
  }

  .brief-column {
    display: block;
    order: 3;
  }

  .brief-column article {
    display: block;
    width: auto;
    margin-right: 0;
  }

  .hero-card__content {
    padding: 54px 16px 18px;
  }

  .hero-card h2 {
    font-size: 22px;
  }

  .hero-card p {
    display: none;
  }

  .press-slides,
  .two-card-grid {
    grid-template-columns: 1fr;
  }

  .main-column,
  .latest-column,
  .brief-column,
  .press-slides,
  .press-slide,
  .hero-card,
  .news-card,
  .text-card {
    min-width: 0;
    max-width: 100%;
  }

  .press-slide {
    padding-right: 0;
  }

  .category-grid,
  .category-grid--market,
  .category-grid--reverse {
    grid-template-columns: 1fr;
  }

  .category-hero,
  .category-grid--reverse .category-hero {
    grid-column: auto;
    grid-row: auto;
  }

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

  .detail-main {
    padding-top: 28px;
  }

  .article-detail h1 {
    font-size: 34px;
  }

  .article-dek {
    font-size: 17px;
  }

  .article-body {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .latest-column h2,
  .brief-column h2,
  .main-column > h1,
  .section-title {
    font-size: 20px;
  }

  .latest-column article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .two-card-grid {
    gap: 18px;
  }

  .ad-banner,
  .ad-banner--compact {
    grid-template-columns: 1fr;
  }

  .ad-banner button:not(.ad-close) {
    width: fit-content;
  }

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