:root {
  --ink: #111;
  --soft-ink: #343434;
  --muted: #68645f;
  --line: #ded8ce;
  --paper: #fbfaf7;
  --panel: #fff;
  --gold: #b8892c;
  --red: #b52224;
  --green: #0b6b5a;
  --blue: #1d4e89;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.45;
}

body.locked {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border-radius: 4px;
}

.wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.topbar-inner,
.masthead-inner,
.breaking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner {
  padding: 8px 0;
}

.masthead {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.masthead-inner {
  position: relative;
  padding: 10px 0 8px;
  min-height: 118px;
}

.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

.brand-logo {
  width: min(150px, 24vw);
  max-height: 96px;
  height: auto;
  object-fit: contain;
}

.icon-button,
.solid-button,
.ghost-button,
.danger-button,
.tab-button {
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.icon-button {
  width: 42px;
  font-size: 19px;
  display: inline-grid;
  place-items: center;
}

#searchButton {
  min-height: 36px;
  width: 36px;
  border-color: transparent;
  background: transparent;
  color: #111;
}

#searchButton:hover,
#searchButton:focus-visible {
  border-color: var(--line);
  background: transparent;
}

.search-glyph {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-glyph::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.solid-button,
.ghost-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.solid-button {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.danger-button {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

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

.account-button {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 0 13px;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.nav a.active {
  color: var(--gold);
}

.breaking {
  border-bottom: 1px solid var(--line);
  background: #f2ece0;
  font-family: Arial, Helvetica, sans-serif;
}

.breaking-inner {
  justify-content: flex-start;
  padding: 10px 0;
}

.breaking span {
  flex: 0 0 auto;
  background: var(--red);
  color: #fff;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breaking p {
  margin: 0;
  font-size: 14px;
}

main {
  min-height: 70vh;
  padding: 34px 0 62px;
}

.page-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.95;
}

.section-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.lead-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.live-list,
.panel,
.story-card,
.admin-card,
.metric,
.comment,
.poll-box {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.live-item,
.compact-story,
.comment {
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.live-link {
  display: block;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.live-link:hover,
.live-link:focus-visible {
  background: #fffaf0;
  border-color: #d6c49f;
}

.live-link .kicker {
  margin-bottom: 5px;
}

.live-link .muted {
  margin: 8px 0 0;
  font-size: 13px;
}

.live-item.editing {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.live-item:last-child,
.compact-story:last-child {
  border-bottom: 0;
}

.time {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.live-item h3,
.compact-story h3,
.story-card h3,
.opinion-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hero-story {
  background: #fff;
  border-bottom: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero-media {
  height: clamp(300px, 44vw, 500px);
  background: #ddd;
}

.hero-copy {
  padding: 24px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.summary {
  margin: 13px 0 0;
  color: #3d3d3d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.thumb {
  position: relative;
  display: block;
  height: 170px;
  background: #ddd;
  overflow: hidden;
}

.thumb-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  gap: 3px;
  padding: 8px 9px;
  background: rgba(17, 17, 17, 0.74);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.thumb-caption strong {
  max-height: 46px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.18;
}

.thumb-caption em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-card {
  min-width: 0;
  box-shadow: none;
  overflow: hidden;
}

.story-card .story-body {
  padding: 15px;
}

.story-card.large {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.story-card.large .thumb {
  height: 100%;
  min-height: 260px;
}

.story-card.large .thumb-caption {
  display: none;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.story-list {
  display: grid;
  gap: 18px;
}

.cms-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  align-items: stretch;
}

.cms-row + .two-column {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.alert-strip {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding: 13px 16px;
  background: #fff7e3;
  border: 1px solid #e6cf93;
  font-family: Arial, Helvetica, sans-serif;
}

.alert-strip strong {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.campaign-box {
  background: #101010;
  color: #fff;
  padding: 18px;
  border: 1px solid #101010;
  min-width: 0;
}

.campaign-box .kicker {
  color: var(--gold);
}

.campaign-box h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.campaign-box p {
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.78);
}

.context-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  margin-top: 22px;
}

.timeline {
  margin: 0;
  padding-left: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.timeline li {
  margin-bottom: 8px;
}

.meta {
  margin-top: 9px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.band {
  margin-top: 42px;
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 34px;
  margin-top: 36px;
}

.live-detail-header {
  border-top: 5px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.video-feature {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.video-feature img {
  position: absolute;
  inset: 0;
  opacity: 0.62;
}

.video-copy {
  position: relative;
  max-width: 650px;
  padding: 28px;
}

.play {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
}

.video-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.video-copy .summary {
  color: rgba(255, 255, 255, 0.88);
}

.newsletter,
.contact-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--green);
  color: #fff;
  padding: 28px;
}

.admin-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 28px;
  align-items: start;
}

.admin-login-card {
  display: grid;
  gap: 14px;
}

.admin-login-card h2 {
  margin: 0;
  font-size: 28px;
}

.admin-login-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.admin-login-features span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-heading .page-title {
  margin-bottom: 0;
}

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

.newsletter h2,
.contact-card h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.05;
}

.contact-details-card {
  display: grid;
  gap: 10px;
}

.contact-details-card p {
  margin: 0;
}

.contact-details-card a {
  color: var(--red);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-row,
.filters,
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filters {
  margin-bottom: 14px;
}

.filters input,
.filters select {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.filters input {
  flex: 1 1 280px;
}

.form-row input,
.form-row select,
.form-row textarea,
.field input,
.field select,
.field textarea,
.search-panel input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.form-row input {
  min-width: min(340px, 100%);
}

.field {
  display: grid;
  gap: 7px;
  font-family: Arial, Helvetica, sans-serif;
}

.field label,
.search-panel label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
}

.article-header {
  background: #fff;
  border-bottom: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.article-header .hero-media {
  height: clamp(280px, 50vw, 560px);
}

.article-header .hero-copy {
  max-width: 850px;
}

.article-body {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(20px, 4vw, 42px);
  font-size: 20px;
}

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

.share-bar,
.article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.drawer,
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(0, 0, 0, 0.42);
}

.drawer.open,
.search-overlay.open {
  display: block;
}

.drawer-panel,
.search-panel {
  width: min(460px, 92vw);
  height: 100%;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.drawer-panel {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}

.drawer-panel h2 {
  margin: 0 0 12px;
}

.search-panel {
  width: min(720px, 92vw);
  height: auto;
  min-height: 360px;
  margin: 8vh auto;
}

.auth-panel {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.auth-panel h2 {
  margin: 0;
  font-size: 34px;
}

.auth-panel form {
  display: grid;
  gap: 12px;
}

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

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.provider-button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.provider-button span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.reader-strip {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #d6c49f;
  background: #fffaf0;
  color: var(--soft-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.profile-metrics {
  margin-top: 20px;
}

.live-help {
  margin-bottom: 16px;
}

.drawer-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  padding-bottom: 18px;
  scrollbar-width: thin;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.drawer-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.drawer-links h3 {
  margin: 14px 0 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-links a,
.search-result {
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.drawer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.drawer-links .drawer-tabs a {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.drawer-links .drawer-tabs a:hover,
.drawer-links .drawer-tabs a:focus-visible {
  background: #2a2a2a;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-height: 55vh;
  overflow: auto;
}

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

.admin-sidebar,
.admin-main {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.admin-tabs {
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 190px);
  overflow: auto;
}

.tab-button {
  width: 100%;
  text-align: left;
  padding: 11px 12px;
}

.tab-button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.metric {
  padding: 16px;
  box-shadow: none;
}

.metric strong {
  display: block;
  font-size: 30px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-card {
  padding: 16px;
  box-shadow: none;
  min-width: 0;
  overflow: hidden;
}

.agent-console {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
}

.agent-output {
  min-height: 360px;
  background: #101010;
  color: #fff;
}

.agent-output .muted {
  color: rgba(255, 255, 255, 0.72);
}

.agent-output pre {
  max-height: 520px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  color: #f7f1e3;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.admin-main .table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.table th,
.table td {
  padding: 11px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table td:first-child,
.table td:nth-child(3) {
  white-space: normal;
  min-width: 180px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: #eee7da;
  color: var(--soft-ink);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.status-published {
  background: #dcefe8;
  color: var(--green);
}

.status-draft {
  background: #f6dfdf;
  color: var(--red);
}

.status-review {
  background: #e4ecf8;
  color: var(--blue);
}

.status-admin,
.status-editor {
  background: #111;
  color: #fff;
}

.status-reader {
  background: #eee7da;
  color: var(--soft-ink);
}

.status-scheduled {
  background: #f2ead8;
  color: #86601c;
}

.status-hidden {
  background: #ececec;
  color: #555;
}

.status-approved {
  background: #dcefe8;
  color: var(--green);
}

.audit-line {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.media-card {
  background: #fff;
  border: 1px solid var(--line);
}

.media-card img {
  height: 160px;
}

.media-card div {
  padding: 13px;
}

.media-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 160px;
}

.profile-card img,
.mini-profile img {
  height: 100%;
  min-height: 140px;
}

.profile-card div {
  padding: 15px;
}

.profile-card h2,
.profile-card h3,
.mini-profile h3 {
  margin: 0;
  line-height: 1.1;
}

.profile-wide {
  grid-template-columns: 190px 1fr;
}

.mini-profile {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.mini-profile img {
  min-height: 86px;
  height: 86px;
}

.mini-profile div,
.profile-card div,
.story-body {
  min-width: 0;
}

.mini-profile h3,
.profile-card h2,
.profile-card h3,
.story-card h3,
.campaign-box h3 {
  overflow-wrap: anywhere;
}

.task-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
}

.task-item:last-child {
  border-bottom: 0;
}

.poll-box {
  padding: 18px;
  box-shadow: none;
}

.poll-options {
  display: grid;
  gap: 10px;
}

.poll-option {
  display: grid;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.bar {
  height: 10px;
  background: #eee7da;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--gold);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: 340px;
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 0.22s ease;
}

.toast.show {
  transform: translateY(0);
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 34px 0;
  font-family: Arial, Helvetica, sans-serif;
}

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

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .lead-grid,
  .two-column,
  .page-layout,
  .newsletter,
  .contact-card,
  .admin-shell,
  .admin-login-layout,
  .agent-console,
  .footer-grid,
  .context-grid,
  .cms-row {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .metrics,
  .admin-grid,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    display: block;
  }

  .masthead-inner {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo {
    width: min(118px, 38vw);
  }

  .masthead-actions .solid-button,
  .account-button {
    display: none;
  }

  .nav {
    display: none;
  }

  .story-grid,
  .metrics,
  .admin-grid,
  .media-grid,
  .profile-card,
  .profile-wide,
  .live-list,
  .story-card.large {
    grid-template-columns: 1fr;
  }

  .alert-strip {
    display: grid;
  }

  .thumb {
    height: 220px;
  }

  .form-row {
    display: grid;
  }

  .table {
    display: block;
    overflow-x: auto;
  }

  .search-panel {
    margin: 4vh auto;
  }

  .drawer-panel {
    width: min(360px, 88vw);
    padding: 18px;
  }

  .drawer-actions,
  .drawer-tabs {
    grid-template-columns: 1fr;
  }

  .admin-heading {
    display: grid;
    align-items: start;
  }
}
