:root {
  --red: #ed1c24;
  --red-dark: #b71017;
  --ink: #16191d;
  --muted: #65717c;
  --line: #dfe5ea;
  --soft: #f3f6f8;
  --blue: #7d96a9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

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

[hidden] {
  display: none !important;
}

/* Utility bar */

.utility-bar {
  background: var(--ink);
  color: #c9d2da;
}

.utility-bar-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 7px 0;
}

.utility-live-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.utility-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #e7ecf0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(237, 28, 36, .55); }
  70% { box-shadow: 0 0 0 8px rgba(237, 28, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0); }
}

.impact-chip {
  display: inline-flex;
  align-items: center;
  padding-left: 14px;
  margin-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.utility-most-read {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 24px;
  overflow: hidden;
}

.utility-most-read a {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 1 auto;
  min-width: 0;
  color: #c9d2da;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease;
}

.utility-most-read a:hover {
  color: var(--white);
}

.utility-most-read a span {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

.utility-most-read a em {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.utility-weather {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: 16px;
  color: #c9d2da;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.utility-weather-divider {
  color: #5a6570;
}

.utility-weather-city {
  color: #97a4ae;
  font-weight: 600;
}

.utility-weather [data-utility-temp] {
  color: var(--white);
  font-weight: 900;
}

/* Header */

.site-header {
  border-bottom: 10px solid var(--red);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-areas: "menu brand wordmark player";
  align-items: center;
  gap: 18px;
}

.brand-wordmark {
  grid-area: wordmark;
  justify-self: center;
  margin: 0;
  color: var(--red);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.7vw, 24px);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.menu-toggle {
  grid-area: menu;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.social-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.social-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-btn:hover,
.social-btn:focus-visible,
.store-btn:hover,
.store-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(.95);
}

.store-btn {
  height: 32px;
  display: inline-flex;
  align-items: center;
  transition: transform .2s ease, filter .2s ease;
}

.store-btn img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand {
  grid-area: brand;
  justify-self: start;
  width: 112px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

/* Radio player */

.radio-player {
  grid-area: player;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 20px 7px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 8px 22px rgba(22, 25, 29, .07);
}

.play-btn {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(237, 28, 36, .32);
  transition: background .2s ease, transform .2s ease;
}

.play-btn:hover {
  background: var(--red-dark);
  transform: scale(1.05);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  margin-left: 3px;
}

.play-btn.is-playing .play-icon {
  width: 14px;
  height: 16px;
  border: 0;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
  margin-left: 0;
}

.radio-info {
  display: grid;
  gap: 3px;
  line-height: 1.1;
}

.eyebrow,
.section-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.radio-info .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.radio-info .eyebrow .live-dot {
  width: 6px;
  height: 6px;
}

.radio-info strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.radio-info strong small {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 700;
}

.radio-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-left: 2px;
}

.radio-wave i {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--blue);
  opacity: .55;
}

.play-btn.is-playing ~ .radio-wave i {
  background: var(--red);
  opacity: 1;
  animation: radio-bar 1s ease-in-out infinite;
}

.play-btn.is-playing ~ .radio-wave i:nth-child(1) { animation-delay: 0s; }
.play-btn.is-playing ~ .radio-wave i:nth-child(2) { animation-delay: .15s; }
.play-btn.is-playing ~ .radio-wave i:nth-child(3) { animation-delay: .3s; }
.play-btn.is-playing ~ .radio-wave i:nth-child(4) { animation-delay: .45s; }

@keyframes radio-bar {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}

/* Category nav */

.main-nav {
  border-top: 1px solid var(--line);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.nav-links {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav a {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-bottom: 3px solid transparent;
  color: #26313b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Search */

.nav-search {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 190px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 36px 0 14px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  transition: border-color .2s ease, background .2s ease, width .2s ease;
}

.nav-search input:focus {
  width: 230px;
  border-color: var(--red);
  background: var(--white);
  outline: none;
}

.nav-search button {
  position: absolute;
  right: 4px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
}

.nav-search button:hover {
  color: var(--red);
}

.search-results {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 30;
  width: min(360px, 88vw);
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: var(--white);
  box-shadow: 0 22px 46px rgba(22, 25, 29, .18);
}

.search-results a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 6px;
}

.search-results a:hover {
  background: var(--soft);
}

.search-results strong {
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 700;
}

.search-empty {
  margin: 0;
  padding: 14px 10px;
  color: var(--muted);
  font-size: 13px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 56px;
}

.ad-banner {
  width: min(970px, 100%);
  aspect-ratio: 970 / 250;
  margin: 0 auto 24px;
  border: 1px dashed var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  background: linear-gradient(135deg, #f8fafb 0%, #eef3f6 100%);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ad-banner span {
  margin: auto;
}

.ad-banner a,
.ad-banner > img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.ad-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.ad-banner-spaced {
  margin-top: 32px;
}

/* Category tag pill (reused across hero, cards, most-read, columnists, detail) */

.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

/* Hero */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(320px, 40fr);
  gap: 24px;
  align-items: start;
}

.main-news {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 18px 42px rgba(22, 25, 29, .12);
}

.featured-news-track {
  display: flex;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}

.featured-news-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.news-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

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

.news-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, .82) 100%);
  pointer-events: none;
}

.news-media .cat-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.hero-flag {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(22, 25, 29, .68);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 30px 90px 30px 26px;
  display: grid;
  gap: 10px;
}

.hero-text h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.hero-text p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(237, 28, 36, .3);
  transition: background .2s ease, transform .2s ease;
}

.news-media:hover .hero-cta {
  background: var(--red-dark);
  transform: translateX(3px);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  padding: 0 18px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(237, 28, 36, .22);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.primary-link:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(237, 28, 36, .28);
}

.featured-news-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
}

.featured-news-controls button {
  pointer-events: auto;
}

.featured-news-controls > button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: rgba(22, 25, 29, .5);
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.featured-news-controls > button:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.featured-news-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(22, 25, 29, .55);
  backdrop-filter: blur(10px);
}

.featured-news-dots button {
  width: 20px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .48);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.featured-news-dots button.is-active {
  width: 30px;
  background: var(--red);
}

/* Side panel: most read + live */

.side-panel {
  display: grid;
  gap: 16px;
}

.most-read-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.panel-heading h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
}

.most-read-list {
  counter-reset: mostread;
  margin-top: 14px;
}

.most-read-list a {
  counter-increment: mostread;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.most-read-list a:first-child {
  padding-top: 0;
}

.most-read-list a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.most-read-list a::before {
  content: counter(mostread);
  flex: 0 0 auto;
  color: var(--soft);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--blue);
}

.most-read-list a > div {
  display: grid;
  gap: 6px;
}

.most-read-list strong {
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink);
}

.live-frame {
  aspect-ratio: 16 / 9;
  background: #101418;
  border-radius: 8px;
  overflow: hidden;
}

.live-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.live-cover {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.live-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: transform .25s ease, filter .25s ease;
}

.live-cover button {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(237, 28, 36, .32);
  transform: translate(-50%, -50%);
  transition: background .2s ease;
}

.live-cover:hover img {
  filter: brightness(.58);
  transform: scale(1.03);
}

.live-cover:hover button {
  background: var(--red-dark);
}

/* YouTube popout */

.youtube-popout {
  position: fixed;
  z-index: 60;
  width: min(360px, calc(100vw - 24px));
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .4);
}

.youtube-popout-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 8px 10px 14px;
  background: #101418;
  color: var(--white);
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.youtube-popout-bar:active {
  cursor: grabbing;
}

.youtube-popout-bar span {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.youtube-popout-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.youtube-popout-actions a,
.youtube-popout-actions button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  transition: background .2s ease;
}

.youtube-popout-actions a:hover,
.youtube-popout-actions button:hover {
  background: var(--red);
}

.youtube-popout-body {
  aspect-ratio: 16 / 9;
  background: #000;
}

.youtube-popout-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Section heading */

.section-heading {
  margin-bottom: 16px;
}

main > .section-heading {
  margin-top: 32px;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

/* News grid */

.news-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-card:hover {
  border-color: var(--red);
  box-shadow: 0 14px 30px rgba(22, 25, 29, .1);
  transform: translateY(-2px);
}

.news-card a {
  display: grid;
  height: 100%;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.news-card div {
  padding: 14px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.news-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.24;
  letter-spacing: 0;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* News detail page */

.news-detail-main {
  width: min(920px, calc(100% - 32px));
}

.news-detail {
  display: grid;
  gap: 24px;
}

.news-detail-header {
  display: grid;
  gap: 12px;
}

.news-detail-header > p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.news-detail-header h1 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-detail-meta span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fbfcfd;
}

.news-detail-image {
  margin: 0;
}

.news-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #f3f6f8;
}

.news-detail-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.news-detail-body {
  color: #26313b;
  font-size: 19px;
  line-height: 1.75;
}

.news-detail-body p {
  margin: 0 0 20px;
}

.news-detail-actions {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-detail-actions .primary-link {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.news-detail-empty {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.news-detail-empty h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}

/* Columnists */

.columnists-section {
  margin-top: 32px;
}

.columnists-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) var(--soft);
}

.columnist-card {
  position: relative;
  flex: 0 0 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  padding: 24px 18px 20px;
  text-align: center;
  scroll-snap-align: start;
  transition: border-color .2s ease, transform .2s ease;
}

.columnist-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--red);
}

.columnist-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.columnist-card img {
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--soft);
}

.columnist-card div {
  padding: 0;
}

.columnist-card .cat-tag {
  margin: 0 auto 10px;
}

.columnist-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

.columnist-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #c9d2da;
  padding: 40px 0 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

.footer-col ul a {
  font-size: 14px;
  color: #c9d2da;
  transition: color .2s ease;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-brand-col {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-brand {
  width: 118px;
}

.footer-brand-col p {
  margin: 0;
  color: #97a4ae;
  font-size: 13px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social .social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
}

.footer-social .social-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-apps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-apps .store-btn img {
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  color: #7a8791;
  font-size: 12px;
}

.admin-entry {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(92deg, rgba(7, 24, 54, .96), rgba(7, 24, 54, .82) 43%, rgba(255, 255, 255, .94) 43.2%, rgba(255, 255, 255, .98) 100%),
    radial-gradient(circle at 78% 14%, rgba(237, 28, 36, .2), transparent 24%),
    linear-gradient(135deg, #071836 0%, #0d3c80 45%, #ffffff 45.2%, #f3f6f8 100%);
}

.admin-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000 0 58%, transparent 92%);
}

.admin-entry-shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.admin-entry-scene {
  position: relative;
  min-height: clamp(420px, 56vw, 640px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.admin-entry-door {
  position: absolute;
  inset: 5% 9% 0;
  border-radius: 48% 48% 8px 8px / 34% 34% 8px 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .1), transparent 15% 85%, rgba(255, 255, 255, .14)),
    linear-gradient(180deg, #0d3c80, #071836 78%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .14),
    inset 0 0 0 16px rgba(255, 255, 255, .04),
    0 34px 82px rgba(0, 0, 0, .34);
  transform: perspective(900px) rotateY(-5deg);
}

.admin-entry-door::before,
.admin-entry-door::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .14);
}

.admin-entry-door::before {
  left: 50%;
  top: 7%;
  bottom: 0;
  width: 1px;
}

.admin-entry-door::after {
  left: 12%;
  right: 12%;
  top: 48%;
  height: 1px;
}

.admin-entry-card {
  position: relative;
  z-index: 2;
  width: min(420px, 82%);
  aspect-ratio: 1 / 1.08;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, .26);
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(243, 246, 248, .95)),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(7, 24, 54, .04) 20px 21px);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, .32),
    -24px 24px 0 rgba(237, 28, 36, .95),
    24px -24px 0 rgba(13, 60, 128, .82);
  transform: rotate(-3deg);
}

.admin-entry-card img {
  width: min(280px, 100%);
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(7, 24, 54, .14));
}

.admin-entry-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #0d3c80;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.admin-entry-strip {
  position: absolute;
  z-index: 1;
  width: clamp(118px, 18vw, 190px);
  min-height: 150px;
  border: 1px solid rgba(7, 24, 54, .16);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .18);
}

.admin-entry-strip::before {
  content: "";
  display: block;
  height: 13px;
  margin: 16px;
  background: var(--red);
}

.admin-entry-strip::after {
  content: "";
  display: block;
  height: 76px;
  margin: 0 16px;
  background:
    linear-gradient(#071836 0 9px, transparent 9px 18px),
    linear-gradient(#071836 0 9px, transparent 9px 18px),
    linear-gradient(#071836 0 9px, transparent 9px 18px),
    linear-gradient(#0d3c80 0 100%);
  background-size: 100% 18px, 76% 18px, 58% 18px, 100% 100%;
  background-position: 0 0, 0 28px, 0 56px, 0 0;
  background-repeat: no-repeat;
  opacity: .84;
}

.admin-entry-strip-left {
  left: 0;
  bottom: 10%;
  transform: rotate(8deg);
}

.admin-entry-strip-right {
  right: 3%;
  top: 7%;
  transform: rotate(-10deg);
}

.admin-entry-copy {
  display: grid;
  gap: 18px;
  color: var(--ink);
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(7, 24, 54, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 56px rgba(7, 24, 54, .13);
}

.admin-entry-copy .section-label {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  color: var(--white);
  background: #071836;
}

.admin-entry-copy h1 {
  max-width: 9ch;
  margin: 0;
  color: #071836;
  font-size: clamp(56px, 9vw, 112px);
  line-height: .8;
  letter-spacing: 0;
}

.admin-entry-copy p {
  margin: 0;
  max-width: 54ch;
  color: #34465a;
  font-size: 18px;
  line-height: 1.6;
}

.admin-entry-form {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.admin-entry-form label {
  display: grid;
  gap: 7px;
  color: #6f8194;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-entry-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  text-transform: none;
  background: var(--white);
}

.admin-entry-form input:focus {
  outline: 3px solid rgba(237, 28, 36, .16);
  border-color: var(--red);
}

.admin-entry-feedback {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.admin-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-logo {
  width: 118px;
}

.admin-logo img {
  width: 100%;
  height: auto;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-actions a,
.admin-actions button,
.secondary-btn {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-actions a:hover,
.admin-actions button:hover,
.secondary-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.admin-main {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-hero {
  grid-column: 2;
  grid-row: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #16191d 0%, #303b45 100%);
  color: var(--white);
  padding: 28px;
  overflow: hidden;
}

.admin-hero h1 {
  margin: 6px 0 8px;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .96;
  letter-spacing: 0;
}

.admin-hero p:last-child {
  max-width: 620px;
  margin: 0;
  color: #d9e0e6;
  font-size: 18px;
  line-height: 1.45;
}

.admin-menu {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  position: sticky;
  top: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: 0 16px 34px rgba(22, 25, 29, .08);
}

.admin-menu button {
  width: 100%;
  min-height: 72px;
  border: 1px solid #e7edf2;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 8px 18px rgba(22, 25, 29, .04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.admin-menu-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef3f6;
  color: var(--red);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(125, 150, 169, .18);
}

.admin-menu button strong,
.admin-menu button small {
  display: block;
}

.admin-menu button strong {
  font-size: 15px;
  line-height: 1.15;
}

.admin-menu button small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.admin-menu button:hover,
.admin-menu button.is-active {
  border-color: var(--red);
  background: #ffffff;
  color: var(--red);
  box-shadow: 0 14px 30px rgba(237, 28, 36, .14);
  transform: translateY(-2px);
}

.admin-menu button.is-active .admin-menu-icon {
  background: var(--red);
  color: var(--white);
}

.admin-menu button.is-active small {
  color: var(--red-dark);
}

.admin-tab-panel {
  grid-column: 2;
  display: none;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 24px;
}

.admin-tab-panel.is-active {
  display: grid;
}

.admin-tab-panel.news-admin-panel {
  grid-template-columns: 1fr;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.admin-title {
  margin-bottom: 18px;
}

.admin-title h1,
.admin-title h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.news-form {
  display: grid;
  gap: 14px;
}

.news-editor-form {
  gap: 22px;
}

.news-editor-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.news-image-panel {
  display: grid;
  gap: 12px;
}

.news-fields-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-fields-panel .span-2 {
  grid-column: 1 / -1;
}

.news-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.news-form label > span {
  color: #6f8194;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-form input,
.news-form select,
.news-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  background: var(--white);
}

.news-form textarea {
  resize: vertical;
}

.news-form input:focus,
.news-form select:focus,
.news-form textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(237, 28, 36, .12);
}

.upload-box {
  border: 1px dashed var(--blue);
  border-radius: 8px;
  padding: 16px;
  background: #f7fafc;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-box strong {
  width: fit-content;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-size: 14px;
}

.upload-box small {
  color: var(--muted);
  font-weight: 600;
}

.image-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-dropzone {
  position: relative;
  min-height: 200px;
  border: 2px dashed #d9e3ed;
  border-radius: 8px;
  padding: 16px;
  display: grid !important;
  place-items: center;
  overflow: hidden;
  background: #f8fafc;
  color: #71869b;
  cursor: pointer;
}

.image-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.image-dropzone .image-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  aspect-ratio: auto;
}

.image-dropzone-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.image-dropzone-copy::before {
  content: "□";
  color: #c9d7e4;
  font-size: 11px;
  line-height: 1;
}

.image-dropzone-copy strong {
  color: #51647a;
  font-size: 14px;
  line-height: 1.15;
}

.image-dropzone-copy small {
  color: #71869b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.field-note {
  margin: 0;
  color: #7b91a7;
  font-size: 12px;
  line-height: 1.45;
}

.publish-field {
  display: grid;
  gap: 12px;
}

.date-time-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 8px;
}

.editor-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.editor-toolbar {
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fbfcfd;
}

.editor-toolbar button {
  width: 42px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.editor-toolbar button:hover,
.editor-toolbar button:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.editor-shell textarea {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  resize: vertical;
}

.editor-shell textarea:focus {
  border-color: transparent;
  outline: 0;
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-editor-form .form-actions {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.form-actions .primary-link {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

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

.admin-news-item {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fbfcfd;
}

.admin-news-item img {
  width: 128px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.admin-news-item img.is-square {
  aspect-ratio: 1;
}

.admin-news-item h3 {
  margin: 4px 0 6px;
  font-size: 18px;
  line-height: 1.15;
}

.admin-news-item h4 {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.admin-news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.item-actions {
  display: flex;
  gap: 8px;
}

.item-actions button {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.item-actions button:hover {
  border-color: var(--red);
  color: var(--red);
}

.empty-state {
  margin: 0;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
}

@media (max-width: 900px) {
  .utility-most-read,
  .utility-weather {
    display: none;
  }

  .admin-entry {
    background:
      radial-gradient(circle at 70% 4%, rgba(237, 28, 36, .22), transparent 28%),
      linear-gradient(180deg, #071836 0 48%, #ffffff 48.2% 100%);
  }

  .admin-entry-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .admin-entry-copy {
    order: -1;
  }

  .admin-entry-copy h1 {
    max-width: 8ch;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "menu brand"
      "player player";
    row-gap: 14px;
    min-height: auto;
    padding: 16px 0;
  }

  .brand {
    justify-self: center;
  }

  .brand-wordmark {
    display: none;
  }

  .radio-player {
    width: 100%;
    justify-self: stretch;
  }

  .main-nav {
    justify-content: flex-start;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    border-top: 0;
    transition: max-height .25s ease;
  }

  .main-nav.is-open {
    max-height: 70vh;
    padding: 12px 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }

  .nav-search {
    width: 100%;
    padding: 0 4px 12px;
  }

  .nav-search input,
  .nav-search input:focus {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    overflow-x: visible;
  }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
    padding: 14px 4px;
  }

  .main-nav a:hover {
    border-bottom-color: var(--line);
    border-left-color: var(--red);
  }

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

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

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

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .admin-main {
    grid-template-columns: 1fr;
  }

  .admin-menu {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }

  .admin-hero {
    grid-column: 1;
    grid-row: auto;
  }

  .admin-tab-panel {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .news-editor-layout,
  .news-fields-panel {
    grid-template-columns: 1fr;
  }

  .news-fields-panel .span-2 {
    grid-column: auto;
  }

  .image-dropzone {
    min-height: 180px;
  }

  .admin-news-item {
    grid-template-columns: 108px 1fr;
  }

  .item-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .admin-entry-shell {
    width: min(100% - 20px, 1180px);
    padding: 20px 0 34px;
  }

  .admin-entry-scene {
    min-height: 360px;
  }

  .admin-entry-strip {
    display: none;
  }

  .admin-entry-card {
    width: min(300px, 78%);
    box-shadow:
      0 24px 56px rgba(0, 0, 0, .3),
      -14px 14px 0 rgba(237, 28, 36, .95),
      14px -14px 0 rgba(13, 60, 128, .82);
  }

  .admin-entry-copy {
    padding: 18px;
  }

  .admin-entry-copy h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

  .site-header {
    position: static;
  }

  .utility-bar-inner,
  .header-inner,
  .main-nav,
  main {
    width: min(100% - 20px, 1180px);
  }

  .utility-live {
    font-size: 11px;
  }

  .radio-info strong {
    font-size: 13px;
  }

  .admin-panel {
    padding: 16px;
  }

  .date-time-row {
    grid-template-columns: 1fr;
  }

  .editor-toolbar {
    flex-wrap: wrap;
  }

  .news-editor-form .form-actions {
    justify-content: stretch;
  }

  .news-editor-form .form-actions button {
    flex: 1 1 150px;
  }

  .news-media {
    aspect-ratio: 4 / 5;
  }

  .hero-text {
    padding: 20px 18px 22px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .featured-news-controls > button {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

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

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

  .footer-brand-col {
    grid-column: auto;
  }

  .admin-header {
    width: min(100% - 20px, 1180px);
  }

  .admin-main {
    width: min(100% - 20px, 1180px);
  }

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

  .admin-news-item img {
    width: 100%;
  }
}
