:root {
  --bg-0: #040404;
  --bg-1: #0b0b0b;
  --bg-2: #17100a;
  --text: #f8f2eb;
  --muted: #ceb9a5;
  --line: rgba(255, 161, 56, 0.26);
  --line-strong: rgba(255, 161, 56, 0.52);
  --panel: rgba(16, 11, 7, 0.72);
  --panel-2: rgba(24, 14, 8, 0.68);
  --accent: #ff8a00;
  --accent-2: #ffc56e;
  --ok: #56d686;
  --danger: #ff7b63;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 11px;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.56);
  --container: min(1240px, 95vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 138, 0, 0.1), transparent 42%),
    linear-gradient(180deg, #000000, #050505 46%, #0b0704);
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
}

.bg-layer {
  display: none;
}

.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 138, 0, 0.2), transparent 43%),
    linear-gradient(170deg, rgba(7, 7, 7, 0.98), rgba(7, 5, 3, 0.98));
  transition: opacity 260ms ease, visibility 260ms ease;
}

.boot-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-box {
  width: min(620px, 92vw);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(18, 11, 7, 0.85), rgba(8, 8, 8, 0.78));
  box-shadow: var(--shadow);
  padding: clamp(0.95rem, 2.6vw, 1.45rem);
  text-align: center;
  backdrop-filter: blur(12px);
}

.boot-logo {
  width: clamp(240px, 40vw, 420px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 16px rgba(255, 145, 42, 0.55))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.48));
}

.boot-label {
  margin: 0.34rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Space Mono", monospace;
}

.boot-hint {
  margin: 0.15rem 0 0;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  color: #ffd7a3;
  min-height: 1.2em;
}

.boot-percent {
  margin: 0.34rem 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.2rem, 8.8vw, 3.9rem);
  line-height: 1;
  color: var(--accent);
}

.boot-progress {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  height: 14px;
  overflow: hidden;
}

.boot-progress > span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff8a00, #ffd27f);
  box-shadow: 0 0 22px rgba(255, 138, 0, 0.52);
  transition: width 180ms ease;
}

.top-shell,
.page-grid,
.site-footer {
  position: relative;
  z-index: 2;
}

.top-shell {
  width: var(--container);
  max-width: 100%;
  margin: 1rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(21, 13, 8, 0.8), rgba(8, 8, 8, 0.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(11px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
}

.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(300px, 36vw, 520px);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 190ms ease;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -16%;
  height: 34%;
  background: radial-gradient(circle at center, rgba(255, 140, 35, 0.58), rgba(255, 140, 35, 0));
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 146, 44, 0.5));
  transition: transform 190ms ease, filter 190ms ease;
  background: transparent;
}

.logo-wrap:hover,
.logo-wrap:focus-visible {
  transform: translateY(-2px);
}

.logo-wrap:hover .brand-logo,
.logo-wrap:focus-visible .brand-logo {
  transform: scale(1.055);
  filter:
    drop-shadow(0 0 24px rgba(255, 146, 44, 0.75))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.44));
}

.top-center {
  display: grid;
  gap: 0.32rem;
  justify-items: center;
  min-width: 0;
  width: 100%;
}

#last-sync {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-align: center;
}

.global-progress {
  width: min(460px, 100%);
}

#global-load-percent {
  display: block;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  line-height: 1;
  color: var(--accent);
}

.global-progress-bar {
  margin-top: 0.28rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.42);
  height: 10px;
  overflow: hidden;
}

.global-progress-bar > span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff8a00, #ffcd79);
  box-shadow: 0 0 15px rgba(255, 149, 50, 0.48);
  transition: width 180ms ease;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.locale-box {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.lang-select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 12, 7, 0.86);
  color: #ffe6c6;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.38rem 0.7rem;
  appearance: none;
  cursor: pointer;
}

.lang-select:focus {
  outline: 2px solid rgba(255, 168, 68, 0.45);
  outline-offset: 1px;
}

.top-btn,
.panel-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 12, 7, 0.84);
  color: #ffebd2;
  font-weight: 700;
  cursor: pointer;
}

.top-btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.top-btn:hover,
.panel-toggle:hover {
  border-color: var(--line-strong);
  background: rgba(255, 138, 0, 0.13);
}

.top-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  padding: 0.26rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 164, 66, 0.4);
  background: rgba(16, 10, 6, 0.72);
  color: var(--accent-2);
}

.page-grid {
  width: var(--container);
  max-width: 100%;
  margin: 0.95rem auto 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 0.95rem;
  align-items: start;
}

.page-grid > *,
.main-col > *,
.side-col > *,
.panel-shell,
.panel-content,
.media-grid,
.hero-card {
  min-width: 0;
}

.main-col,
.side-col {
  display: grid;
  gap: 0.95rem;
  width: 100%;
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  backdrop-filter: blur(11px);
}

.panel-shell {
  padding: 0.78rem;
  width: 100%;
}

.panel-content {
  margin-top: 0.62rem;
  width: 100%;
  overflow: hidden;
}

.panel-shell.is-collapsed .panel-content {
  display: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
}

.head-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.panel-toggle {
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

.hero-card {
  position: relative;
  min-height: min(74vh, 620px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 140, 35, 0.2), transparent 60%),
    linear-gradient(160deg, #090603, #080808);
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0.34;
  filter: saturate(1.24) contrast(1.08);
}

.hero-image {
  opacity: 0.78;
}

.hero-overlay {
  position: absolute;
  inset: auto 0.88rem 0.88rem 0.88rem;
  border: 1px solid rgba(255, 167, 68, 0.38);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(7, 6, 5, 0.76), rgba(24, 15, 9, 0.66));
  backdrop-filter: blur(8px);
  padding: 0.75rem;
}

.hero-overlay h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.2rem, 3.6vw, 2.2rem);
  line-height: 1.1;
}

.hero-meta {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.34rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-badge {
  border-radius: 999px;
  border: 1px solid rgba(95, 214, 136, 0.56);
  color: #dcffea;
  background: rgba(10, 45, 25, 0.52);
  padding: 0.1rem 0.48rem;
  text-transform: uppercase;
  font-size: 0.67rem;
}

.hero-badge.is-watch {
  border-color: rgba(255, 136, 102, 0.56);
  background: rgba(59, 17, 10, 0.54);
  color: #ffd7cf;
}

.hero-summary {
  margin: 0.44rem 0 0;
  line-height: 1.38;
  color: #fff2e3;
  font-size: 0.9rem;
}

.hero-link {
  display: inline-flex;
  margin-top: 0.58rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  padding: 0.34rem 0.66rem;
  color: #ffe8c9;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-link:hover {
  border-color: rgba(255, 196, 110, 0.74);
  background: rgba(255, 138, 0, 0.16);
}

.breaking-ticker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.62rem;
}

.breaking-shell .panel-content {
  margin-top: 0.75rem;
}

.ticker-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.58rem;
  text-decoration: none;
  color: #ffeedc;
  border: 1px solid rgba(255, 168, 67, 0.42);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(30, 16, 7, 0.84), rgba(8, 8, 8, 0.72));
  padding: 0.66rem;
  font-size: 0.89rem;
  min-height: 88px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ticker-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 194, 106, 0.82);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
}

.ticker-pill > span:last-child {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}

.ticker-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.25);
  border: 1px solid rgba(255, 163, 59, 0.6);
  font-family: "Space Mono", monospace;
  font-size: 0.71rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.76rem;
  width: 100%;
}

.news-card {
  position: relative;
  min-height: 305px;
  --card-accent: #ff9f43;
  border: 1px solid rgba(255, 162, 56, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #130d09;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.44);
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), rgba(255, 255, 255, 0));
  z-index: 4;
}

.news-card[data-mode="verified"] {
  --card-accent: #57d98e;
  border-color: rgba(87, 217, 142, 0.4);
}

.news-card[data-mode="favorites"] {
  --card-accent: #ffd273;
  border-color: rgba(255, 210, 115, 0.4);
}

.news-card[data-mode="wtf"] {
  --card-accent: #ff7662;
  border-color: rgba(255, 118, 98, 0.4);
}

.news-card[data-mode="all"][data-category="world"] {
  --card-accent: #ff9938;
  border-color: rgba(255, 153, 56, 0.3);
}

.news-card[data-mode="all"][data-category="tech"] {
  --card-accent: #4cc4ff;
  border-color: rgba(76, 196, 255, 0.34);
}

.news-card[data-mode="all"][data-category="ai"] {
  --card-accent: #ff7f3f;
  border-color: rgba(255, 127, 63, 0.34);
}

.news-card[data-mode="all"][data-category="discussion"] {
  --card-accent: #ff6f95;
  border-color: rgba(255, 111, 149, 0.34);
}

.news-card.is-wtf {
  border-color: rgba(255, 118, 100, 0.46);
}

.news-media,
.news-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-fallback {
  background: linear-gradient(145deg, rgba(255, 138, 0, 0.2), rgba(0, 0, 0, 0.82));
}

.news-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 6, 0.97), rgba(7, 6, 6, 0.5) 46%, rgba(7, 6, 6, 0.08));
}

.news-content {
  position: absolute;
  inset: auto 0 0;
  padding: 0.66rem;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.33rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 168, 69, 0.46);
  background: rgba(25, 16, 10, 0.65);
  color: #ffdcb5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.6rem;
  padding: 0.1rem 0.42rem;
}

.chip.ok {
  border-color: rgba(86, 214, 134, 0.56);
  color: #dbffea;
  background: rgba(10, 43, 24, 0.53);
}

.chip.watch {
  border-color: rgba(255, 116, 90, 0.58);
  color: #ffd9d0;
  background: rgba(52, 14, 10, 0.58);
}

.news-title {
  margin: 0.42rem 0 0;
  color: #fff9f3;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.news-meta {
  margin: 0.27rem 0 0;
  color: #f6d8b3;
  font-size: 0.72rem;
  word-break: break-word;
}

.news-summary {
  margin: 0.3rem 0 0;
  color: #f8efe5;
  font-size: 0.79rem;
  line-height: 1.38;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease;
}

.news-card.expanded .news-summary {
  max-height: 148px;
  opacity: 1;
}

.news-actions {
  margin-top: 0.43rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.expand-toggle,
.news-open,
.assistant-actions button,
.assistant-form button {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 12, 7, 0.8);
  color: #ffe8cc;
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.28rem 0.58rem;
  cursor: pointer;
}

.expand-toggle:hover,
.news-open:hover,
.assistant-actions button:hover,
.assistant-form button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 138, 0, 0.15);
}

.fav-btn {
  position: absolute;
  top: 0.52rem;
  right: 0.52rem;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 165, 67, 0.54);
  background: rgba(18, 11, 7, 0.7);
  color: #ffd9a8;
  font-size: 0.98rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fav-btn.is-fav {
  color: #fff0c2;
  border-color: rgba(255, 222, 132, 0.82);
  box-shadow: 0 0 16px rgba(255, 201, 95, 0.44);
}

.scroll-marker {
  margin-top: 0.62rem;
  border: 1px dashed rgba(255, 178, 82, 0.42);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--muted);
  padding: 0.42rem;
  font-size: 0.72rem;
}

.assistant-title {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.assistant-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 145, 42, 0.45));
}

.assistant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}

.assistant-form {
  margin-top: 0.54rem;
  display: flex;
  gap: 0.42rem;
}

.assistant-form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 75, 0.36);
  background: rgba(8, 8, 8, 0.82);
  color: #fff0de;
  padding: 0.46rem 0.7rem;
}

.assistant-form input::placeholder {
  color: #caa37d;
}

.assistant-form input:focus {
  outline: 2px solid rgba(255, 161, 57, 0.42);
  outline-offset: 1px;
}

.assistant-chat {
  margin-top: 0.48rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(14, 10, 7, 0.64);
  min-height: 36px;
  max-height: 110px;
  overflow-y: auto;
  padding: 0.42rem;
  display: grid;
  gap: 0.3rem;
}

.assistant-bubble {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #ffe5c4;
  padding: 0.32rem 0.42rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 165, 66, 0.2);
  background: rgba(255, 138, 0, 0.08);
}

.assistant-bubble.user {
  border-color: rgba(255, 212, 145, 0.38);
  background: rgba(255, 180, 95, 0.13);
}

.source-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.source-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 165, 66, 0.22);
  border-radius: 10px;
  background: rgba(20, 12, 7, 0.66);
  padding: 0.4rem 0.5rem;
}

.source-item strong {
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.source-meta {
  margin: 0.08rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.source-dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 10px rgba(255, 111, 89, 0.36);
}

.source-dot.ok {
  background: var(--ok);
  box-shadow: 0 0 10px rgba(86, 214, 134, 0.52);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
}

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

.counter-grid article {
  border: 1px solid rgba(255, 171, 72, 0.24);
  border-radius: 10px;
  background: rgba(18, 12, 7, 0.64);
  padding: 0.48rem;
}

.counter-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.71rem;
}

.counter-grid strong {
  display: block;
  margin-top: 0.14rem;
  color: #ffe7c4;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
}

.traffic-shell .source-list {
  margin-top: 0.6rem;
}

.empty-state {
  border: 1px dashed rgba(255, 167, 68, 0.36);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.82rem;
}

.site-footer {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(13, 9, 6, 0.72);
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0.62rem;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 1320px) {
  .top-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .top-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .locale-box {
    justify-content: center;
  }

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

  .side-col {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .top-shell,
  .page-grid,
  .site-footer {
    width: min(96vw, 96vw);
  }

  .logo-wrap {
    width: clamp(180px, 62vw, 280px);
  }

  .top-actions {
    justify-content: center;
  }

  .lang-select {
    font-size: 0.68rem;
    padding: 0.34rem 0.62rem;
  }

  .hero-card {
    min-height: 62vh;
  }

  .breaking-ticker {
    grid-template-columns: 1fr;
  }

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

  .assistant-actions {
    grid-template-columns: 1fr;
  }

  .assistant-form {
    flex-direction: column;
  }

  .assistant-form button {
    width: 100%;
  }

  .section-head {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

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