:root,
html[data-theme="day"] {
  color-scheme: light;
  --page: #eceff3;
  --header: #e5e9ef;
  --sidebar: #eef2f6;
  --surface: #f8fafc;
  --surface-raised: #ffffff;
  --surface-hover: #f3f6fa;
  --surface-active: #e6ebf3;
  --text: #20242d;
  --text-muted: #4f5c73;
  --text-soft: #74839f;
  --accent: #4857e0;
  --accent-hover: #3b40d5;
  --accent-soft: #dfe3fa;
  --line: #d4dbe6;
  --line-strong: #bcc7d8;
  --shadow-xs: 0 1px 2px rgb(34 37 48 / 0.06), 0 1px 3px rgb(34 37 48 / 0.04);
  --shadow-sm: 0 1px 3px rgb(34 37 48 / 0.08), 0 2px 6px -1px rgb(34 37 48 / 0.06);
  --shadow-md: 0 2px 6px -1px rgb(34 37 48 / 0.08), 0 6px 16px -2px rgb(34 37 48 / 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --sidebar-width: 200px;
  --feed-width: 640px;
  --layout-gap: var(--space-8);
  --shell-padding: var(--space-6);
  --container: calc(var(--sidebar-width) + var(--layout-gap) + var(--feed-width));
  --font-ui: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-heading: "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-title: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-reading: Georgia, "Times New Roman", serif;
  --font-meta: Verdana, Arial, sans-serif;
}

html[data-theme="night"] {
  color-scheme: dark;
  --page: #222530;
  --header: #303545;
  --sidebar: #2c3242;
  --surface: #262b37;
  --surface-raised: #2d3444;
  --surface-hover: #353d50;
  --surface-active: #3b4458;
  --text: #ffffff;
  --text-muted: #d4d8e3;
  --text-soft: #8491ac;
  --accent: #7185e9;
  --accent-hover: #9faff1;
  --accent-soft: #3532c3;
  --line: #3a4356;
  --line-strong: #505b79;
  --shadow-xs: 0 1px 2px rgb(0 0 0 / 0.28), 0 1px 3px rgb(0 0 0 / 0.18);
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.32), 0 2px 6px -1px rgb(0 0 0 / 0.24);
  --shadow-md: 0 2px 6px -1px rgb(0 0 0 / 0.34), 0 6px 16px -2px rgb(0 0 0 / 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-ui);
  text-rendering: optimizeLegibility;
  transition: background-color 100ms ease, color 100ms ease;
}

body {
  margin: 0;
  background: var(--page);
}

body.mobile-menu-open,
body.archive-modal-open {
  overflow: hidden;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 34%, transparent);
  outline-offset: 3px;
}

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

button {
  font: inherit;
}

.site-header {
  padding: var(--space-3) 0 var(--space-2);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--header) 86%, var(--page)) 0%,
    color-mix(in srgb, var(--header) 56%, var(--page)) 100%
  );
  border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
}

.site-header-inner,
.feed-layout {
  width: min(calc(100% - (var(--shell-padding) * 2)), var(--container));
  margin: 0 auto;
}

.site-header-inner {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, var(--feed-width));
  gap: var(--layout-gap);
  align-items: end;
  min-height: 0;
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-width: 0;
}

.brand-logo {
  display: block;
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: 128px;
  height: auto;
}

.brand-logo .logo-day {
  display: block;
}

.brand-logo .logo-night,
html[data-theme="day"] .brand-logo .logo-night,
html[data-theme="night"] .brand-logo .logo-day {
  display: none;
}

html[data-theme="day"] .brand-logo .logo-day,
html[data-theme="night"] .brand-logo .logo-night {
  display: block;
}

.header-panel {
  display: grid;
  gap: var(--space-2);
  justify-items: end;
  min-width: 0;
}

.header-panel-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
  width: 100%;
  padding-top: var(--space-2);
  border-top: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  min-width: 0;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-4);
  margin-right: auto;
  min-width: 0;
}

.header-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.header-links a:hover {
  color: var(--accent);
}

.header-links i {
  color: var(--accent);
  font-size: 12px;
}

.header-search {
  display: flex;
  align-items: center;
  flex: 0 1 248px;
  min-width: 220px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-raised) 92%, var(--header));
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.header-search:focus-within {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 36%, transparent), var(--shadow-xs);
}

.header-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 32px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 12px;
}

.header-search input:focus {
  outline: none;
}

.header-search input::placeholder {
  color: var(--text-soft);
}

.header-search button {
  width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.header-search button:hover {
  background: color-mix(in srgb, var(--accent-soft) 22%, transparent);
  color: var(--accent-hover);
}

.header-rates {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 10px;
  min-width: 0;
}

.header-rates--top {
  margin: 0;
}

.header-rate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-rate i {
  font-size: 11px;
}

.header-rate--eur i {
  color: #5d8dff;
}

.header-rate--usd i {
  color: #48b86a;
}

.header-rate--xau i {
  color: #d7a72b;
}

.theme-toggle {
  display: inline-flex;
  gap: var(--space-1);
  padding: var(--space-1);
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-raised) 90%, var(--header));
  box-shadow: var(--shadow-xs);
}

.theme-toggle button {
  min-width: 32px;
  min-height: var(--space-8);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
}

.theme-toggle button i {
  font-size: 13px;
}

.theme-toggle button:hover {
  color: var(--text);
}

.theme-toggle button.is-active,
.theme-toggle button[aria-pressed="true"] {
  background: var(--accent);
  color: #ffffff;
}

.theme-toggle--drawer {
  display: none;
}

.mobile-menu-toggle,
.mobile-menu-close,
.calendar-trigger,
.archive-modal-close {
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--header));
  color: var(--text);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-trigger {
  display: inline-flex;
  width: 32px;
  height: 32px;
  padding: 0;
  flex: 0 0 auto;
}

.mobile-menu-toggle:hover,
.mobile-menu-close:hover,
.calendar-trigger:hover,
.archive-modal-close:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 16%, var(--surface-hover));
  color: var(--accent);
}

.mobile-menu-toggle i,
.mobile-menu-close i,
.calendar-trigger i,
.archive-modal-close i {
  font-size: 15px;
}

.mobile-menu {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgb(17 20 28 / 0.4);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(88vw, 360px);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  padding: 18px 16px 16px;
  background: color-mix(in srgb, var(--surface-raised) 96%, var(--header));
  box-shadow: -12px 0 32px rgb(17 20 28 / 0.18);
  transform: translateX(100%);
  transition: transform 240ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
}

.mobile-menu-head-copy {
  display: grid;
  gap: 4px;
}

.mobile-menu-head-copy p,
.mobile-menu-section p {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mobile-menu-head-copy span {
  color: var(--text-soft);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.4;
}

.mobile-menu-close {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 0;
  flex: 0 0 auto;
}

.mobile-menu-body {
  display: grid;
  gap: 18px;
  flex: 1 0 auto;
  padding: 16px 2px 8px 0;
}

.mobile-menu-section {
  display: grid;
  gap: 10px;
}

.mobile-menu-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-links,
.mobile-menu-categories {
  display: grid;
  gap: 8px;
}

.mobile-menu-links a,
.mobile-menu-categories a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--surface));
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: var(--shadow-xs);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.mobile-menu-links a i,
.mobile-menu-categories a .category-menu-icon {
  color: var(--text-soft);
}

.mobile-menu-links a:hover,
.mobile-menu-categories a:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 16%, var(--surface-hover));
  color: var(--accent);
}

.mobile-menu-categories a.is-active {
  background: color-mix(in srgb, var(--accent-soft) 28%, var(--surface-active));
  color: var(--accent);
}

.mobile-menu-categories a.is-active .category-menu-icon {
  color: var(--accent);
}

.mobile-menu[data-open="true"] {
  pointer-events: auto;
}

.mobile-menu[data-open="true"] .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu[data-open="true"] .mobile-menu-drawer {
  transform: translateX(0);
}

.archive-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  visibility: hidden;
  pointer-events: none;
}

.archive-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(17 20 28 / 0.56);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.archive-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(100vh - 48px, 640px);
  max-height: min(100dvh - 48px, 640px);
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-raised) 97%, var(--header));
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.archive-modal-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.archive-modal-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  padding: 0;
  flex: 0 0 auto;
}

.archive-modal[data-open="true"] {
  visibility: visible;
  pointer-events: auto;
}

.archive-modal[data-open="true"] .archive-modal-backdrop {
  opacity: 1;
}

.archive-modal[data-open="true"] .archive-modal-dialog {
  transform: translateY(0) scale(1);
}

.archive-modal-dialog .archive-calendar {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feed-shell {
  min-height: calc(100vh - 120px);
  padding: var(--space-6) 0 calc(var(--space-8) + var(--space-4));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--header) 35%, var(--page)) 0%,
    var(--page) 220px
  );
}

.feed-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, var(--feed-width));
  gap: var(--layout-gap);
  align-items: start;
}

.feed-main,
.category-menu {
  min-width: 0;
}

.category-menu {
  grid-column: 1;
  position: sticky;
  top: var(--space-8);
  display: grid;
  gap: var(--space-3);
  align-content: start;
  align-self: start;
  max-height: calc(100vh - (var(--space-8) * 2));
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}

.feed-main {
  grid-column: 2;
  width: 100%;
  max-width: var(--feed-width);
  padding: 0 18px 18px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--surface));
  box-shadow: var(--shadow-xs);
}

.feed-brand {
  margin: 0 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.feed-brand span {
  display: block;
  color: var(--accent);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumb-nav {
  margin: 0 0 12px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.breadcrumb-item:not(:last-child)::after {
  margin-left: 10px;
  color: color-mix(in srgb, var(--accent) 26%, var(--text-soft));
  content: "/";
}

.breadcrumb-item a,
.breadcrumb-item span {
  color: inherit;
}

.breadcrumb-item.is-current {
  flex: 1 1 auto;
  overflow: hidden;
}

.breadcrumb-item.is-current span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.is-current {
  color: var(--text-muted);
}

.feed-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 4px;
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line-strong);
}

.feed-title h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0;
}

.feed-title span {
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  position: relative;
  margin: 0;
  padding: 0 0 14px 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
}

.news-item::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: color-mix(in srgb, var(--accent) 75%, #f08c2e);
  content: "";
}

.news-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-item > div {
  min-width: 0;
}

.news-heading-line {
  color: var(--text);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow-wrap: anywhere;
}

.news-item h2 {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
}

.news-title-link {
  display: inline;
  color: inherit;
}

.news-item h2 a {
  color: inherit;
}

.news-item h2 a:hover {
  color: var(--accent);
}

.news-item h2 a:visited {
  color: color-mix(in srgb, var(--text) 72%, var(--text-soft));
}

.news-inline-category {
  display: inline;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.news-inline-category::before {
  content: "\00a0";
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 4px;
  color: var(--text-muted);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.news-meta > span {
  display: inline-flex;
  align-items: center;
}

.news-meta-source {
  gap: 1px;
}

.news-meta > span:not(:last-child)::after {
  margin-left: 6px;
  color: var(--line-strong);
  content: "\00b7";
}

.source-link {
  color: var(--accent);
  font-weight: 400;
  text-decoration: none;
  transition: color 160ms ease;
}

.source-link:hover {
  color: var(--accent-hover);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2) var(--space-3);
  margin: 0 0 14px;
  padding: 0 0 12px 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
}

.pagination-bottom {
  margin: 14px 0 0;
  padding: 12px 0 0 12px;
  border-top: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-bottom: 0;
}

.pagination-summary {
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 10px;
  line-height: 1.4;
}

.pagination-summary span {
  margin: 0 4px;
  color: var(--line-strong);
}

.pagination-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.pagination-link,
.pagination-current {
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.pagination-link {
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--surface));
  color: var(--text-muted);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.pagination-link:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface-hover));
  color: var(--accent);
}

.pagination-link-nav {
  padding-inline: 10px;
}

.pagination-current {
  background: color-mix(in srgb, var(--accent-soft) 28%, var(--surface-active));
  color: var(--accent);
}

.pagination-separator {
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 11px;
  line-height: 1;
}

.press-review-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
}

.press-review-shortcuts a,
.press-review-backlink,
.press-review-current {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.press-review-shortcuts a,
.press-review-backlink {
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--surface));
  color: var(--text-muted);
}

.press-review-shortcuts a:hover,
.press-review-backlink:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface-hover));
  color: var(--accent);
}

.press-review-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
}

.press-review-current {
  background: color-mix(in srgb, var(--accent-soft) 28%, var(--surface-active));
  color: var(--accent);
}

.press-review-sections {
  display: grid;
  gap: 24px;
}

.press-review-section {
  scroll-margin-top: 88px;
}

.press-review-section-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin: 0 0 12px;
  padding: 12px 14px 12px 16px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-soft) 14%, var(--surface-raised)) 0%,
    color-mix(in srgb, var(--surface-raised) 94%, var(--surface)) 100%
  );
}

.press-review-section-head::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 10px 0 0 10px;
  background: var(--accent);
  content: "";
}

.press-review-section-head-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.press-review-section-kicker {
  color: var(--accent);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.press-review-section-head h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
}

.press-review-section-head p {
  margin: 0;
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 10px;
  line-height: 1.4;
}

.press-review-section-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 24%, var(--surface-active));
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.press-review-section-link:hover {
  color: var(--accent-hover);
}

.press-review-section .empty-state {
  padding: 0;
  border-top: 0;
}

.category-menu-inner {
  display: grid;
  gap: 0;
  padding: var(--space-3) 0 0;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--sidebar) 88%, var(--surface));
  box-shadow: var(--shadow-xs);
}

.category-menu-inner p {
  margin: 0;
  padding: 0 12px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.category-menu-inner a {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.category-menu-inner a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.category-menu-inner a:last-child {
  border-bottom: 0;
}

.category-menu-icon {
  width: 14px;
  color: var(--text-soft);
  text-align: center;
  flex: 0 0 14px;
  font-size: 11px;
}

.category-menu-inner a:hover {
  background: color-mix(in srgb, var(--surface-hover) 85%, var(--sidebar));
}

.category-menu-inner a.is-active {
  background: color-mix(in srgb, var(--accent-soft) 28%, var(--surface-active));
  color: var(--accent);
  box-shadow: none;
}

.category-menu-inner a.is-active {
  box-shadow: inset 3px 0 0 var(--accent);
}

.category-menu-inner a.is-active .category-menu-icon {
  color: var(--accent);
}

.archive-calendar {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-raised) 92%, var(--sidebar));
  box-shadow: var(--shadow-xs);
}

.archive-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.archive-calendar-head p {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.archive-calendar-today {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 22%, var(--surface-active));
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.archive-calendar-today:hover {
  color: var(--accent-hover);
}

.archive-calendar-toolbar {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 8px;
}

.archive-calendar-nav-form {
  margin: 0;
}

.archive-calendar-nav,
.archive-calendar-jump select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  background: color-mix(in srgb, var(--surface-raised) 95%, var(--surface));
}

.archive-calendar-nav {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 999px;
  color: var(--text-soft);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.archive-calendar-nav:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface-hover));
  color: var(--accent);
}

.archive-calendar-nav.is-disabled {
  color: color-mix(in srgb, var(--text-soft) 68%, transparent);
  cursor: default;
}

.archive-calendar-jump {
  min-width: 0;
}

.archive-calendar-jump select {
  width: 100%;
  min-width: 0;
  height: 28px;
  padding: 0 28px 0 10px;
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 11px,
    calc(100% - 9px) 11px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.archive-calendar-jump select:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  background-color: color-mix(in srgb, var(--accent-soft) 14%, var(--surface-hover));
}

.archive-calendar-jump select:focus {
  outline: none;
}

.archive-calendar-jump noscript button {
  margin-top: 6px;
  width: 100%;
  min-height: 26px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-raised) 95%, var(--surface));
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.archive-calendar-weekdays,
.archive-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.archive-calendar-weekdays span {
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.archive-calendar-day,
.archive-calendar-blank {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 7px;
}

.archive-calendar-blank {
  background: transparent;
}

.archive-calendar-day {
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  background: color-mix(in srgb, var(--surface-raised) 95%, var(--surface));
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.archive-calendar-day:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface-hover));
  color: var(--accent);
}

.archive-calendar-day.is-today {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line-strong));
  color: var(--accent);
}

.archive-calendar-day.is-selected {
  border-color: color-mix(in srgb, var(--accent) 46%, var(--line-strong));
  background: color-mix(in srgb, var(--accent-soft) 28%, var(--surface-active));
  color: var(--accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 16%, transparent);
}

.archive-calendar-day.is-empty {
  border-style: dashed;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  color: color-mix(in srgb, var(--text-soft) 62%, transparent);
}

.article,
.empty-state {
  border-top: 1px solid var(--line);
}

.article {
  padding-top: var(--space-6);
}

.article h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 31px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

.article .news-meta {
  margin-top: var(--space-3);
}

.article-body {
  max-width: none;
  margin-top: var(--space-6);
  color: var(--text-muted);
  font-family: var(--font-reading);
  font-size: 18px;
  line-height: 1.65;
}

.article-tags {
  display: grid;
  gap: 10px;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
}

.article-tags-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-tags-label i {
  color: var(--accent);
  font-size: 11px;
}

.article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--surface));
  color: var(--text-subtle);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.article-related {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
}

.article-related-header {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.article-related-kicker {
  margin: 0;
  color: color-mix(in srgb, var(--accent) 72%, var(--text-soft));
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-related h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.24;
}

.article-related-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-related-item {
  padding: 11px 12px 12px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-raised) 95%, var(--surface));
}

.article-related-link {
  color: var(--text-soft);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.38;
  text-decoration: none;
}

.article-related-link:hover {
  color: var(--accent);
}

.article-related-link:visited {
  color: var(--text-soft);
}

.article-related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
  margin-top: 5px;
  color: var(--text-muted);
  font-family: var(--font-meta);
  font-size: 10px;
  line-height: 1.45;
}

.article-related-meta > span {
  display: inline-flex;
  align-items: center;
}

.article-related-meta > span:not(:last-child)::after {
  margin-left: 6px;
  color: color-mix(in srgb, var(--line-strong) 72%, transparent);
  content: "\00b7";
}

.primary-action {
  margin-top: var(--space-6);
  margin-left: auto;
  padding: var(--space-2) var(--space-4);
  background: var(--accent);
  color: #ffffff;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-action:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.empty-state {
  padding: var(--space-6) 0;
  color: var(--text-muted);
  font-size: 14px;
}

.info-page {
  display: grid;
  gap: var(--space-4);
}

.info-page-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 10px;
}

.info-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 92%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-raised) 95%, var(--surface));
}

.info-highlight.is-link {
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.info-highlight.is-link:hover {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface-hover));
}

.info-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 26%, var(--surface-active));
  color: var(--accent);
  flex: 0 0 30px;
  font-size: 13px;
}

.info-highlight-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.info-highlight-copy strong {
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-highlight-copy span {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.info-page-sections {
  display: grid;
  gap: 0;
}

.info-page-section {
  padding: 16px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
}

.info-page-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-page-section h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.info-page-section p,
.info-page-list {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.65;
}

.info-page-section p {
  margin: 0 0 10px;
}

.info-page-section p:last-of-type {
  margin-bottom: 0;
}

.info-page-section a {
  color: var(--accent);
  font-weight: 600;
}

.info-page-list {
  margin: 10px 0 0 18px;
  padding: 0;
}

.info-page-list li + li {
  margin-top: 4px;
}

.site-footer {
  margin-top: var(--space-8);
  padding: 0 0 var(--space-6);
}

.site-footer-inner {
  width: min(calc(100% - (var(--shell-padding) * 2)), var(--container));
  margin: 0 auto;
  padding-top: 0;
}

.site-footer-panel {
  display: grid;
  gap: var(--space-3);
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 90%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-raised) 94%, var(--surface));
  box-shadow: var(--shadow-xs);
}

.site-footer-intro {
  display: flex;
  align-items: center;
  min-height: 0;
}

.site-footer-brand {
  width: fit-content;
}

.site-footer-brand img {
  width: 94px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 20px;
}

.site-footer-column p {
  margin: 0 0 8px;
  color: var(--text-soft);
  font-family: var(--font-meta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 6px;
}

.footer-link-list-network {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 0 6px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-link-item:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  color: var(--accent);
}

.footer-link-item:last-child {
  padding-bottom: 0;
}

.footer-link-item-icon i {
  color: var(--accent);
  font-size: 12px;
  flex: 0 0 12px;
}

.site-footer-meta {
  display: flex;
  justify-content: center;
  padding: 10px 0 0;
  color: var(--text-soft);
  font-family: var(--font-ui);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 1101px) {
  :root,
  html[data-theme="day"],
  html[data-theme="night"] {
    --sidebar-width: 236px;
    --feed-width: 848px;
    --layout-gap: 14px;
    --shell-padding: 28px;
    --desktop-type-kicker: 10px;
    --desktop-type-meta: 12px;
    --desktop-type-ui: 14px;
    --desktop-type-body: 15px;
    --desktop-type-title-sm: 21px;
    --desktop-type-title-md: 24px;
    --desktop-type-title-lg: 34px;
  }

  .site-header {
    padding: 14px 0 10px;
  }

  .site-header-inner {
    align-items: center;
  }

  .brand-logo img {
    width: 144px;
  }

  .header-panel {
    gap: 10px;
  }

  .header-panel-row {
    gap: 16px;
    padding-top: 10px;
  }

  .header-links {
    gap: 16px;
  }

  .header-links a {
    font-size: var(--desktop-type-ui);
    font-weight: 600;
  }

  .header-search {
    flex-basis: 332px;
    min-width: 280px;
  }

  .header-rates {
    gap: 8px 12px;
  }

  .header-search input {
    height: 38px;
    font-size: var(--desktop-type-ui);
  }

  .header-search button {
    width: 40px;
    height: 38px;
  }

  .theme-toggle button {
    min-width: 38px;
    min-height: 38px;
  }

  .header-actions {
    gap: 10px;
  }

  .theme-toggle button i {
    font-size: var(--desktop-type-ui);
  }

  .calendar-trigger--header {
    width: 38px;
    height: 38px;
  }

  .calendar-trigger--header i {
    font-size: var(--desktop-type-ui);
  }

  .feed-shell {
    padding: 28px 0 36px;
  }

  .feed-main {
    padding: 0 24px 22px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }

  .feed-brand {
    margin-bottom: 14px;
    padding-top: 16px;
  }

  .feed-brand span {
    font-size: var(--desktop-type-meta);
  }

  .breadcrumb-nav {
    margin-bottom: 14px;
  }

  .breadcrumb-item {
    font-size: 11px;
  }

  .feed-title {
    row-gap: 6px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .feed-title h1 {
    font-size: var(--desktop-type-title-md);
    font-weight: 600;
    line-height: 1.24;
  }

  .feed-title span {
    font-size: var(--desktop-type-meta);
    line-height: 1.5;
  }

  .news-item {
    padding: 0 0 20px 14px;
    margin-bottom: 20px;
  }

  .news-item::before {
    top: 9px;
    width: 6px;
    height: 6px;
  }

  .news-heading-line {
    font-size: 18px;
    line-height: 1.42;
  }

  .news-inline-category {
    font-size: 15px;
  }

  .news-meta {
    gap: 8px;
    margin-top: 8px;
    font-size: var(--desktop-type-meta);
    line-height: 1.5;
  }

  .news-meta > span:not(:last-child)::after {
    margin-left: 8px;
  }

  .pagination {
    margin-bottom: 18px;
    padding-bottom: 14px;
    padding-left: 14px;
  }

  .pagination-bottom {
    margin-top: 18px;
    padding-top: 14px;
    padding-left: 14px;
  }

  .pagination-summary {
    font-size: var(--desktop-type-meta);
  }

  .pagination-links {
    gap: 3px;
  }

  .pagination-link,
  .pagination-current {
    min-width: 32px;
    padding: 6px 10px;
    font-size: var(--desktop-type-meta);
  }

  .pagination-link-nav {
    padding-inline: 12px;
  }

  .pagination-separator {
    font-size: var(--desktop-type-meta);
  }

  .press-review-shortcuts,
  .press-review-filter {
    gap: 6px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .press-review-shortcuts a,
  .press-review-backlink,
  .press-review-current {
    min-height: 32px;
    padding: 0 12px;
    font-size: var(--desktop-type-meta);
  }

  .press-review-sections {
    gap: 20px;
  }

  .press-review-section-head {
    margin-bottom: 14px;
    padding: 14px 18px 14px 20px;
  }

  .press-review-section-kicker {
    font-size: 11px;
  }

  .press-review-section-head h2 {
    font-size: var(--desktop-type-title-sm);
    line-height: 1.22;
  }

  .press-review-section-head p,
  .press-review-section-link {
    font-size: var(--desktop-type-meta);
  }

  .press-review-section-link {
    min-height: 34px;
    padding-inline: 12px;
  }

  .category-menu-inner {
    padding-top: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }

  .category-menu {
    top: 20px;
    max-height: calc(100vh - 40px);
  }

  .category-menu-inner p {
    padding: 0 16px 10px;
    font-size: 11px;
  }

  .category-menu-inner a {
    font-size: var(--desktop-type-ui);
    font-weight: 600;
  }

  .category-menu-inner a {
    gap: 10px;
    padding: 10px 16px;
  }

  .category-menu-icon {
    width: 16px;
    flex: 0 0 16px;
    font-size: 13px;
  }

  .archive-calendar {
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }

  .archive-calendar-head p,
  .archive-calendar-today,
  .archive-calendar-weekdays span {
    font-size: var(--desktop-type-meta);
  }

  .archive-calendar-jump select {
    height: 32px;
    font-size: var(--desktop-type-meta);
  }

  .archive-calendar-day,
  .archive-calendar-blank {
    min-height: 30px;
  }

  .archive-calendar-day {
    font-size: var(--desktop-type-meta);
  }

  .article h1 {
    font-size: var(--desktop-type-title-lg);
    font-weight: 600;
    line-height: 1.18;
  }

  .info-page-highlights {
    gap: 12px;
  }

  .info-highlight {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .info-highlight-copy span {
    font-size: 15px;
  }

  .info-highlight-copy strong {
    font-size: var(--desktop-type-kicker);
  }

  .info-page-section h2 {
    font-size: var(--desktop-type-title-sm);
  }

  .info-page-section p,
  .info-page-list {
    font-size: var(--desktop-type-body);
  }

  .site-footer {
    margin-top: 32px;
    padding-bottom: 24px;
  }

  .site-footer-inner {
    padding-top: 0;
  }

  .site-footer-panel {
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }

  .site-footer-brand img {
    width: 108px;
  }

  .site-footer-grid {
    gap: 16px 20px;
  }

  .site-footer-column p {
    margin-bottom: 6px;
    font-size: var(--desktop-type-meta);
  }

  .footer-link-item {
    font-size: var(--desktop-type-ui);
  }

  .site-footer-meta {
    padding-top: 8px;
    font-size: var(--desktop-type-meta);
  }
}

@media (min-width: 1440px) {
  :root,
  html[data-theme="day"],
  html[data-theme="night"] {
    --sidebar-width: 248px;
    --feed-width: 920px;
    --layout-gap: 12px;
    --container: 1180px;
  }
}

@media (max-width: 1100px) {
  :root,
  html[data-theme="day"],
  html[data-theme="night"] {
    --shell-padding: var(--space-4);
    --layout-gap: var(--space-6);
  }

  .site-header-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .site-header-bar {
    width: 100%;
  }

  .brand-logo img {
    width: 120px;
  }

  .header-panel,
  .header-panel-row {
    width: 100%;
    justify-items: start;
  }

  .header-rates {
    justify-content: flex-start;
  }

  .header-panel-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "links theme"
      "search search";
    align-items: center;
    justify-content: stretch;
    gap: 10px 12px;
  }

  .header-links {
    grid-area: links;
    justify-content: flex-start;
    gap: 10px;
  }

  .header-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: none;
  }

  .header-actions {
    grid-area: theme;
    justify-self: end;
  }

  html.js .header-panel-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "search";
    gap: 10px;
  }

  html.js .header-links,
  html.js .header-actions {
    display: none;
  }

  html.js .mobile-menu-toggle {
    display: inline-flex;
  }

  html.js .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    visibility: hidden;
    pointer-events: none;
  }

  html.js .mobile-menu[data-open="true"] {
    visibility: visible;
  }

  html.js .theme-toggle--drawer {
    display: inline-flex;
    justify-self: start;
  }

  .calendar-trigger--drawer {
    width: 46px;
    height: 46px;
  }

  .feed-shell {
    padding: var(--space-6) 0 var(--space-8);
  }

  .feed-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }

  .feed-main {
    grid-column: auto;
    padding: 0 18px 18px;
  }

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

  .feed-brand span {
    font-size: 11px;
  }

  .breadcrumb-item {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .feed-title h1 {
    font-size: 20px;
  }

  .feed-title span,
  .news-meta,
  .pagination-summary {
    font-size: 11px;
  }

  .news-item {
    padding-left: 14px;
  }

  .news-item::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }

  .news-heading-line {
    font-size: 17px;
    line-height: 1.38;
  }

  .news-inline-category {
    display: none;
  }

  .mobile-menu-head-copy span,
  .mobile-menu-links a,
  .mobile-menu-categories a {
    font-size: 13px;
  }

  .mobile-menu-links a,
  .mobile-menu-categories a {
    min-height: 46px;
  }

  .header-search input {
    height: 36px;
    font-size: 13px;
  }

  .header-search button {
    width: 38px;
    height: 36px;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .footer-link-list-network {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pagination,
  .pagination-bottom {
    padding-left: 0;
  }

  .category-menu {
    display: none;
  }

  .press-review-shortcuts {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .press-review-shortcuts::-webkit-scrollbar {
    display: none;
  }

  .press-review-section-head {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-footer {
    margin-top: 18px;
    padding-bottom: 18px;
  }

  .site-footer-inner {
    display: grid;
    justify-items: center;
  }

  .site-footer-panel {
    display: none;
  }

  .site-footer-meta {
    padding-top: 0;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .site-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-link-list-network {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: var(--space-3);
  }

  .site-header-inner {
    gap: 10px;
  }

  .header-panel-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "links"
      "search"
      "theme";
    gap: 10px;
    padding-top: 8px;
  }

  .header-links {
    gap: 8px;
  }

  .header-links a {
    font-size: 12px;
  }

  .theme-toggle--header {
    justify-self: start;
  }

  html.js .header-panel-row {
    grid-template-areas: "search";
  }

  .header-search {
    max-width: 100%;
  }

  .header-search input {
    height: 34px;
    padding-inline: 11px;
    font-size: 13px;
  }

  .header-search button {
    width: 36px;
    height: 34px;
  }

  .mobile-menu-drawer {
    width: min(92vw, 360px);
    padding-inline: 14px;
  }

  .archive-modal {
    padding-inline: 12px;
  }

  .archive-modal-dialog {
    width: min(100%, 396px);
    max-height: min(100vh - 32px, 620px);
    max-height: min(100dvh - 32px, 620px);
    padding: 12px;
    border-radius: 16px;
  }

  .archive-calendar-toolbar {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .archive-calendar-nav {
    width: 44px;
    height: 44px;
  }

  .archive-calendar-jump select {
    height: 44px;
    padding: 0 36px 0 14px;
  }

  .feed-title {
    margin-bottom: var(--space-4);
  }

  .feed-title h1 {
    font-size: 19px;
  }

  .feed-main {
    padding-inline: 16px;
  }

  .news-item {
    padding-left: 12px;
  }

  .news-heading-line {
    font-size: 16px;
    line-height: 1.4;
  }

}
