:root {
  --ink: #050607;
  --paper: #151b21;
  --bone: #f0eee6;
  --muted: #9fa4a3;
  --line: rgba(240, 238, 230, .22);
  --acid: #e3aa24;
  --red: #862a34;
  --cyan: #6d8796;
  --display: "Barlow", Arial, sans-serif;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--display);
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font: 800 .75rem/1 var(--display);
  text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }
.mrc-privacy-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 6, 7, .72);
  backdrop-filter: grayscale(1) blur(2px);
}
.mrc-privacy-gate[hidden] { display: none; }
.mrc-privacy-gate__panel {
  display: grid;
  width: min(620px, 100%);
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--acid);
  background: var(--paper);
}
body.mrc-privacy-gate-pending { overflow: hidden; }
.mrc-privacy-gate__logo {
  display: block;
  width: min(360px, 82%);
  height: auto;
  margin: 0 auto 1.35rem;
}
.mrc-privacy-gate__copy { min-width: 0; text-align: center; }
.mrc-privacy-gate__copy strong {
  display: block;
  color: var(--bone);
  font: 900 1rem/1 var(--display);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.mrc-privacy-gate__copy p {
  margin: .75rem 0 0;
  color: #d3d1c8;
  font: 500 .95rem/1.55 var(--display);
}
.mrc-privacy-gate__legal {
  display: inline-block;
  margin-top: .8rem;
  color: var(--acid);
  font: 700 .75rem/1.3 var(--display);
  text-underline-offset: 3px;
}
.mrc-privacy-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
}
.mrc-privacy-gate__button {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  padding: .65rem .85rem;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font: 800 .62rem/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mrc-privacy-gate__button--reject { border-color: #a6323e; background: #862a34; color: #fff; }
.mrc-privacy-gate__button--accept { border-color: #4e965f; background: #4e965f; color: #fff; }
.mrc-privacy-gate__button:hover { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.mrc-privacy-gate__button:focus-visible { outline: 0; }
.mrc-privacy-gate__legal:hover,
.mrc-privacy-gate__legal:focus-visible { color: var(--bone); outline: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--bone);
  font: 800 .68rem/1.15 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  margin-right: .45rem;
  padding: .28rem .4rem;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  border: 1px solid;
  font: 800 .68rem/1 var(--display);
  text-decoration: none;
  transition: transform .15s, background .15s, color .15s;
}
.button:hover { transform: translate(-3px, -3px); }
.button--primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

/* Shared header */
.ticker {
  isolation: isolate;
  display: flex;
  height: 32px;
  align-items: center;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  font: 900 .62rem/1 var(--display);
  letter-spacing: .06em;
}
.ticker > strong {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 .9rem;
  background: var(--red);
  color: #fff;
  white-space: nowrap;
}
.ticker__window {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation: crawl 28s linear infinite;
}
.ticker__track span {
  display: block;
  flex: 0 0 auto;
  white-space: nowrap;
}
.ticker__track a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
.ticker__track a:hover,
.ticker__track a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@keyframes crawl {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-25%, 0, 0); }
}

.masthead {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 2px solid var(--line);
}
.brand {
  display: block;
  width: clamp(220px, 28vw, 340px);
  flex: 0 0 auto;
  text-decoration: none;
}
.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}
.primary-nav a {
  position: relative;
  padding: .35rem 0;
  color: var(--bone);
  font: 800 .68rem/1 var(--display);
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--acid);
  transition: right .2s;
}
.primary-nav a:hover::after { right: 0; }
.primary-nav a.is-active {
  padding: .42rem .55rem;
  background: var(--red);
  color: #fff;
}
.primary-nav a.is-active::after { display: none; }
.menu-toggle {
  display: none;
  border: 0;
  padding: .7rem .8rem;
  background: var(--acid);
  color: var(--ink);
  font: 900 .68rem/1 var(--display);
}

/* Latest article feed */
.reviews-home { width: 100%; overflow: clip; }
.reviews-list {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.latest-feed { padding: clamp(1.25rem, 2vw, 2rem) 0 4rem; }
.latest-feed__subtitle {
  margin: 0 0 1rem;
  color: var(--bone);
  font: 800 clamp(1.15rem, 2vw, 1.7rem)/1.1 var(--display);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.latest-feed__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font: 700 .62rem/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.latest-feed__summary span:last-child { text-align: right; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.review-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(215px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--bone);
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}
.review-card:hover {
  border-color: var(--acid);
  transform: translateY(-5px);
}
.review-card:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}
.review-card__art {
  position: relative;
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #0b0d0f;
}
.review-card__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08);
  transition: transform .35s, filter .35s;
}
.review-card:hover .review-card__art img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.12);
}
.review-card__body {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.1rem;
  overflow: hidden;
}
.review-card__topline,
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}
.review-card__topline {
  color: var(--muted);
  font: 800 .58rem/1 var(--display);
  letter-spacing: .07em;
}
.review-card__topline > span {
  display: inline-block;
  margin-right: .25rem;
  padding: .28rem .4rem;
  background: var(--red);
  color: #fff;
  font-size: .52rem;
}
.review-card__topline time {
  color: var(--muted);
  font-size: .54rem;
  white-space: nowrap;
}
.review-card__title {
  display: -webkit-box;
  margin: 1rem 0 .85rem;
  overflow: hidden;
  color: var(--bone);
  font: 800 clamp(1.25rem, 1.8vw, 2.1rem)/.97 var(--display);
  letter-spacing: -.01em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.review-card__title-band {
  display: block;
  color: var(--acid);
  font-size: .92em;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.review-card__title-album {
  color: var(--bone);
  font-size: .76em;
  font-weight: 700;
}
.latest-card--news:not(.latest-card--headline) .review-card__title {
  padding-bottom: .08em;
  font-size: clamp(1.12rem, 1.55vw, 1.8rem);
  line-height: 1.04;
}
.review-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #d3d1c8;
  font: 500 .92rem/1.42 var(--display);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.review-card__footer {
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 800 .56rem/1 var(--display);
}
.review-card__arrow {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
}
.sponsored-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(215px, .92fr);
}
.sponsored-card .review-card__title {
  padding-bottom: .12em;
  line-height: 1.05;
}
.sponsored-card .review-card__excerpt {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.sponsored-card .review-card__art { order: 2; }
.sponsored-card .review-card__body { order: 1; }
.sponsored-admin-table th:nth-child(2),
.sponsored-admin-table td:nth-child(2) { width: 7rem; }
.sponsored-admin-table th:nth-child(3),
.sponsored-admin-table td:nth-child(3) { width: 6rem; text-align: center; }
.sponsored-admin-table th:nth-child(4),
.sponsored-admin-table td:nth-child(4) { width: 8rem; }
.sponsored-admin-table th:nth-child(5),
.sponsored-admin-table td:nth-child(5) { width: 18rem; }
.review-score {
  position: absolute;
  right: .85rem;
  bottom: .85rem;
  z-index: 2;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--score-color, var(--acid));
  color: var(--ink);
  font: 900 3.2rem/1 var(--display);
  text-align: center;
}
.empty-state {
  margin: 0;
  padding: 2.5rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font: 800 1rem/1 var(--display);
  text-align: center;
}

@media (min-width: 761px) {
  .latest-feed .latest-card {
    height: clamp(215px, calc((100vw - 3rem) * .23), 292px);
    min-height: 0;
  }
  .latest-feed .latest-card--headline {
    height: auto;
    aspect-ratio: 5 / 2;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: stretch;
  }
  .latest-card--headline .review-card__art {
    height: 100%;
    aspect-ratio: 1 / 1;
  }
  .latest-card--headline .review-card__body {
    min-height: 0;
    padding: clamp(1.35rem, 2.2vw, 2.15rem);
    overflow: hidden;
  }
  .latest-card--headline .review-card__title {
    display: block;
    flex: 0 0 auto;
    margin: clamp(1rem, 1.55vw, 1.45rem) 0 .7rem;
    padding-bottom: .12em;
    overflow: hidden;
    font-size: clamp(2.25rem, 3.1vw, 3.35rem);
    line-height: 1.02;
  }
  .latest-card--headline .review-card__title.is-clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .latest-card--headline .review-card__excerpt {
    display: -webkit-box;
    min-height: 0;
    max-width: 46rem;
    flex: 0 1 auto;
    overflow: hidden;
    font-size: clamp(.95rem, 1.15vw, 1.1rem);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .latest-card--headline .review-card__excerpt.is-hidden { display: none; }
  .latest-card--headline .review-card__footer { flex: 0 0 auto; }
}

.pagination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--line);
}
.pagination__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.pagination__page,
.pagination__direction,
.pagination__ellipsis {
  display: inline-flex;
  min-width: 2.25rem;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  color: var(--bone);
  font: 800 .62rem/1 var(--display);
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}
.pagination__direction:first-child { justify-self: start; }
.pagination__direction:last-child { justify-self: end; }
.pagination a:hover,
.pagination a:focus-visible { border-color: var(--acid); color: var(--acid); }
.pagination__page.is-current { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.pagination__direction.is-disabled { opacity: .35; }
.pagination__ellipsis { min-width: auto; border-color: transparent; color: var(--muted); }

/* Article pages */
.review-header {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.75rem, 3vw, 2.75rem) 0 1rem;
}
.review-identity__band {
  margin: 0 0 .45rem;
  color: var(--acid);
  font: 800 clamp(2.1rem, 4.9vw, 5.1rem)/.9 var(--display);
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.review-story h1 {
  max-width: 100%;
  margin: 0;
  font: 800 clamp(2rem, 3.9vw, 4.3rem)/.95 var(--display);
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.news-story .review-identity__band { display: block; font-size: clamp(.9rem, 1.5vw, 1.15rem); line-height: 1.15; letter-spacing: .06em; color: var(--muted); }
.review-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: .9rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 800 .62rem/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-header__meta span,
.review-header__meta time { display: inline-flex; align-items: center; }
.review-header__meta a { color: inherit; text-decoration: none; }
.review-header__meta a:hover,
.review-header__meta a:focus-visible { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }
.review-story__dek {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: #d3d1c8;
  font: 500 clamp(1.1rem, 1.8vw, 1.45rem)/1.35 var(--display);
}
.draft-preview-banner {
  display: flex;
  width: min(1160px, calc(100% - 2rem));
  align-items: center;
  gap: .8rem;
  margin: 1rem auto 0;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  background: var(--paper);
  color: var(--muted);
  font: 700 .68rem/1.2 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.draft-preview-banner span {
  display: inline-block;
  flex: 0 0 auto;
  padding: .3rem .45rem;
  background: var(--red);
  color: #fff;
  font-size: .58rem;
  letter-spacing: .08em;
}
.draft-preview-banner strong { color: var(--bone); font-weight: 700; }

.article-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .9rem;
}
.article-admin-actions a {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  padding: .55rem .75rem;
  border: 1px solid var(--acid);
  background: rgba(5, 6, 7, .72);
  color: var(--bone);
  font: 800 .6rem/1 var(--display);
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-admin-actions a:hover,
.article-admin-actions a:focus-visible { background: var(--acid); color: var(--ink); }

.review-main-layout {
  display: grid;
  width: min(1160px, calc(100% - 2rem));
  grid-template-columns: minmax(0, 1fr) minmax(235px, 280px);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  margin: 0 auto;
  padding: 1.25rem 0 1rem;
}
.review-main-column { min-width: 0; }
.review-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}
.review-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-story figcaption { display: none; }
.review-main-column .review-prose { width: 100%; padding: clamp(2.5rem, 5vw, 4rem) 0 0; }
.review-prose > p {
  margin: 0 0 1.6rem;
  color: #d9d6ca;
  font: 400 1.12rem/1.78 Georgia, serif;
}
.review-prose > p:first-of-type::first-letter {
  float: left;
  margin: .05em .12em 0 0;
  color: var(--red);
  font: 900 5.8rem/.72 var(--display);
}
.article-lead-phrase {
  color: var(--red);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.review-prose blockquote {
  margin: 2.4rem -2rem;
  padding: 1.7rem 2rem;
  background: var(--red);
  color: var(--ink);
  font: italic 800 clamp(1.9rem, 3.2vw, 3.6rem)/.95 var(--display);
}
.review-prose .story__inline-image {
  margin: 2.2rem -1.6rem 2.7rem;
  background: #0b0d0f;
}
.review-prose .story__inline-image img { display: block; width: 100%; height: auto; object-fit: contain; }
.story__youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 2rem;
  overflow: hidden;
  background: #000;
}
.story__youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.story__end-media { margin-top: 2rem; }
.review-main-layout > .review-rail {
  position: sticky;
  top: 1.5rem;
  align-self: start;
}
.review-score-panel {
  padding: .9rem 0 .6rem;
  border-top: 4px solid var(--acid);
}
.review-score-panel .eyebrow { color: var(--bone); }
.review-score-panel__number {
  display: grid;
  width: clamp(112px, 10vw, 148px);
  height: clamp(112px, 10vw, 148px);
  place-items: center;
  margin: 1.1rem auto .9rem;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--score-color, var(--acid));
  color: var(--ink);
  font: 900 clamp(5.3rem, 6.8vw, 6.7rem)/1 var(--display);
  text-align: center;
}
.review-score-panel__summary { margin: 0; color: #d3d1c8; font: 500 .96rem/1.45 var(--display); }
.review-rail__block { padding-top: .9rem; border-top: 4px solid var(--acid); }
.review-rail__block + .review-rail__block { margin-top: 2rem; }
.review-rail__facts { margin-top: 1.7rem; }
.review-facts-list { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem .8rem; }
.review-facts-list__item { min-width: 0; padding-bottom: .65rem; border-bottom: 1px solid var(--line); }
.review-facts-list__item span { display: block; margin-bottom: .3rem; color: var(--muted); font: 800 .5rem/1 var(--display); letter-spacing: .08em; }
.review-facts-list__item strong { display: block; overflow-wrap: anywhere; color: var(--bone); font: 700 .72rem/1.2 var(--display); }
.review-tracklist { margin: 1rem 0 0; padding: 0; list-style: none; counter-reset: track; }
.review-tracklist li {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: .45rem;
  padding: .63rem 0;
  border-bottom: 1px solid var(--line);
  color: #d3d1c8;
  font: 500 .8rem/1.2 var(--display);
  counter-increment: track;
}
.review-tracklist li::before { content: counter(track, decimal-leading-zero); color: var(--acid); font: 800 .58rem/1.2 var(--display); }
.review-rail__empty { margin: 1rem 0 0; color: var(--muted); font: 500 .8rem/1.35 var(--display); }
.review-spotify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.5rem;
  padding: .9rem 1rem;
  background: var(--red);
  color: #fff;
  font: 900 .63rem/1 var(--display);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.review-spotify + .review-instagram { margin-top: .55rem; }
.review-spotify:hover,
.review-spotify:focus-visible {
  background: var(--acid);
  color: var(--ink);
  outline: 0;
}
.review-spotify b::before { color: #fff; }
.review-spotify:hover b::before,
.review-spotify:focus-visible b::before { color: var(--ink); }
.review-spotify b,
.about-contact__email b {
  position: relative;
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}
.review-spotify b::before,
.about-contact__email b::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.review-spotify b::before,
.about-contact__email b::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--ink);
  transform: translate(-60%, -40%) rotate(45deg);
}
.review-rail__tags { margin-top: 1.5rem; }
.review-rail__tags > div { display: flex; flex-wrap: wrap; gap: .35rem; }
.review-rail__tags > div a {
  display: inline-block;
  max-width: min(100%, 18rem);
  overflow: hidden;
  padding: .34rem .42rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font: 800 .54rem/1 var(--display);
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.review-rail__tags > div a:hover,
.review-rail__tags > div a:focus-visible { border-color: var(--red); background: var(--red); color: #fff; }

.news-story .review-cover {
  width: min(1160px, calc(100% - 2rem));
  aspect-ratio: 16 / 9;
  margin: 1.25rem auto 0;
}
.news-story .review-body-layout {
  display: block;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 1rem;
}
.news-story .news-rail { position: static; margin-top: 2rem; }
.news-story .news-rail .review-rail__block { margin: 0; }
.review-prose > p.interview-question {
  margin-top: 2.25rem;
  padding-left: 1rem;
  border-left: 4px solid var(--red);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.45;
}
.review-prose > p.interview-answer { margin-top: -.5rem; }
.review-prose > p.interview-question:first-of-type::first-letter,
.review-prose > p.interview-answer:first-of-type::first-letter { float: none; margin: 0; color: inherit; font: inherit; }

.related-articles {
  width: min(1160px, calc(100% - 2rem));
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--line);
}
.related-articles__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.related-articles__head .eyebrow { margin: 0; }
.related-articles__head h2 {
  margin: 0;
  color: var(--bone);
  font: 800 clamp(1.45rem, 2.5vw, 2.2rem)/1 var(--display);
  text-transform: uppercase;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.related-article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--bone);
  text-decoration: none;
  transition: border-color .18s, transform .18s;
}
.related-article:hover,
.related-article:focus-visible {
  border-color: var(--acid);
  transform: translateY(-3px);
  outline: 0;
}
.related-article__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
}
.related-article__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-article__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: .85rem;
}
.related-article__type {
  color: var(--acid);
  font: 800 .54rem/1.2 var(--display);
  letter-spacing: .07em;
}
.related-article__body strong {
  display: -webkit-box;
  margin-top: .5rem;
  overflow: hidden;
  font: 800 .95rem/1.15 var(--display);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.next-blast { padding: 1rem; background: transparent; color: var(--bone); text-align: center; }

/* About and 404 */
.about-page {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.75rem, 3.5vw, 3.5rem) 0 0;
}
.about-hero,
.about-body,
.about-contact {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}
.about-hero { padding-bottom: 2rem; }
.about-body { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.about-contact { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.about-hero h1,
.about-body__heading h2,
.about-contact h2,
.not-found h1 {
  margin: 0;
  font: 800 clamp(2rem, 3.9vw, 4.3rem)/.95 var(--display);
  letter-spacing: -.012em;
}
.about-hero__dek,
.about-body__copy,
.about-contact__copy,
.not-found__copy {
  width: 100%;
  max-width: 720px;
  justify-self: start;
}
.about-hero__dek { margin: 0; color: #d3d1c8; font: 500 clamp(1rem, 1.4vw, 1.25rem)/1.4 var(--display); }
.about-body__copy p { margin: 0 0 1.5rem; color: #d3d1c8; font: 500 clamp(1rem, 1.45vw, 1.2rem)/1.55 var(--display); }
.about-body__copy p:last-child { margin-bottom: 0; }
.about-contact__copy p,
.not-found__copy p { max-width: 32rem; margin: 0; color: var(--muted); font: 500 1rem/1.45 var(--display); }
.about-contact__email {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.25rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--acid);
  color: var(--bone);
  font: 800 clamp(1rem, 1.8vw, 1.45rem)/1.1 var(--display);
  letter-spacing: .02em;
  text-decoration: none;
}
.about-contact__email:hover { color: var(--acid); }
.about-contact__icon {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--acid);
}
.about-contact__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.about-contact__email:hover .about-contact__icon { color: var(--bone); }
.not-found__panel { min-height: clamp(26rem, 58vh, 38rem); }

/* Search */
.search-results { padding-bottom: clamp(3.5rem, 6vw, 5rem); }
.search-form { min-width: 0; margin-bottom: 1.5rem; }
.search-form__controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.search-form input {
  min-width: 0;
  height: 3.25rem;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  padding: 0 1rem;
  outline: 0;
  background: var(--paper);
  color: var(--bone);
  font: 600 1rem/1 var(--display);
}
.search-form input:focus { border-color: var(--acid); }
.search-form button {
  min-width: 7rem;
  border: 0;
  padding: 0 1.25rem;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font: 900 .68rem/1 var(--display);
  letter-spacing: .08em;
}
.search-form button:hover,
.search-form button:focus-visible { background: var(--acid); color: var(--ink); }
.search-empty { text-transform: none; }

/* Legal */
.legal-page {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0 1rem;
}
.legal-hero { padding-bottom: 2rem; border-bottom: 3px solid var(--acid); }
.legal-hero h1 { margin: 0; font: 800 clamp(3rem, 7vw, 6.5rem)/.88 var(--display); letter-spacing: -.015em; }
.legal-hero > p:last-child { margin: 1rem 0 0; color: var(--muted); font: 700 .7rem/1 var(--display); letter-spacing: .06em; text-transform: uppercase; }
.legal-copy { max-width: 760px; padding: 2.5rem 0 1rem; }
.legal-copy section { margin: 0 0 1.8rem; padding: 0 0 1.8rem; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 .8rem; color: var(--acid); font: 800 clamp(1.35rem, 2.5vw, 2rem)/1 var(--display); text-transform: uppercase; }
.legal-copy p { margin: 0 0 1rem; color: #d3d1c8; font: 500 1rem/1.65 var(--display); }
.legal-copy p:last-child { margin-bottom: 0; }
.legal-copy a { color: var(--bone); text-decoration-color: var(--acid); text-underline-offset: 3px; }

/* Footer */
.site-footer {
  display: grid;
  width: min(var(--max), calc(100% - 2rem));
  grid-template-columns: minmax(210px, .65fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin: 2rem auto 0;
  padding: 3.5rem 0;
  border-top: 2px solid var(--line);
}
.footer-mark { width: min(250px, 100%); }
.footer-logo { display: block; width: 100%; height: auto; }
.site-footer p { max-width: 560px; margin: .45rem 0 0; color: var(--muted); font: 500 .78rem/1.5 var(--display); }
.site-footer .eyebrow { margin: 0; color: var(--bone); }
.site-footer .footer-copy { margin: 0; color: var(--muted); font: 800 .58rem/1 var(--display); white-space: nowrap; }
.footer-admin-link { color: inherit; text-decoration: none; }
.footer-copy__divider { display: inline-block; margin: 0 .65rem; color: var(--muted); font: inherit; }
.footer-legal { color: var(--muted); font: inherit; letter-spacing: inherit; text-decoration: none; }
.footer-legal:hover,
.footer-legal:focus-visible { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }

/* Shared administration interface */
.admin {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.25rem, 2vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
}
.admin-panel,
.spotify-panel,
.instagram-auth-panel {
  margin: 1rem 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  background: var(--paper);
}
.admin-panel > h2,
.spotify-panel > h2,
.admin-section-title {
  margin: 0 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font: 800 1rem/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.admin-panel__note,
.spotify-note {
  max-width: 900px;
  margin: -.25rem 0 1rem;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}
.admin-login-panel { width: 100%; max-width: none; }
.admin-login-panel input[type="text"],
.admin-login-panel input[type="password"] {
  background: var(--ink) !important;
  color: var(--bone) !important;
  caret-color: var(--bone);
  color-scheme: dark;
}
.admin-login-panel input:autofill,
.admin-login-panel input:-moz-autofill {
  background: var(--ink) !important;
  color: var(--bone) !important;
  box-shadow: 0 0 0 1000px var(--ink) inset !important;
}
.admin-login-panel input:-webkit-autofill,
.admin-login-panel input:-webkit-autofill:hover,
.admin-login-panel input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--bone) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--ink) inset !important;
  caret-color: var(--bone);
}
.admin-login-form { display: grid; gap: 1rem; }
.admin-login-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.admin-login-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.admin-login-remember { display: inline-flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .82rem; line-height: 1.35; }
.admin-login-remember input { width: 1rem; height: 1rem; margin: 0; accent-color: var(--acid); }
.admin-panel__actions,
.admin-toolbar,
.admin-actions,
.admin-table__actions,
.admin-pagination,
.admin-pagination__links,
.caption-actions,
.instagram-auth-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}
.admin-global-nav {
  margin: 0 0 1.25rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}
.admin-global-nav__menu { width: 100%; }
.admin-global-nav__menu > summary { display: none; }
.admin-global-nav__content { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.admin-global-nav__links { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.admin-global-nav form { margin: 0; }
.admin-panel__actions { margin-bottom: 1rem; }
.admin-panel__actions form,
.admin-actions form,
.admin-table__actions form { margin: 0; }
.admin-toolbar,
.admin-pagination { justify-content: space-between; }
.admin-toolbar__search-group { display: flex; min-width: 0; flex: 1 1 auto; align-items: center; gap: .55rem; }
.admin-toolbar__search-group .admin-button { flex: 0 0 auto; }
.admin-toolbar__search-group .admin-search { min-width: 0; flex: 1 1 auto; }
.admin-search { display: flex; min-width: min(100%, 290px); flex: 1; gap: .5rem; }
.admin-search input { min-width: 0; flex: 1; }
.admin-count,
.admin-hint,
.admin-image-status,
.admin-action-status,
.admin-generator__status { color: var(--muted); font-size: .75rem; line-height: 1.4; }
.admin-generator__status.is-error { color: #ff8e9a; }
.admin-generator__status.is-success { color: #8ee59b; }
.admin-generator__actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.admin-generator textarea { min-height: 180px; }
.admin-table-wrap { margin-top: 1rem; overflow-x: auto; }
.admin-table,
.spotify-results { width: 100%; min-width: 780px; border-collapse: collapse; }
.admin-table { table-layout: fixed; }
.spotify-results { table-layout: fixed; }
.spotify-results th,
.spotify-results td { overflow-wrap: anywhere; }
.admin-table th,
.spotify-results th {
  padding: .7rem;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font: 800 .62rem/1 var(--display);
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}
.admin-table th a { text-decoration: none; }
.admin-table td,
.spotify-results td { padding: .75rem .7rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(227, 170, 36, .04); }
.admin-table th:nth-child(2),
.admin-table td:nth-child(2) { width: 7rem; }
.admin-table th:nth-child(3),
.admin-table td:nth-child(3) { width: 7rem; }
.admin-table th:nth-child(4),
.admin-table td:nth-child(4) { width: 7.5rem; white-space: nowrap; }
.admin-table th:nth-child(5),
.admin-table td:nth-child(5) { width: 9rem; white-space: nowrap; }
.admin-table th:nth-child(6),
.admin-table td:nth-child(6) { width: 4rem; text-align: center; white-space: nowrap; }
.admin-table th:nth-child(7),
.admin-table td:nth-child(7) { width: 17rem; }
.admin-table__article { width: auto; max-width: none; }
.admin-table__article a { display: block; overflow: hidden; color: var(--bone); text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.admin-table__article a:hover { color: var(--acid); }
.admin-table__actions { flex-wrap: nowrap; justify-content: flex-end; white-space: nowrap; }
.admin-badge {
  display: inline-block;
  padding: .28rem .45rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font: 800 .56rem/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.admin-badge--draft { border-color: #b83b46; color: #ff8e9a; }
.admin-badge--ready { border-color: #c99a25; color: #f1c75b; }
.admin-badge--published { border-color: #4e965f; color: #9bd2a5; }
.admin-button,
.admin-search button,
.spotify-button,
.instagram-auth-button,
.caption-box button,
.story-publish-button {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  padding: .65rem .85rem;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font: 800 .62rem/1 var(--display);
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}
.admin-button:hover,
.admin-search button:hover,
.spotify-button:hover,
.instagram-auth-button:hover,
.caption-box button:hover,
.story-publish-button:hover { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.admin-button--quiet,
.admin-button--secondary,
.instagram-auth-button--quiet { border-color: var(--line); background: transparent; color: var(--bone); }
.admin-button--view { border-color: var(--cyan); background: var(--cyan); color: var(--ink); }
.admin-button--save { border-color: #3f729b; background: #3f729b; color: #fff; }
.admin-button--generate { border-color: #4e965f; background: #4e965f; color: #fff; }
.admin-button--story,
.caption-box button,
.story-publish-button { border-color: #6b3fa0; background: #6b3fa0; }
.admin-button--primary { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.admin-danger { border-color: #7a211c; background: #7a211c; color: #fff; }
.admin-button.is-disabled { opacity: .35; cursor: not-allowed; }
.admin-button:disabled,
.spotify-button:disabled,
.caption-box button:disabled,
.story-publish-button:disabled { opacity: .5; cursor: not-allowed; }
.admin-pagination { margin-top: 1rem; }
.admin-pagination a,
.admin-pagination span { padding: .55rem .7rem; border: 1px solid var(--line); text-decoration: none; }
.admin-pagination span { color: var(--muted); }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.admin-image-grid { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.admin-image-column { display: grid; align-content: start; gap: .7rem; }
.admin-field,
.spotify-field { display: flex; flex-direction: column; gap: .38rem; }
.admin-field.full { grid-column: 1 / -1; }
.admin-field label,
.spotify-field label,
.admin-section h3,
.variation h2,
.caption-box label {
  color: var(--muted);
  font: 800 .58rem/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-field input,
.admin-field textarea,
.admin-field select,
.spotify-field textarea,
.caption-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: .72rem .8rem;
  background: var(--ink);
  color: var(--bone);
  font: 500 .9rem/1.35 var(--display);
}
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus,
.spotify-field textarea:focus,
.caption-box textarea:focus { outline: 2px solid var(--acid); outline-offset: 1px; }
.admin-image-input { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .5rem; }
.admin-field textarea { min-height: 110px; resize: vertical; }
.admin-field textarea.short-text { min-height: 68px; max-height: 120px; }
.admin-field textarea.body { min-height: 380px; font-family: Georgia, serif; line-height: 1.6; }
.admin-image-status { min-height: 1.2em; }
.admin-image-status.is-error { color: #ff7770; }
.admin-image-status.is-success { color: #8fd49d; }
.admin-section { grid-column: 1 / -1; margin-top: .25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.admin-section h3 { margin: 0; color: var(--acid); }
.admin-actions { justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.admin-actions--top { margin-top: 0; margin-bottom: 1.35rem; padding-top: 0; padding-bottom: 1.1rem; border-top: 0; border-bottom: 1px solid var(--line); }
.admin-actions__left,
.admin-actions__right { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.admin-actions__right { margin-left: auto; justify-content: flex-end; }
.admin-action-status { margin: 0 auto; }
.admin-editor-status { white-space: nowrap; }
.admin-editor-status .admin-badge { min-width: 8rem; padding: .7rem 1rem; font-size: .88rem; text-align: center; }
.admin-button--publish { border-color: #4e965f; background: #4e965f; color: #fff; }
.admin-message,
.admin-error,
.spotify-message,
.spotify-error,
.instagram-auth-status { margin: 1rem 0; padding: .8rem 1rem; background: var(--paper); }
.admin-message,
.spotify-message,
.instagram-auth-status--ok { border-left: 4px solid #59b36b; }
.admin-error,
.spotify-error,
.instagram-auth-status--error { border-left: 4px solid #e44; }
.review-only.is-hidden,
.band-field.is-hidden,
.title-field.is-hidden,
[data-tags-section].is-hidden,
[data-tags-field].is-hidden { display: none; }

/* Automation */
.automation-form { display: block; }
.automation-card__head,
.automation-save { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.automation-card__head,
.automation-history__head {
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.automation-card__head h2,
.automation-history__head h2 {
  margin: 0;
  color: var(--bone);
  font: 800 1rem/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.automation-card p,
.automation-warning p { margin: .45rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.automation-card__head .admin-section-title,
.automation-history__head .admin-section-title {
  margin: 0;
  padding: 0;
  border: 0;
}
.automation-card__head .admin-panel__note {
  max-width: 900px;
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}
.automation-title-countdown {
  display: inline;
  margin-left: .4rem;
  color: var(--muted);
  font-size: .72em;
  font-weight: 800;
  letter-spacing: .035em;
  white-space: nowrap;
}
.automation-title-countdown.is-green { color: #8ee59b; }
.automation-title-countdown.is-yellow { color: #e1c277; }
.automation-title-countdown.is-red { color: #ff8e9a; }
.automation-title-countdown.is-disabled { color: var(--muted); }
.automation-master__body { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.automation-master__body .admin-panel__note { margin: 0; }
.automation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 1rem; }
.automation-flow-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 1rem; margin: 1rem 0; }
.automation-flow { display: flex; min-width: 0; height: 100%; margin: 0; flex-direction: column; }
.automation-flow__explanation {
  margin: 1rem 0 0;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.16);
}
.automation-flow__explanation > summary {
  display: flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem .9rem;
  color: var(--bone);
  cursor: pointer;
  font: 800 .62rem/1 var(--display);
  letter-spacing: .07em;
  list-style: none;
  text-transform: uppercase;
}
.automation-flow__explanation > summary::-webkit-details-marker { display: none; }
.automation-flow__explanation > summary::after { content: '+'; color: var(--acid); font-size: 1rem; }
.automation-flow__explanation[open] > summary { border-bottom: 1px solid var(--line); }
.automation-flow__explanation[open] > summary::after { content: '−'; }
.automation-flow__explanation > summary:hover,
.automation-flow__explanation > summary:focus-visible { background: rgba(255,255,255,.035); outline: 0; }
.automation-sequence { display: grid; gap: .75rem; margin: 0; padding: 1rem; list-style: none; counter-reset: automation-step; }
.automation-sequence li { position: relative; padding: .85rem .9rem .85rem 3.15rem; border: 1px solid var(--line); background: var(--ink); counter-increment: automation-step; }
.automation-sequence li::before { content: counter(automation-step, decimal-leading-zero); position: absolute; top: .85rem; left: .9rem; color: var(--acid); font: 900 .72rem/1 var(--display); }
.automation-sequence strong { display: block; color: var(--bone); font: 800 .76rem/1.1 var(--display); text-transform: uppercase; }
.automation-sequence span { display: block; margin-top: .35rem; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.automation-flow__settings { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: .8rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.automation-flow__settings > .admin-button { align-self: end; white-space: nowrap; }
.automation-fixed-value { min-height: 2.75rem; display: flex; align-items: center; padding: .72rem .8rem; border: 1px solid var(--line); background: var(--ink); color: var(--bone); font-size: .9rem; }
.automation-run-controls { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.automation-history { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.automation-history--combined { width: 100%; min-width: 0; max-width: 100%; margin: 1rem 0; padding: clamp(1rem, 2vw, 1.5rem); overflow: hidden; border: 1px solid var(--line); }
.automation-history--combined > [data-automation-history] { width: 100%; min-width: 0; max-width: 100%; }
.automation-history__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.automation-history h3 { margin: 0 0 .65rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.automation-history__run {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.automation-history__run + .automation-history__run { margin-top: .5rem; }
.automation-history__run summary {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 7rem 7rem 7rem minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  padding: .75rem .85rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.automation-history__run summary > * { min-width: 0; }
.automation-history__run summary strong { color: var(--bone); }
.automation-history__run summary time { color: var(--muted); text-align: right; }
.automation-history__run summary:hover { background: rgba(255,255,255,.035); }
.automation-history__run--success .automation-history__outcome { color: #8ee59b; }
.automation-history__run--failed { border-color: #a6323e; background: rgba(134,42,52,.14); }
.automation-history__run--failed summary { background: rgba(134,42,52,.18); }
.automation-history__run--failed .automation-history__outcome { color: #ff8e9a; font-weight: 900; }
.automation-history__pagination { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.automation-history__pagination button,
.automation-history__pagination span { min-height: 2.25rem; padding: .55rem .75rem; border: 1px solid var(--line); background: transparent; color: var(--bone); font: 800 .62rem/1 var(--display); letter-spacing: .05em; text-transform: uppercase; }
.automation-history__pagination button { cursor: pointer; }
.automation-history__pagination button:hover:not(:disabled) { border-color: var(--acid); color: var(--acid); }
.automation-history__pagination button:disabled { opacity: .35; cursor: default; }
.automation-history__pagination span { border-color: transparent; color: var(--muted); }
.automation-history__body {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid var(--line);
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}
.automation-history__body .automation-log__row {
  min-width: 700px;
  border-left: 0;
  border-right: 0;
}
.automation-run-meta { display: grid; justify-items: end; gap: .25rem; text-align: right; }
.automation-next-run { color: var(--acid); font-size: .75rem; font-weight: 800; line-height: 1.35; }
.automation-run-status { color: var(--muted); font-size: .75rem; line-height: 1.35; text-align: right; }
.automation-log { min-height: 7rem; max-height: 24rem; margin-top: .8rem; overflow: auto; border: 1px solid var(--line); background: var(--ink); }
.automation-log > p { margin: 0; padding: .8rem; color: var(--muted); font-size: .75rem; }
.automation-log__row { display: grid; grid-template-columns: 10.5rem 8.5rem minmax(0, 1fr); gap: .7rem; padding: .65rem .75rem; border-bottom: 1px solid var(--line); font-size: .72rem; line-height: 1.35; }
.automation-log__row:last-child { border-bottom: 0; }
.automation-log__row time { color: var(--muted); white-space: nowrap; }
.automation-log__row strong { color: var(--bone); text-transform: uppercase; }
.automation-log__row--success strong,
.automation-log__row--succeeded strong { color: #8ee59b; }
.automation-log__row--failed strong { color: #ff8e9a; }
.automation-log__row--skipped strong,
.automation-log__row--retry strong { color: #e1c277; }
.automation-card { margin: 0; }
.automation-card__head { align-items: flex-start; }
.automation-card__controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-top: 1rem; }
.automation-switch { display: inline-flex; flex: 0 0 auto; align-items: center; gap: .65rem; color: var(--bone); font: 800 .62rem/1 var(--display); letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.automation-switch input {
  position: relative;
  width: 2.7rem;
  height: 1.45rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: none;
  background: #090b0d;
  cursor: pointer;
  transition: background .18s, border-color .18s;
}
.automation-switch input::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--muted);
  transition: transform .18s, background .18s;
}
.automation-switch input:checked { border-color: #4e965f; background: #244f30; }
.automation-switch input:checked::before { background: #8ee59b; transform: translateX(1.2rem); }
.automation-switch input:focus-visible { outline: 2px solid var(--acid); outline-offset: 2px; }
.automation-autosave-status { color: var(--muted); font-size: .75rem; text-align: right; }
.automation-autosave-status.is-saving { color: var(--acid); }
.automation-autosave-status.is-error { color: #ff8e9a; }
.automation-number { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: .5rem; }
.automation-number span { color: var(--muted); font-size: .78rem; }
.automation-warning { margin: 0; border-left: 4px solid var(--acid); }
.automation-warning strong { color: var(--acid); font: 800 .68rem/1 var(--display); letter-spacing: .07em; text-transform: uppercase; }
.automation-save { padding-top: .25rem; }
@media (max-width: 760px) {
  .automation-grid,
  .automation-flow-grid,
  .automation-flow__settings { grid-template-columns: 1fr; }
  .automation-master__body,
  .automation-card__head,
  .automation-save { align-items: flex-start; flex-direction: column; }
  .automation-card__controls { grid-template-columns: 1fr; }
  .automation-history__head { align-items: flex-start; flex-direction: column; }
  .automation-title-countdown { display: block; margin: .4rem 0 0; white-space: normal; }
  .automation-history__run summary { grid-template-columns: 1fr 1fr; gap: .45rem .75rem; }
  .automation-history__run summary time { grid-column: 1 / -1; text-align: left; }
}

/* AI settings */
.ai-admin__hero {
  display: none;
  grid-template-columns: minmax(0, .82fr) minmax(280px, 1.18fr);
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 4px solid var(--acid);
}
.ai-admin__hero h1 {
  margin: 0;
  font: 800 clamp(2.4rem, 6vw, 5.8rem)/.86 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.ai-admin__hero > p {
  max-width: 620px;
  margin: 0;
  color: #d3d1c8;
  font: 500 clamp(1rem, 1.5vw, 1.2rem)/1.5 var(--display);
}
.ai-admin__toolbar { justify-content: flex-start; }
.ai-admin__toolbar .admin-action-status { margin-left: auto; }
.ai-admin__status {
  margin-right: auto;
  color: var(--muted);
  font: 700 .72rem/1.35 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .01em;
}
.ai-admin__status.is-success { color: #8ee59b; }
.ai-admin__status.is-error { color: #ff8e9a; }
.ai-admin__notice {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 3000;
  width: min(420px, calc(100% - 2rem));
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-left: 5px solid #59b36b;
  background: #151b21;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .38);
  color: var(--bone);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.75rem);
  transition: opacity .18s ease, transform .18s ease;
  font: 800 .78rem/1.4 var(--display);
  letter-spacing: .035em;
  text-transform: uppercase;
}
.ai-admin__notice.is-error { border-left-color: #e44; }
.ai-admin__notice.is-visible { opacity: 1; transform: translateY(0); }
.ai-admin__prompt { min-height: 320px !important; font-family: Georgia, serif !important; line-height: 1.55 !important; }
.ai-admin__preview { border-left: 4px solid var(--acid); }
.ai-admin__preview h2 { margin: 0 0 .75rem; font: 800 clamp(1.7rem, 3vw, 2.8rem)/1 var(--display); text-transform: uppercase; }
.ai-admin__excerpt { margin: 0; color: #d3d1c8; font-size: 1.05rem; line-height: 1.5; }
.ai-admin__preview blockquote { margin: 1.25rem 0; padding: 1rem 1.2rem; background: var(--red); color: #fff; font: 800 1.15rem/1.4 var(--display); }
.ai-admin__tags { color: var(--acid); font: 800 .62rem/1.3 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.ai-admin__body { white-space: pre-wrap; color: #d9d6ca; font: 400 1.02rem/1.72 Georgia, serif; }
.ai-admin__terminal-wrap { padding: 0; overflow: hidden; }
.ai-admin__terminal-head { margin: 0; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); background: #11161b; }
.ai-admin__terminal-head > div { margin-right: auto; }
.ai-admin__terminal-head h2 {
  margin: 0 0 .35rem;
  color: var(--bone);
  font: 800 1rem/1 var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ai-admin__terminal {
  width: 100%;
  min-height: 280px;
  max-height: 520px;
  margin: 0;
  padding: 1rem 1.25rem;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #050607;
  color: #b8efc2;
  font: 500 .72rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
@media (max-width: 760px) {
  .ai-admin__hero { grid-template-columns: 1fr; gap: 1.25rem; }
  .ai-admin__toolbar .admin-action-status { width: 100%; margin-left: 0; }
  .ai-admin__terminal-head { align-items: flex-start; }
}

/* Spotify importer */
.spotify-table-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: .35rem;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}
.spotify-table-wrap .spotify-results { min-width: 780px; }
.instagram-panel .section-title { margin: 0 0 1rem; color: var(--bone); font: 800 1rem/1 var(--display); letter-spacing: .06em; text-transform: uppercase; }
.spotify-field textarea { min-height: 220px; resize: vertical; }
.spotify-field input,
.spotify-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: .72rem .8rem;
  background: var(--ink);
  color: var(--bone);
  font: 500 .9rem/1.35 var(--display);
}
.spotify-field input:focus,
.spotify-field textarea:focus { outline: 2px solid var(--acid); outline-offset: 1px; }
.spotify-field textarea { min-height: 220px; resize: vertical; }
.spotify-import-actions { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; margin-top: .8rem; }
.candidate-count-links { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin: 1rem 0; }
.candidate-count-links > span { color: var(--muted); }
.candidate-count-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font: 700 .82rem/1.35 var(--display);
  text-align: left;
}
.candidate-count-link strong { color: var(--acid); }
.candidate-count-link:hover,
.candidate-count-link:focus-visible { color: var(--acid); outline: 0; text-decoration: underline; text-underline-offset: 3px; }
.candidate-populate-controls { display: flex; align-items: end; gap: .6rem; flex-wrap: wrap; margin: 1rem 0; }
.candidate-populate-controls label { color: var(--muted); font: 800 .58rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.candidate-populate-controls input { width: 5.5rem; min-height: 2.35rem; border: 1px solid var(--line); border-radius: 0; padding: .55rem .65rem; background: var(--ink); color: var(--bone); }
.spotify-progress { margin-top: 1rem; }
.spotify-progress[hidden] { display: none; }
.spotify-progress__bar { height: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--ink); }
.spotify-progress__fill { width: 0; height: 100%; background: var(--red); transition: width .2s ease; }
.spotify-progress__summary { display: flex; justify-content: space-between; gap: 1rem; margin-top: .55rem; color: var(--muted); font-size: .75rem; }
.spotify-status { font: 800 .58rem/1 var(--display); letter-spacing: .06em; text-transform: uppercase; }
.spotify-status--imported { color: #9bd2a5; }
.spotify-status--skipped { color: #e1c277; }
.spotify-status--error { color: #ff8d87; }
.candidate-results th:nth-child(1),
.candidate-results td:nth-child(1),
.candidate-results th:nth-child(2),
.candidate-results td:nth-child(2) { width: 34%; }
.candidate-results th:nth-child(3),
.candidate-results td:nth-child(3),
.candidate-results th:nth-child(4),
.candidate-results td:nth-child(4) { width: 12%; white-space: nowrap; }
.candidate-results th:nth-child(5),
.candidate-results td:nth-child(5) { width: 8%; white-space: nowrap; }
.candidate-results td:nth-child(1),
.candidate-results td:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.candidate-results td:nth-child(5) a { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Instagram publisher */
.instagram-panel { padding: 0; }
.publisher-box { padding: clamp(1rem, 2vw, 1.5rem); border: 1px solid var(--line); background: var(--paper); }
.publisher-box + .publisher-box { margin-top: 1rem; }
.preview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.variation { display: grid; gap: .6rem; }
.variation h2 { margin: 0; }
.preview { display: block; width: 100%; height: auto; border: 1px solid var(--line); background: var(--ink); }
.canvas { display: none; }
.caption-box { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.caption-box textarea { min-height: 190px; margin-top: .55rem; resize: vertical; }
.story-publish-button { width: 100%; margin-top: 0; }
.caption-box button { margin-top: .7rem; }
.publish-status { min-height: 1.4rem; margin: .7rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.publish-status.is-error { color: #ff8e9a; }
.publish-status.is-success { color: #8ee59b; }
.instagram-panel .error { margin: 0; padding: .8rem 1rem; border-left: 4px solid #e44; background: var(--paper); }
.instagram-processing {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 6, 7, .5);
  backdrop-filter: blur(3px);
}
.instagram-processing[hidden] { display: none; }
.instagram-processing__card { width: min(420px, 100%); padding: 1.5rem; border: 1px solid var(--acid); background: var(--paper); box-shadow: 10px 10px 0 rgba(134, 42, 52, .7); text-align: center; }
.instagram-processing__card strong { display: block; margin-top: 1rem; font: 800 1.35rem/1 var(--display); text-transform: uppercase; }
.instagram-processing__card p { margin: .7rem 0 0; color: var(--muted); font: 500 .9rem/1.45 var(--display); }
.instagram-processing__spinner { display: inline-block; width: 2.5rem; height: 2.5rem; border: 4px solid rgba(240, 238, 230, .22); border-top-color: var(--acid); border-radius: 50%; animation: instagram-spin .8s linear infinite; }
body.is-instagram-processing { overflow: hidden; }
@keyframes instagram-spin { to { transform: rotate(360deg); } }

/* Instagram connection */
.instagram-auth { width: min(760px, calc(100% - 2rem)); }
.instagram-auth-meta { color: var(--muted); font-size: .85rem; line-height: 1.55; }

@media (max-width: 980px) {
  .review-main-layout { grid-template-columns: minmax(0, 1fr) minmax(210px, 240px); gap: 1.8rem; }
}

@media (max-width: 760px) {
  .mrc-privacy-gate { padding: .75rem; }
  .mrc-privacy-gate__panel { gap: 1rem; padding: 1.1rem; }
  .mrc-privacy-gate__actions { width: 100%; flex-direction: column; }
  .mrc-privacy-gate__button { width: 100%; }
  .masthead { width: calc(100% - 1.25rem); min-height: 82px; }
  .brand { width: min(220px, calc(100vw - 82px)); min-width: 0; }
  .brand__logo { max-height: 64px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem;
    background: var(--acid);
    color: var(--ink);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a,
  .primary-nav a.is-active {
    padding: .8rem .5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .22);
    background: transparent;
    color: var(--ink);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }

  .reviews-list,
  .about-page,
  .legal-page,
  .admin,
  .instagram-auth { width: calc(100% - 1.25rem); }
  .latest-feed { padding: 1.25rem 0; }
  .latest-feed__summary { align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card {
    grid-template-columns: minmax(120px, 42%) minmax(0, 58%);
    align-items: stretch;
  }
  .sponsored-card {
    grid-template-columns: minmax(0, 58%) minmax(120px, 42%);
  }
  .review-card__body { padding: .85rem; }
  .review-card__title { margin: .7rem 0 .6rem; font-size: clamp(1.05rem, 5.2vw, 1.55rem); line-height: .98; }
  .latest-card--news:not(.latest-card--headline) .review-card__title { padding-bottom: .08em; font-size: clamp(.98rem, 4.7vw, 1.4rem); line-height: 1.04; }
  .review-card__excerpt { font-size: .78rem; line-height: 1.35; }
  .review-card__footer { padding-top: .6rem; }
  .review-card__arrow { position: relative; overflow: hidden; color: transparent; font-size: 0; }
  .review-card__arrow::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-top: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
    transform: rotate(45deg);
  }
  .review-score { right: .45rem; bottom: .45rem; width: 58px; height: 58px; border-width: 2px; font-size: 2.25rem; }
  .pagination { grid-template-columns: 1fr 1fr; }
  .pagination__pages { grid-column: 1 / -1; grid-row: 1; flex-wrap: wrap; }
  .pagination__direction:first-child { grid-column: 1; grid-row: 2; }
  .pagination__direction:last-child { grid-column: 2; grid-row: 2; }

  .review-header { width: calc(100% - 1.25rem); padding: 1.75rem 0 1.25rem; }
  .draft-preview-banner { width: calc(100% - 1.25rem); align-items: flex-start; flex-direction: column; gap: .55rem; }
  .review-identity__band { font-size: clamp(2rem, 9.5vw, 3.5rem); }
  .review-story h1 { font-size: clamp(1.8rem, 7.5vw, 3rem); }
  .review-header__meta { margin-top: 1rem; padding-top: .7rem; gap: .45rem 1rem; font-size: .56rem; }
  .review-main-layout { width: calc(100% - 1.25rem); grid-template-columns: 1fr; gap: 0; padding: 1rem 0; }
  .review-main-layout > .review-rail { position: static; order: 2; padding-top: 2.5rem; }
  .review-main-column .review-prose { padding-top: 2.5rem; }
  .review-prose > p { font-size: 1.05rem; line-height: 1.7; }
  .review-prose blockquote { margin: 2rem 0; padding: 1.35rem; font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .review-prose .story__inline-image { margin: 2rem 0 2.4rem; }
  .review-score-panel__number { font-size: clamp(5rem, 19vw, 6.2rem); }
  .news-story .review-cover,
  .news-story .review-body-layout { width: calc(100% - 1.25rem); }
  .news-story .review-cover { margin-top: 1rem; }
  .news-story .news-rail { margin-top: 1.75rem; }
  .related-articles { width: calc(100% - 1.25rem); margin-top: 2.5rem; }
  .related-articles__head { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .related-articles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-article__body strong { font-size: .86rem; }
  .next-blast { padding: .75rem 1rem; }

  .about-page { padding-top: 1.5rem; }
  .about-hero,
  .about-body,
  .about-contact { display: block; }
  .about-hero { padding-bottom: 1.5rem; }
  .about-body { padding: 2.25rem 0; }
  .about-contact { padding: 2rem 0; }
  .about-hero h1,
  .about-body__heading h2,
  .about-contact h2,
  .not-found h1 { font-size: clamp(1.8rem, 7.5vw, 3rem); }
  .about-hero__dek,
  .about-body__copy,
  .about-contact__copy,
  .not-found__copy { margin-top: 1.25rem; }
  .not-found__panel { min-height: 0; }

  .search-form { margin-bottom: 1.25rem; }
  .search-form__controls { grid-template-columns: 1fr; gap: .5rem; }
  .search-form input { border-right: 1px solid var(--line); }
  .search-form button { min-height: 2.8rem; }
  .search-results { padding-bottom: 3rem; }

  .legal-page { padding-top: 1.75rem; }
  .legal-copy { padding-top: 2rem; }
  .legal-copy p { font-size: .96rem; }

  .site-footer { width: calc(100% - 1.25rem); grid-template-columns: 1fr; gap: 1.2rem; margin-top: .75rem; padding: 2.5rem 0; }
  .site-footer .footer-copy { white-space: normal; }

  .admin { padding-top: 1.25rem; }
  .admin-login-fields { grid-template-columns: 1fr; }
  .admin-login-actions { align-items: stretch; flex-direction: column; }
  .admin-login-actions .admin-button { width: 100%; }
  .admin-actions {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: .25rem;
    overflow-x: auto;
  }
  .admin-actions__left,
  .admin-actions__right { display: contents; }
  .admin-actions form { flex: 0 0 auto; }
  .admin-actions .admin-button {
    min-height: 1.95rem;
    flex: 0 0 auto;
    padding: .45rem .48rem;
    font-size: .5rem;
    letter-spacing: .025em;
  }
  .admin-actions .admin-action-status { display: none; }
  .admin-global-nav { padding-bottom: .75rem; }
  .admin-global-nav__menu > summary {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .85rem;
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
    cursor: pointer;
    font: 800 .66rem/1 var(--display);
    letter-spacing: .06em;
    list-style: none;
    text-transform: uppercase;
  }
  .admin-global-nav__menu > summary::-webkit-details-marker { display: none; }
  .admin-global-nav__menu > summary::after { content: '▾'; font-size: .85rem; }
  .admin-global-nav__menu[open] > summary::after { content: '▴'; }
  .admin-global-nav__menu > summary span {
    min-width: 0;
    margin-left: auto;
    overflow: hidden;
    color: rgba(255,255,255,.78);
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .admin-global-nav__content {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: .5rem;
    padding-top: .5rem;
  }
  .admin-global-nav__menu[open] .admin-global-nav__content { display: flex; }
  .admin-global-nav__links { display: grid; width: 100%; grid-template-columns: 1fr; gap: .35rem; }
  .admin-global-nav__links .admin-button,
  .admin-global-nav__content form,
  .admin-global-nav__content form .admin-button { width: 100%; }
  .admin-global-nav__links .admin-button,
  .admin-global-nav__content form .admin-button { justify-content: flex-start; }
  .admin-panel__actions { justify-content: flex-start; }
  .admin-grid,
  .admin-image-grid,
  .preview-grid { grid-template-columns: 1fr; }
  .admin-field.full,
  .admin-section { grid-column: auto; }
  .admin-field,
  .admin-image-column { min-width: 0; }
  .admin-field input[type="date"] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-min-logical-width: 0;
  }
  .admin-image-column { gap: .45rem; }
  .admin-image-column .admin-image-status:empty { display: none; }
  .admin-image-column + .admin-image-column {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--line);
  }
  .admin-toolbar,
  .admin-pagination { align-items: flex-start; flex-direction: column; }
  .admin-toolbar__search-group { width: 100%; align-items: stretch; }
  .admin-search { width: 100%; }

  /* Keep the desktop article table on mobile, with horizontal scrolling. */
  .admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-table { min-width: 1040px; }
  .admin-table th:first-child,
  .admin-table td:first-child { width: 22rem; }
  .admin-table__article a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-image-input { grid-template-columns: 1fr; }
  #published_date,
  .admin-field input[type="date"] {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    inline-size: 100% !important;
    min-inline-size: 0 !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }
  .spotify-import-actions { align-items: stretch; flex-direction: column; }
  .spotify-import-actions .spotify-button { width: 100%; }
  .candidate-count-links { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .candidate-count-links > span { display: none; }
  .candidate-populate-controls { align-items: stretch; }
  .candidate-populate-controls label { width: 100%; }
  .candidate-populate-controls input { flex: 1 1 7rem; width: auto; }
  .candidate-populate-controls .spotify-button { flex: 1 1 12rem; }
  .spotify-progress__summary { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .spotify-results { font-size: .82rem; }

  .blabbermouth-results {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }
  .blabbermouth-results th:nth-child(1),
  .blabbermouth-results td:nth-child(1) { width: 48%; }
  .blabbermouth-results th:nth-child(2),
  .blabbermouth-results td:nth-child(2) { width: 20%; }
  .blabbermouth-results th:nth-child(3),
  .blabbermouth-results td:nth-child(3) { width: 32%; }
  .blabbermouth-results th,
  .blabbermouth-results td {
    min-width: 0;
    padding: .65rem .45rem;
  }
  .blabbermouth-results td:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .blabbermouth-results td:last-child,
  .blabbermouth-results td:last-child a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .blabbermouth-results td:last-child a { display: block; }
}


/* Keep automation history expansion contained to the viewport. */
.automation-history__run,
.automation-history__run > summary,
.automation-history__body {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.automation-history__run { overflow: hidden; }
.automation-history__run > summary { overflow: hidden; }
.automation-history__run > summary > * {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.automation-history__body {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.automation-history__body .automation-log__row {
  width: 700px;
  min-width: 700px;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
