:root {
  --ci-blue: #2d2e83;
  --ci-cyan: #00ade7;
  --ci-ink: #08090f;
  --ci-muted: #757782;
  --ci-line: #dadada;
  --ci-paper: #f1f1f4;
  --ci-card: #ffffff;
  --ci-up: #21b45b;
  --ci-stable: #f28c28;
  --ci-red: #eb4f6b;
  --ci-radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ci-paper);
  color: var(--ci-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ci-paper);
  overflow-x: hidden;
}

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

.ci-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 72px);
  background: var(--ci-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ci-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.ci-logo img {
  display: block;
  width: min(250px, 42vw);
  height: auto;
}

.ci-menu-state {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ci-menu-toggle {
  display: none;
}

.ci-header nav,
.ci-main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ci-header nav a,
.ci-main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid #fff;
  background: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.ci-header nav a:hover,
.ci-main-nav a:hover {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
  color: #fff;
}

.ci-header nav a.is-active,
.ci-main-nav a.is-active {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
  color: #fff;
}

@media (max-width: 1120px) and (min-width: 821px) {
  .ci-header {
    gap: 14px;
    padding-inline: 22px;
  }

  .ci-logo img {
    width: min(210px, 30vw);
  }

  .ci-header nav,
  .ci-main-nav {
    gap: 6px;
  }

  .ci-header nav a,
  .ci-main-nav a {
    min-height: 40px;
    padding: 0 8px;
    font-size: 10px;
  }
}

@media (max-width: 1180px) {
  .ci-rd-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ci-rd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ci-rd-detail {
    grid-template-columns: 1fr;
  }

  .ci-rd-detail-cover {
    width: min(100%, 480px);
  }
}

main {
  width: min(1720px, calc(100% - 44px));
  margin: 0 auto;
}

.ci-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: clamp(34px, 5vw, 82px) 0 28px;
}

.ci-hero p {
  margin: 0 0 10px;
  color: var(--ci-blue);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-hero h1 {
  margin: 0;
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 13vw, 190px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.ci-hero.is-emergenti h1 {
  font-size: clamp(58px, 10vw, 142px);
  line-height: 0.88;
}

.ci-hero > div > span {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding: 14px 20px;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 950;
  text-transform: uppercase;
}

.ci-week-picker {
  position: relative;
  z-index: 20;
  width: fit-content;
  margin-top: 28px;
}

.ci-week-picker summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 18px;
  min-width: 250px;
  padding: 14px 18px 14px 20px;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.ci-week-picker summary::-webkit-details-marker {
  display: none;
}

.ci-week-picker summary::after {
  content: "";
  justify-self: end;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--ci-ink);
  transition: transform 0.16s ease;
}

.ci-week-picker[open] summary::after {
  transform: rotate(180deg);
}

.ci-week-picker summary span {
  display: block;
  min-width: 0;
}

.ci-week-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: grid;
  min-width: 100%;
  border: 2px solid var(--ci-ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 9, 15, 0.08);
}

.ci-week-menu a {
  display: block;
  padding: 13px 20px;
  border-top: 2px solid var(--ci-ink);
  color: var(--ci-ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-week-menu a:first-child {
  border-top: 0;
}

.ci-week-menu a:hover,
.ci-week-menu a:focus-visible {
  background: var(--ci-ink);
  color: #fff;
}

.ci-archive-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  gap: 12px;
  padding: 0 0 24px;
}

.ci-archive-filter {
  position: relative;
  z-index: 18;
}

.ci-archive-filter summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 18px 0 20px;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  cursor: pointer;
  list-style: none;
}

.ci-archive-filter summary::-webkit-details-marker {
  display: none;
}

.ci-archive-filter summary::after {
  content: "";
  grid-column: 2;
  justify-self: end;
  align-self: center;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--ci-ink);
  transition: transform 0.16s ease;
}

.ci-archive-filter[open] summary::after {
  transform: rotate(180deg);
}

.ci-archive-filter summary span {
  display: block;
  grid-column: 1;
  min-width: 0;
  color: var(--ci-ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-archive-filter-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: grid;
  min-width: 100%;
  border: 2px solid var(--ci-ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 9, 15, 0.08);
}

.ci-archive-filter-menu a {
  display: block;
  padding: 13px 20px;
  border-top: 2px solid var(--ci-ink);
  color: var(--ci-ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-archive-filter-menu a:first-child {
  border-top: 0;
}

.ci-archive-filter-menu a:hover,
.ci-archive-filter-menu a:focus-visible,
.ci-archive-filter-menu a.is-active {
  background: var(--ci-ink);
  color: #fff;
}

.ci-hero aside {
  min-width: 220px;
  padding: 20px 22px;
  background: var(--ci-ink);
  color: #fff;
  text-align: right;
}

.ci-hero aside strong,
.ci-hero aside em {
  display: block;
  font-style: normal;
}

.ci-hero aside strong {
  color: var(--ci-cyan);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-hero aside em {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.ci-rd-hero aside {
  display: flex;
  justify-content: flex-end;
}

.ci-rd-count {
  display: inline-flex !important;
  align-items: baseline;
  gap: 8px;
  margin-top: 0 !important;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.ci-rd-count-number {
  color: var(--ci-cyan);
}

.ci-rd-count-label {
  color: #fff;
}

.ci-chart-list,
.ci-archive-list {
  display: grid;
  gap: 22px;
  padding: 24px 0 70px;
}

.ci-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 24px 0 70px;
}

.ci-archive-grid--all {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 28px;
}

.ci-chart-row {
  display: grid;
  grid-template-columns: 120px 168px minmax(0, 1fr) 136px 104px 176px;
  grid-template-areas: "rank cover copy links trend stats";
  align-items: center;
  gap: 0;
  min-height: 168px;
  padding: 0 30px 0 0;
  background: var(--ci-card);
  border-radius: var(--ci-radius);
  box-shadow: 0 1px 0 rgba(8, 9, 15, 0.05);
  overflow: hidden;
}

.ci-chart-row.is-top {
  grid-template-columns: 120px 390px minmax(0, 1fr) 154px 176px;
  grid-template-areas: "rank cover copy trend stats";
  grid-template-rows: auto;
  align-content: stretch;
  min-height: 390px;
  padding-right: 30px;
}

.ci-rank {
  grid-area: rank;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 58px;
  font-weight: 900;
}

.ci-chart-row.is-top .ci-rank {
  background: var(--ci-cyan);
  font-size: 78px;
}

.ci-chart-row:nth-child(2) .ci-rank,
.ci-chart-row:nth-child(3) .ci-rank {
  background: var(--ci-line);
}

.ci-cover {
  grid-area: cover;
  aspect-ratio: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #e4e7ef;
}

.ci-cover img,
.ci-cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.ci-cover img {
  object-fit: cover;
}

.ci-cover-placeholder {
  background:
    linear-gradient(135deg, rgba(43, 45, 134, 0.12), rgba(8, 174, 234, 0.18)),
    url("/assets/classifica-indie/logo-grande.png") center / 82% auto no-repeat;
}

.ci-copy {
  grid-area: copy;
  min-width: 0;
  margin-left: 28px;
}

.ci-title-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.ci-title-row h2 {
  min-width: 0;
  flex: 1 1 auto;
}

.ci-platform-links {
  grid-area: links;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin-top: 0;
}

.ci-listen-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ci-listen-trigger,
.ci-listen-label {
  display: none;
}

.ci-platform-links--top-copy {
  grid-area: auto;
  justify-content: flex-start;
  width: auto;
  margin-top: 13px;
}

.ci-chart-row.is-top .ci-platform-links--row {
  display: none;
}

.ci-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--ci-blue);
  background: #fff;
  border: 2px solid var(--ci-line);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.ci-platform-link svg {
  display: block;
  width: 18px;
  height: 18px;
}

.ci-platform-link circle,
.ci-platform-link rect,
.ci-platform-link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-platform-link.is-apple path,
.ci-platform-link.is-deezer rect {
  fill: currentColor;
  stroke: none;
}

.ci-platform-link:hover,
.ci-platform-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.ci-platform-link.is-spotify:hover,
.ci-platform-link.is-spotify:focus-visible {
  background: #1db954;
  border-color: #1db954;
}

.ci-platform-link.is-apple:hover,
.ci-platform-link.is-apple:focus-visible {
  background: #fa2d55;
  border-color: #fa2d55;
}

.ci-platform-link.is-deezer:hover,
.ci-platform-link.is-deezer:focus-visible {
  background: #8a3ffc;
  border-color: #8a3ffc;
}

.ci-copy h2 {
  margin: 0;
  color: var(--ci-ink);
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.02;
  font-weight: 1000;
}

.ci-chart-row.is-top .ci-copy h2 {
  font-size: clamp(34px, 3.1vw, 58px);
}

.ci-copy p {
  margin: 10px 0 0;
  color: var(--ci-ink);
  font-size: clamp(18px, 1.35vw, 27px);
  line-height: 1.15;
}

.ci-copy small {
  display: block;
  margin-top: 8px;
  color: var(--ci-muted);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 750;
}

.ci-trend {
  grid-area: trend;
  display: flex;
  justify-content: center;
  margin-left: 28px;
}

.ci-movement {
  display: inline-grid;
  justify-items: center;
  gap: 6px;
  min-width: 82px;
  color: var(--ci-muted);
  text-transform: uppercase;
}

.ci-movement b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  color: var(--ci-ink);
  font-size: 30px;
  font-weight: 1000;
  font-style: normal;
}

.ci-movement em {
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.ci-movement.is-new b {
  color: var(--ci-cyan);
}

.ci-movement.is-up b {
  color: var(--ci-up);
}

.ci-movement.is-stable b {
  color: var(--ci-stable);
}

.ci-movement.is-down b {
  color: var(--ci-red);
}

.ci-movement.is-reentry b {
  color: var(--ci-muted);
}

.ci-stats {
  grid-area: stats;
  display: grid;
  gap: 10px;
  margin: 0;
  margin-left: 22px;
  color: var(--ci-ink);
}

.ci-stats div {
  display: grid;
  grid-template-columns: 1fr 58px;
  align-items: baseline;
  gap: 12px;
}

.ci-stats dt {
  color: var(--ci-muted);
  font-size: 17px;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
}

.ci-stats dd {
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
}

.ci-chart-row--legacy,
.ci-chart-row--legacy.is-top {
  grid-template-columns: 120px minmax(0, 1fr) 136px 162px;
  grid-template-areas: "rank copy trend stats";
  min-height: 118px;
  padding: 18px 30px 18px 0;
}

.ci-chart-row--legacy .ci-copy h2,
.ci-chart-row--legacy.is-top .ci-copy h2 {
  font-size: clamp(24px, 2.1vw, 38px);
}

.ci-chart-row--legacy .ci-stats,
.ci-chart-row--legacy.is-top .ci-stats {
  align-self: center;
}

.ci-chart-row--legacy .ci-stats div {
  grid-template-columns: 1fr 48px;
}

.ci-chart-row--legacy .ci-platform-links--metrics-only {
  display: none;
}

.ci-empty,
.ci-archive-row {
  display: grid;
  gap: 8px;
  padding: 28px 30px;
  background: #fff;
  border-radius: var(--ci-radius);
}

.ci-empty strong,
.ci-archive-row strong {
  font-size: 24px;
  font-weight: 1000;
}

.ci-empty span,
.ci-archive-row span,
.ci-archive-row em {
  color: var(--ci-muted);
  font-style: normal;
  font-weight: 750;
}

.ci-archive-section {
  align-content: start;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 0;
}

.ci-archive-heading {
  display: grid;
  gap: 4px;
  min-height: 86px;
}

.ci-archive-heading p {
  margin: 0;
  color: var(--ci-blue);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-archive-heading h2 {
  margin: 0;
  color: var(--ci-ink);
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 0.95;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-archive-section .ci-archive-list {
  gap: 14px;
  padding: 0;
}

.ci-archive-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) auto;
  align-items: center;
}

.ci-archive-grid--all .ci-archive-heading {
  min-height: 68px;
}

.ci-archive-grid--all .ci-archive-heading h2 {
  font-size: clamp(22px, 1.75vw, 31px);
}

.ci-archive-grid--all .ci-archive-section .ci-archive-list {
  gap: 10px;
}

.ci-archive-grid--all .ci-archive-row {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 16px 18px;
}

.ci-archive-grid--all .ci-archive-row strong {
  font-size: 18px;
  line-height: 1;
}

.ci-archive-grid--all .ci-archive-row span,
.ci-archive-grid--all .ci-archive-row em {
  font-size: 12px;
  line-height: 1.2;
}

.ci-archive-row:hover {
  outline: 3px solid var(--ci-cyan);
}

.ci-archive-pagination {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 0 70px;
}

.ci-archive-pagination a,
.ci-archive-pagination span,
.ci-archive-pagination strong {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.ci-archive-pagination a:hover,
.ci-archive-pagination a:focus-visible {
  background: var(--ci-ink);
  color: #fff;
}

.ci-archive-pagination span {
  color: var(--ci-muted);
  border-color: var(--ci-line);
}

.ci-archive-pagination strong {
  min-width: 150px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 24px 0 70px;
}

.ci-video-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.ci-video-heading {
  padding: 0 0 4px;
  background: transparent;
  border: 0;
}

.ci-video-heading p,
.ci-video-heading span {
  margin: 0;
  color: var(--ci-blue);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-video-heading h2 {
  margin: 4px 0 8px;
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 4.6vw, 82px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ci-video-heading span {
  color: var(--ci-muted);
}

.ci-video-list {
  display: grid;
  gap: 10px;
}

.ci-video-playlist {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--ci-ink);
}

.ci-video-playlist iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ci-video-row {
  display: grid;
  grid-template-columns: 70px minmax(210px, 42%) minmax(0, 1fr);
  grid-template-areas:
    "rank media copy"
    "rank media history";
  gap: 0 18px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  background: var(--ci-card);
}

.ci-video-row.is-archive,
.ci-video-row.is-playlist-row {
  grid-template-columns: 70px minmax(0, 1fr) 84px 98px;
  grid-template-areas: "rank copy trend stats";
  min-height: 92px;
}

.ci-video-row.is-playlist-row {
  grid-template-columns: 70px minmax(0, 1fr) 54px 84px 98px;
  grid-template-areas: "rank copy watch trend stats";
}

.ci-video-rank {
  grid-area: rank;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ci-line);
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.ci-video-row:nth-child(1) .ci-video-rank {
  background: var(--ci-cyan);
  color: #fff;
}

.ci-video-media {
  grid-area: media;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--ci-ink);
}

.ci-video-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.ci-video-media.is-empty {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-video-copy {
  grid-area: copy;
  min-width: 0;
}

.ci-video-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ci-video-copy h3,
.ci-video-copy p,
.ci-video-copy small {
  display: block;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-video-copy h3 {
  flex: 1 1 auto;
  color: var(--ci-ink);
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 1000;
  line-height: 1;
}

.ci-video-copy p {
  margin-top: 4px;
  color: var(--ci-ink);
  font-size: 16px;
  font-weight: 750;
}

.ci-video-copy small {
  margin-top: 3px;
  color: var(--ci-muted);
  font-size: 13px;
  font-weight: 850;
}

.ci-video-trend {
  grid-area: trend;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
}

.ci-video-trend .ci-movement {
  min-width: 64px;
  gap: 0;
  align-items: center;
  justify-items: center;
}

.ci-video-trend .ci-movement b {
  height: 32px;
  line-height: 1;
}

.ci-video-trend .ci-movement em {
  margin-top: -2px;
}

.ci-video-trend .ci-movement.is-new b {
  font-size: 20px;
}

.ci-video-stats {
  grid-area: stats;
  display: grid;
  gap: 5px;
  width: 98px;
  margin: 0;
}

.ci-video-stats div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  align-items: baseline;
  min-height: 20px;
  padding: 3px 6px;
  background: #f1f1f4;
}

.ci-video-stats dt,
.ci-video-stats dd {
  margin: 0;
  line-height: 1;
}

.ci-video-stats dt {
  color: var(--ci-muted);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-video-stats dd {
  color: var(--ci-ink);
  font-size: 16px;
  font-weight: 1000;
}

.ci-video-watch {
  grid-area: watch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ci-video-watch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ci-blue);
  border: 2px solid var(--ci-line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.ci-video-watch-link:hover,
.ci-video-watch-link:focus-visible {
  color: #fff;
  background: #ff0000;
  border-color: #ff0000;
  transform: translateY(-1px);
}

.ci-video-watch-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

.ci-video-watch-link .ci-youtube-shape {
  fill: currentColor;
}

.ci-video-watch-link .ci-youtube-play {
  fill: #fff;
}

.ci-video-drawer .ci-video-watch-link .ci-youtube-play {
  fill: var(--ci-ink);
}

.ci-video-watch-link:hover .ci-youtube-play,
.ci-video-watch-link:focus-visible .ci-youtube-play,
.ci-video-drawer .ci-video-watch-link:hover .ci-youtube-play,
.ci-video-drawer .ci-video-watch-link:focus-visible .ci-youtube-play {
  fill: #ff0000;
}

.ci-video-toggle,
.ci-video-drawer {
  display: none;
}

.ci-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 86px) 34px;
}

.ci-home-hero p,
.ci-home-panel-head p,
.ci-home-newsletter p {
  margin: 0;
  color: var(--ci-blue);
  font-size: clamp(16px, 1.35vw, 24px);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-home-hero h1 {
  max-width: 1120px;
  margin: 8px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(84px, 14vw, 220px);
  line-height: 0.83;
  font-weight: 900;
  text-transform: uppercase;
}

.ci-home-hero span {
  display: block;
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(22px, 2.2vw, 42px);
  line-height: 0.98;
  font-weight: 950;
}

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

.ci-home-hero aside a {
  display: grid;
  min-height: 108px;
  align-content: end;
  padding: 16px;
  border: 3px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  text-transform: uppercase;
}

.ci-home-hero aside a:hover,
.ci-home-hero aside a:focus-visible {
  background: var(--ci-ink);
  color: #fff;
}

.ci-home-hero aside strong {
  font-size: 28px;
  line-height: 0.9;
  font-weight: 1000;
}

.ci-home-hero aside span {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.ci-home-grid,
.ci-home-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: min(1720px, calc(100% - 72px));
  margin: 0 auto 34px;
}

.ci-home-bottom {
  align-items: start;
  padding-bottom: 54px;
}

.ci-home-panel,
.ci-home-newsletter {
  display: grid;
  min-width: 0;
  gap: 16px;
  background: transparent;
  padding: 0;
}

.ci-home-panel-head {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ci-home-panel-head h2,
.ci-home-newsletter h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 3.5vw, 70px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-home-panel-head span {
  color: var(--ci-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ci-home-list,
.ci-home-rd-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.ci-home-row {
  display: grid;
  grid-template-columns: 86px 86px minmax(0, 1fr) 92px;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  min-width: 0;
  background: #fff;
  padding: 10px;
}

.ci-home-video-row {
  grid-template-columns: 86px minmax(0, 1fr) 92px 52px;
}

.ci-home-rank {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: var(--ci-line);
  color: var(--ci-ink);
}

.ci-home-row:first-child .ci-home-rank {
  background: var(--ci-cyan);
  color: #fff;
}

.ci-home-rank span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.ci-home-cover,
.ci-home-rd-cover {
  display: grid;
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  background: var(--ci-line);
}

.ci-home-cover img,
.ci-home-rd-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-home-copy {
  min-width: 0;
}

.ci-home-copy h3,
.ci-home-copy p,
.ci-home-copy small {
  display: block;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-home-copy h3 {
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 0.98;
  font-weight: 1000;
}

.ci-home-copy p {
  margin-top: 3px;
  font-size: 18px;
  line-height: 1;
  font-weight: 850;
}

.ci-home-copy small {
  margin-top: 4px;
  color: var(--ci-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
}

.ci-home-trend {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.ci-home-trend .ci-movement b {
  font-size: 34px;
}

.ci-home-trend .ci-movement em {
  font-size: 12px;
}

.ci-home-watch {
  display: grid;
  place-items: center;
}

.ci-home-watch .ci-video-watch-link {
  width: 42px;
  height: 42px;
}

.ci-home-panel-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 14px;
  border: 2px solid var(--ci-ink);
  background: var(--ci-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.ci-home-panel-link:hover,
.ci-home-panel-link:focus-visible {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
}

.ci-home-rd-panel {
  align-self: stretch;
}

.ci-home-rd-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  background: #fff;
  padding: 10px;
}

.ci-home-rd-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.ci-home-rd-copy time,
.ci-home-rd-copy strong,
.ci-home-rd-copy em,
.ci-home-rd-copy small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-home-rd-copy time {
  color: var(--ci-cyan);
  font-size: 12px;
  font-weight: 1000;
}

.ci-home-rd-copy strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.ci-home-rd-copy em {
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
}

.ci-home-rd-copy small {
  color: var(--ci-muted);
  font-size: 12px;
  font-weight: 850;
}

.ci-home-newsletter {
  min-height: 100%;
  align-content: start;
  background: var(--ci-ink);
  color: #fff;
  padding: 22px;
}

.ci-home-newsletter p {
  color: var(--ci-cyan);
}

.ci-home-newsletter h2 {
  max-width: 100%;
  color: #fff;
  font-size: clamp(34px, 3vw, 58px);
  white-space: normal;
}

.ci-home-newsletter-widget {
  min-height: 0;
  margin-top: 2px;
  padding: 12px;
  border: 3px solid #fff;
  background: #fff;
  color: var(--ci-ink);
  overflow: hidden;
}

.ci-home-newsletter-widget iframe {
  display: block;
  width: 100%;
  min-height: 42px;
}

@media (max-width: 1180px) {
  .ci-home-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ci-home-hero aside {
    max-width: 620px;
  }

  .ci-home-grid,
  .ci-home-bottom {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .ci-home-hero {
    padding: 34px 16px 24px;
  }

  .ci-home-hero h1 {
    font-size: clamp(72px, 21vw, 104px);
  }

  .ci-home-hero span {
    font-size: 22px;
  }

  .ci-home-hero aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .ci-home-hero aside a {
    min-height: 86px;
    padding: 12px;
  }

  .ci-home-hero aside strong {
    font-size: 22px;
  }

  .ci-home-grid,
  .ci-home-bottom {
    width: calc(100% - 24px);
    margin-bottom: 14px;
  }

  .ci-home-panel,
  .ci-home-newsletter {
    padding: 0;
  }

  .ci-home-newsletter {
    padding: 14px;
  }

  .ci-home-panel-head h2,
  .ci-home-newsletter h2 {
    font-size: clamp(42px, 13vw, 68px);
    white-space: normal;
  }

  .ci-home-row {
    grid-template-columns: 54px 58px minmax(0, 1fr) 34px;
    gap: 8px;
    min-height: 74px;
    padding: 8px;
  }

  .ci-home-video-row {
    grid-template-columns: 54px minmax(0, 1fr) 34px 38px;
  }

  .ci-home-rank span {
    font-size: 34px;
  }

  .ci-home-copy h3 {
    font-size: 22px;
  }

  .ci-home-copy p {
    font-size: 15px;
  }

  .ci-home-copy small {
    font-size: 12px;
  }

  .ci-home-trend .ci-movement b {
    font-size: 20px;
  }

  .ci-home-trend .ci-movement em {
    font-size: 10px;
  }

  .ci-home-watch .ci-video-watch-link {
    width: 34px;
    height: 34px;
  }

  .ci-home-rd-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }

  .ci-home-rd-copy strong {
    font-size: 20px;
  }

.ci-home-newsletter-widget {
    padding: 12px;
  }
}

/* Homepage polish after visual QA. */
.ci-home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(34px, 4.5vw, 64px);
  padding-bottom: 18px;
}

.ci-home-hero aside {
  grid-template-columns: 146px minmax(0, 1fr);
  align-items: stretch;
}

.ci-home-top-artist {
  grid-template-columns: 1fr;
  grid-template-rows: 146px 34px;
  gap: 0;
  width: 146px;
  min-height: 180px;
  padding: 0;
  overflow: hidden;
}

.ci-home-top-artist-cover {
  width: 146px;
  height: 146px;
}

.ci-home-top-artist-label {
  display: grid;
  place-items: center;
  min-height: 34px;
  background: var(--ci-ink);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-home-updated {
  min-height: 0;
  padding: 16px 18px;
}

.ci-home-updated strong {
  font-size: 16px;
}

.ci-home-updated em {
  margin-top: 7px;
  font-size: 27px;
}

.ci-home-shortcuts {
  grid-column: 1 / -1;
}

.ci-home-main {
  margin-top: 0;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .ci-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    align-items: start;
  }

  .ci-home-hero aside {
    max-width: none;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .ci-home-top-artist {
    grid-template-rows: 132px 32px;
    width: 132px;
    min-height: 164px;
  }

  .ci-home-top-artist-cover {
    width: 132px;
    height: 132px;
  }

  .ci-home-updated em {
    font-size: 24px;
  }
}

@media (max-width: 820px) {
  .ci-home-hero {
    padding-top: 30px;
    padding-bottom: 16px;
  }

  .ci-home-hero aside {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .ci-home-top-artist {
    grid-template-rows: 120px 32px;
    width: 120px;
    min-height: 152px;
    padding: 0;
  }

  .ci-home-top-artist-cover {
    width: 120px;
    height: 120px;
  }

  .ci-home-updated {
    min-height: 0;
    padding: 12px;
  }

  .ci-home-updated strong {
    font-size: 15px;
  }

  .ci-home-updated em {
    font-size: 23px;
  }
}

.ci-home-hero {
  width: min(1720px, calc(100% - 72px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.ci-home-hero h1 {
  font-size: clamp(86px, 10vw, 170px);
}

.ci-home-hero aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ci-home-updated {
  display: grid;
  min-height: 116px;
  align-content: center;
  justify-items: center;
  padding: 18px;
  background: var(--ci-ink);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.ci-home-updated strong {
  color: var(--ci-cyan);
  font-size: 20px;
  line-height: 1;
  font-weight: 1000;
}

.ci-home-updated em {
  margin-top: 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-style: normal;
  font-weight: 1000;
}

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

.ci-home-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 30px;
  width: min(1720px, calc(100% - 72px));
  margin: 0 auto 56px;
  align-items: start;
}

.ci-home-left,
.ci-home-side {
  display: grid;
  min-width: 0;
  gap: 34px;
}

.ci-home-side-box {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 3px solid var(--ci-ink);
  background: #fff;
}

.ci-home-side .ci-home-panel-head h2 {
  font-size: clamp(42px, 3.1vw, 58px);
}

.ci-home-panel-head h2 {
  font-size: clamp(52px, 4.2vw, 86px);
}

.ci-home-row {
  grid-template-columns: 86px 86px minmax(0, 1fr) auto 74px;
}

.ci-home-video-row {
  grid-template-columns: 86px minmax(0, 1fr) 50px 74px;
}

.ci-home-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
}

.ci-home-platforms {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ci-home-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ci-blue);
  background: #fff;
  border: 2px solid var(--ci-line);
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.ci-home-action-link svg {
  display: block;
  width: 17px;
  height: 17px;
}

.ci-home-action-link circle,
.ci-home-action-link rect,
.ci-home-action-link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-home-action-link.is-apple path,
.ci-home-action-link.is-deezer rect {
  fill: currentColor;
  stroke: none;
}

.ci-home-action-link:hover,
.ci-home-action-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.ci-home-action-link.is-spotify:hover,
.ci-home-action-link.is-spotify:focus-visible {
  background: #1db954;
  border-color: #1db954;
}

.ci-home-action-link.is-apple:hover,
.ci-home-action-link.is-apple:focus-visible {
  background: #fa2d55;
  border-color: #fa2d55;
}

.ci-home-action-link.is-deezer:hover,
.ci-home-action-link.is-deezer:focus-visible {
  background: #8a3ffc;
  border-color: #8a3ffc;
}

.ci-home-trend .ci-movement {
  gap: 2px;
}

.ci-home-trend .ci-movement b {
  font-size: 30px;
  line-height: 0.92;
}

.ci-home-trend .ci-movement em {
  margin-top: 0;
  font-size: 11px;
  line-height: 1;
}

.ci-home-trend .ci-movement.is-new b {
  font-size: 28px;
  line-height: 1;
}

.ci-home-newsletter {
  background: #fff;
  color: var(--ci-ink);
  padding: 0;
}

.ci-home-newsletter p {
  color: var(--ci-cyan);
}

.ci-home-newsletter h2 {
  color: var(--ci-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.02;
  font-weight: 1000;
  text-transform: none;
}

.ci-home-newsletter-widget {
  padding: 0;
  border: 0;
}

@media (max-width: 1180px) {
  .ci-home-hero,
  .ci-home-main {
    width: calc(100% - 36px);
  }

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

@media (max-width: 820px) {
  .ci-home-hero,
  .ci-home-main {
    width: calc(100% - 24px);
  }

  .ci-home-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .ci-home-hero aside {
    max-width: 100%;
  }

  .ci-home-main {
    gap: 24px;
    margin-bottom: 34px;
  }

  .ci-home-left,
  .ci-home-side {
    gap: 24px;
  }

  .ci-home-updated {
    min-height: 96px;
  }

  .ci-home-updated em {
    font-size: 28px;
  }

  .ci-home-panel-head h2,
  .ci-home-side .ci-home-panel-head h2 {
    font-size: clamp(42px, 13vw, 62px);
    white-space: normal;
  }

  .ci-home-row {
    grid-template-columns: 54px 58px minmax(0, 1fr) 30px;
    grid-template-areas:
      "rank cover copy trend"
      "rank cover actions trend";
  }

  .ci-home-video-row {
    grid-template-columns: 54px minmax(0, 1fr) 38px 30px;
    grid-template-areas: "rank copy actions trend";
  }

  .ci-home-rank {
    grid-area: rank;
  }

  .ci-home-cover {
    grid-area: cover;
  }

  .ci-home-copy {
    grid-area: copy;
  }

  .ci-home-actions,
  .ci-home-watch {
    grid-area: actions;
    justify-content: flex-start;
  }

  .ci-home-trend {
    grid-area: trend;
  }

  .ci-home-action-link {
    width: 28px;
    height: 28px;
  }

  .ci-home-action-link svg {
    width: 14px;
    height: 14px;
  }

  .ci-home-platforms {
    gap: 4px;
  }

  .ci-home-newsletter h2 {
    font-size: 24px;
  }

  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    position: relative;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 42px 76px minmax(0, 1fr);
    grid-template-areas:
      "rank cover copy"
      "trend cover copy"
      "links links links";
    grid-template-rows: 45px 31px auto;
    min-height: 0;
    gap: 0 8px;
    padding: 10px 8px 12px;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .ci-home-chart-panel .ci-rank,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-rank {
    grid-area: rank;
    align-self: stretch;
    justify-self: stretch;
    min-height: 0;
    width: auto;
    padding: 0 0 3px;
    background: transparent;
    font-size: 26px;
    flex-direction: column;
    gap: 2px;
    justify-content: flex-end;
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-rank,
  .ci-home-chart-panel .ci-chart-row:first-child .ci-trend {
    background: var(--ci-cyan);
    color: #fff;
  }

  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-trend,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-trend {
    background: var(--ci-line);
  }

  .ci-home-chart-panel .ci-cover {
    grid-area: cover;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    height: 76px;
    aspect-ratio: 1 / 1;
  }

  .ci-home-chart-panel .ci-cover img,
  .ci-home-chart-panel .ci-cover-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ci-home-chart-panel .ci-copy {
    grid-area: copy;
    align-self: center;
    min-width: 0;
    margin-left: 0 !important;
  }

  .ci-home-chart-panel .ci-title-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding-right: 24px;
  }

  .ci-home-chart-panel .ci-copy h2,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-copy h2 {
    flex: 0 1 auto;
    font-size: 18px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-home-chart-panel .ci-copy p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.08;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-home-chart-panel .ci-copy small {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-home-chart-panel .ci-trend {
    grid-area: trend;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 1px 0 11px;
    background: transparent;
    pointer-events: none;
  }

  .ci-home-chart-panel .ci-movement {
    grid-auto-flow: row;
    align-items: center;
    justify-items: center;
    gap: 1px;
    min-width: 0;
    margin: 0;
  }

  .ci-home-chart-panel .ci-movement b {
    min-width: 0;
    height: auto;
    font-size: 10px;
    line-height: 1;
  }

  .ci-home-chart-panel .ci-movement em {
    margin-top: 0;
    font-size: 8px;
    line-height: 1;
  }

  .ci-home-chart-panel .ci-movement.is-new b {
    font-size: 9px;
  }

  .ci-home-chart-panel .ci-movement.is-stable em {
    display: none;
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-movement b,
  .ci-home-chart-panel .ci-chart-row:first-child .ci-movement em {
    color: #fff;
  }
}

/* Homepage v31: absolute final overrides. Keep this block at EOF. */
.ci-home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(30px, 4.2vw, 60px);
  padding-bottom: 14px;
}

.ci-home-hero h1 {
  max-width: 980px;
  font-size: clamp(74px, 7.2vw, 132px);
  line-height: 0.84;
}

.ci-home-hero > div {
  min-width: 0;
}

.ci-home-hero aside {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  width: 100%;
}

.ci-home-hero aside .ci-home-top-artist,
.ci-home-top-artist {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  grid-template-rows: 146px 34px;
  width: 150px;
  min-height: 184px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--ci-ink);
  background: #fff;
}

.ci-home-top-artist-cover {
  display: block;
  align-self: stretch;
  justify-self: stretch;
  width: 146px;
  height: 146px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ci-line);
}

.ci-home-top-artist-cover img,
.ci-home-top-artist-cover .ci-cover-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-home-top-artist-copy,
.ci-home-top-artist-copy em,
.ci-home-top-artist-copy strong,
.ci-home-top-artist-copy small {
  display: none;
}

.ci-home-top-artist-label {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 8px;
  background: var(--ci-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ci-home-updated {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 14px 16px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-home-hero aside .ci-home-updated strong,
.ci-home-updated strong {
  color: var(--ci-cyan);
  font-size: 14px;
  line-height: 1;
}

.ci-home-hero aside .ci-home-updated em,
.ci-home-updated em {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.ci-home-shortcuts {
  grid-column: 1 / -1;
}

.ci-home-main {
  margin-top: 0;
}

.ci-home-left {
  gap: 42px;
}

.ci-home-left .ci-home-panel:not(:last-child) {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(10, 10, 17, 0.12);
}

.ci-home-newsletter h2 {
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 0.98;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .ci-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 12px;
  }

  .ci-home-hero h1 {
    font-size: clamp(68px, 8.1vw, 96px);
  }

  .ci-home-hero aside {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-hero aside .ci-home-top-artist,
  .ci-home-top-artist {
    grid-template-rows: 132px 32px;
    width: 136px;
    min-height: 168px;
  }

  .ci-home-top-artist-cover {
    width: 132px;
    height: 132px;
  }

  .ci-home-updated {
    padding: 12px 14px;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    font-size: 22px;
  }
}

@media (max-width: 820px) {
  .ci-home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 10px;
  }

  .ci-home-hero h1 {
    font-size: clamp(54px, 14.8vw, 76px);
    line-height: 0.86;
  }

  .ci-home-hero span {
    font-size: 22px;
    line-height: 1;
  }

  .ci-home-hero aside {
    grid-template-columns: 114px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-hero aside .ci-home-top-artist,
  .ci-home-top-artist {
    grid-template-rows: 120px 32px;
    width: 124px;
    min-height: 156px;
    padding: 0;
  }

  .ci-home-top-artist-cover {
    width: 120px;
    height: 120px;
  }

  .ci-home-updated {
    padding: 12px;
  }

  .ci-home-hero aside .ci-home-updated strong,
  .ci-home-updated strong {
    font-size: 13px;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    font-size: 22px;
  }

  .ci-home-left {
    gap: 32px;
  }

  .ci-home-left .ci-home-panel:not(:last-child) {
    padding-bottom: 28px;
  }
}

@media (max-width: 420px) {
  .ci-home-hero aside {
    grid-template-columns: 114px minmax(0, 1fr);
  }

  .ci-home-hero aside .ci-home-top-artist,
  .ci-home-top-artist {
    grid-template-rows: 110px 30px;
    width: 114px;
    min-height: 144px;
  }

  .ci-home-top-artist-cover {
    width: 110px;
    height: 110px;
  }

  .ci-home-top-artist-label {
    min-height: 30px;
    font-size: 11px;
  }
}

/* Homepage v30: absolute final overrides. Keep this block at EOF. */
.ci-home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(30px, 4.2vw, 60px);
  padding-bottom: 14px;
}

.ci-home-hero h1 {
  max-width: 980px;
  font-size: clamp(74px, 7.2vw, 132px);
  line-height: 0.84;
}

.ci-home-hero > div {
  min-width: 0;
}

.ci-home-hero aside {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  width: 100%;
}

.ci-home-hero aside .ci-home-top-artist,
.ci-home-top-artist {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  grid-template-rows: 146px 34px;
  width: 150px;
  min-height: 184px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--ci-ink);
  background: #fff;
}

.ci-home-top-artist-cover {
  display: block;
  align-self: stretch;
  justify-self: stretch;
  width: 146px;
  height: 146px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ci-line);
}

.ci-home-top-artist-cover img,
.ci-home-top-artist-cover .ci-cover-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-home-top-artist-copy,
.ci-home-top-artist-copy em,
.ci-home-top-artist-copy strong,
.ci-home-top-artist-copy small {
  display: none;
}

.ci-home-top-artist-label {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 8px;
  background: var(--ci-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ci-home-updated {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 14px 16px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-home-hero aside .ci-home-updated strong,
.ci-home-updated strong {
  color: var(--ci-cyan);
  font-size: 14px;
  line-height: 1;
}

.ci-home-hero aside .ci-home-updated em,
.ci-home-updated em {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.ci-home-shortcuts {
  grid-column: 1 / -1;
}

.ci-home-main {
  margin-top: 0;
}

.ci-home-left {
  gap: 42px;
}

.ci-home-left .ci-home-panel:not(:last-child) {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(10, 10, 17, 0.12);
}

.ci-home-newsletter h2 {
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 0.98;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .ci-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 12px;
  }

  .ci-home-hero h1 {
    font-size: clamp(68px, 8.1vw, 96px);
  }

  .ci-home-hero aside {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-hero aside .ci-home-top-artist,
  .ci-home-top-artist {
    grid-template-rows: 132px 32px;
    width: 136px;
    min-height: 168px;
  }

  .ci-home-top-artist-cover {
    width: 132px;
    height: 132px;
  }

  .ci-home-updated {
    padding: 12px 14px;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    font-size: 22px;
  }
}

@media (max-width: 820px) {
  .ci-home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 10px;
  }

  .ci-home-hero h1 {
    font-size: clamp(54px, 14.8vw, 76px);
    line-height: 0.86;
  }

  .ci-home-hero span {
    font-size: 22px;
    line-height: 1;
  }

  .ci-home-hero aside {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-hero aside .ci-home-top-artist,
  .ci-home-top-artist {
    grid-template-rows: 120px 32px;
    width: 124px;
    min-height: 156px;
    padding: 0;
  }

  .ci-home-top-artist-cover {
    width: 120px;
    height: 120px;
  }

  .ci-home-updated {
    padding: 12px;
  }

  .ci-home-hero aside .ci-home-updated strong,
  .ci-home-updated strong {
    font-size: 13px;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    font-size: 22px;
  }

  .ci-home-left {
    gap: 32px;
  }

  .ci-home-left .ci-home-panel:not(:last-child) {
    padding-bottom: 28px;
  }
}

@media (max-width: 420px) {
  .ci-home-hero aside {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .ci-home-hero aside .ci-home-top-artist,
  .ci-home-top-artist {
    grid-template-rows: 110px 30px;
    width: 114px;
    min-height: 144px;
  }

  .ci-home-top-artist-cover {
    width: 110px;
    height: 110px;
  }

  .ci-home-top-artist-label {
    min-height: 30px;
    font-size: 11px;
  }
}

/* Homepage v29: final layout corrections, intentionally last. */
.ci-home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(30px, 4.2vw, 60px);
  padding-bottom: 16px;
}

.ci-home-hero h1 {
  max-width: 980px;
  font-size: clamp(74px, 7.2vw, 132px);
  line-height: 0.84;
}

.ci-home-hero > div {
  min-width: 0;
}

.ci-home-hero aside {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  width: 100%;
}

.ci-home-top-artist,
.ci-home-hero aside .ci-home-top-artist {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 146px 34px;
  width: 146px;
  min-height: 180px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--ci-ink);
  background: #fff;
}

.ci-home-top-artist-cover {
  display: block;
  width: 146px;
  height: 146px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ci-line);
}

.ci-home-top-artist-cover img,
.ci-home-top-artist-cover .ci-cover-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-home-top-artist-copy,
.ci-home-top-artist-copy em,
.ci-home-top-artist-copy strong,
.ci-home-top-artist-copy small {
  display: none;
}

.ci-home-top-artist-label {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 8px;
  background: var(--ci-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ci-home-updated {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 14px 16px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-home-updated strong {
  color: var(--ci-cyan);
  font-size: 14px;
  line-height: 1;
}

.ci-home-updated em {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.ci-home-shortcuts {
  grid-column: 1 / -1;
}

.ci-home-main {
  margin-top: 0;
}

.ci-home-left {
  gap: 42px;
}

.ci-home-left .ci-home-panel:not(:last-child) {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(10, 10, 17, 0.12);
}

.ci-home-newsletter h2 {
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 0.98;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .ci-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 14px;
  }

  .ci-home-hero h1 {
    font-size: clamp(68px, 8.1vw, 96px);
  }

  .ci-home-hero aside {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-top-artist,
  .ci-home-hero aside .ci-home-top-artist {
    grid-template-rows: 132px 32px;
    width: 132px;
    min-height: 164px;
  }

  .ci-home-top-artist-cover {
    width: 132px;
    height: 132px;
  }

  .ci-home-updated {
    padding: 12px 14px;
  }

  .ci-home-updated em {
    font-size: 22px;
  }
}

@media (max-width: 820px) {
  .ci-home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 12px;
  }

  .ci-home-hero h1 {
    font-size: clamp(54px, 14.8vw, 76px);
    line-height: 0.86;
  }

  .ci-home-hero span {
    font-size: 22px;
    line-height: 1;
  }

  .ci-home-hero aside {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-top-artist,
  .ci-home-hero aside .ci-home-top-artist {
    grid-template-rows: 120px 32px;
    width: 120px;
    min-height: 152px;
    padding: 0;
  }

  .ci-home-top-artist-cover {
    width: 120px;
    height: 120px;
  }

  .ci-home-updated {
    padding: 12px;
  }

  .ci-home-updated strong {
    font-size: 13px;
  }

  .ci-home-updated em {
    font-size: 22px;
  }

  .ci-home-left {
    gap: 32px;
  }

  .ci-home-left .ci-home-panel:not(:last-child) {
    padding-bottom: 28px;
  }
}

@media (max-width: 420px) {
  .ci-home-hero aside {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .ci-home-top-artist,
  .ci-home-hero aside .ci-home-top-artist {
    grid-template-rows: 110px 30px;
    width: 110px;
    min-height: 140px;
  }

  .ci-home-top-artist-cover {
    width: 110px;
    height: 110px;
  }

  .ci-home-top-artist-label {
    min-height: 30px;
    font-size: 11px;
  }
}

.ci-rd-page,
.ci-rd-detail-page {
  display: grid;
  gap: 24px;
  padding-bottom: 70px;
}

.ci-rd-detail-page {
  padding-top: 28px;
}

.ci-rd-tabs,
.ci-rd-week-nav,
.ci-rd-links,
.ci-rd-press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ci-rd-tabs a,
.ci-rd-week-nav a,
.ci-rd-card-action,
.ci-rd-back,
.ci-rd-links a,
.ci-rd-press a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.ci-rd-tabs a:hover,
.ci-rd-tabs a.is-active,
.ci-rd-week-nav a:hover,
.ci-rd-card-action:hover,
.ci-rd-back:hover,
.ci-rd-links a:hover,
.ci-rd-press a:hover {
  background: var(--ci-ink);
  color: #fff;
}

.ci-rd-week-nav {
  justify-content: flex-end;
}

.ci-rd-week-nav a {
  border-color: #d7d7d7;
  background: #d7d7d7;
  color: var(--ci-ink);
}

.ci-rd-week-nav a:hover {
  border-color: var(--ci-ink);
}

.ci-rd-list {
  display: grid;
  gap: 42px;
}

.ci-rd-day {
  display: grid;
  gap: 14px;
}

.ci-rd-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-rd-day-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 0.95;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-rd-day-head span {
  display: inline-flex;
  min-width: 36px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--ci-cyan);
  color: #fff;
  font-weight: 1000;
}

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

.ci-rd-card {
  display: grid;
  min-width: 0;
  background: #fff;
}

.ci-rd-card-cover {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  background: var(--ci-line);
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 82px;
  font-weight: 900;
}

.ci-rd-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-rd-card-main {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 16px;
}

.ci-rd-card-main time {
  color: var(--ci-cyan);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-rd-card-main h3 {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.ci-rd-card-main p,
.ci-rd-card-main small {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-rd-card-main p {
  font-size: 16px;
  font-weight: 750;
}

.ci-rd-card-main small {
  color: var(--ci-muted);
  font-size: 12px;
  font-weight: 850;
}

.ci-rd-card-action {
  margin: 8px 16px 16px;
}

.ci-rd-detail {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  background: #fff;
}

.ci-rd-detail-cover {
  display: grid;
  order: 1;
  width: 100%;
  aspect-ratio: 1;
  align-self: start;
  place-items: center;
  min-width: 0;
  height: auto;
  overflow: hidden;
  background: var(--ci-cyan);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 120px;
  font-weight: 900;
}

.ci-rd-detail-cover img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.ci-rd-detail-cover-inline {
  display: none;
}

.ci-rd-detail-cover-inline img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-rd-detail-main {
  display: grid;
  order: 2;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: 32px;
}

.ci-rd-date-box {
  display: inline-grid;
  width: fit-content;
  gap: 5px;
  padding: 14px 18px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-rd-date-box span,
.ci-rd-detail-main > p,
.ci-rd-release > div > p,
.ci-rd-press span {
  margin: 0;
  color: var(--ci-cyan);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-rd-date-box time {
  font-size: 20px;
  font-weight: 1000;
}

.ci-rd-detail-main h1,
.ci-rd-detail-main h2,
.ci-rd-release h2 {
  margin: 0;
  color: var(--ci-ink);
  line-height: 0.96;
  font-weight: 1000;
}

.ci-rd-detail-main h1,
.ci-rd-detail-main h2 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-rd-detail-main h1 {
  font-size: clamp(42px, 5vw, 86px);
}

.ci-rd-detail-main h2 {
  font-size: clamp(24px, 2.4vw, 42px);
}

.ci-rd-detail-main small {
  color: var(--ci-muted);
  font-size: 16px;
  font-weight: 850;
}

.ci-rd-release,
.ci-rd-note {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: #fff;
}

.ci-rd-release h2 {
  margin-top: 6px;
  font-size: clamp(28px, 3vw, 48px);
}

.ci-rd-copy {
  color: var(--ci-ink);
  font-size: 18px;
  line-height: 1.58;
}

.ci-rd-copy p {
  margin: 0 0 1em;
}

.ci-rd-copy a {
  color: var(--ci-blue);
  font-weight: 850;
  text-decoration: underline;
}

.ci-rd-press {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 2px solid var(--ci-ink);
}

.ci-rd-press:not(.has-contact) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ci-rd-press:not(.has-actions) {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ci-rd-press:not(.has-contact):not(.has-actions) {
  grid-template-columns: 1fr;
}

.ci-rd-press-block {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ci-rd-press strong {
  color: var(--ci-ink);
  font-size: 22px;
  font-weight: 1000;
}

.ci-rd-press-actions {
  justify-content: flex-end;
}

.ci-rd-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ci-ink);
}

.ci-rd-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ci-rd-note {
  gap: 8px;
  border: 2px solid var(--ci-ink);
}

.ci-rd-note strong {
  color: var(--ci-red);
  font-size: 18px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-rd-note p {
  margin: 0;
  color: var(--ci-muted);
  font-weight: 750;
  line-height: 1.45;
}

.ci-insert-hero {
  position: relative;
  display: block;
  min-height: clamp(610px, 43vw, 760px);
  margin: clamp(34px, 5vw, 72px) 0 28px;
  padding: clamp(42px, 5vw, 86px);
  overflow: hidden;
  background: var(--ci-ink);
  color: #fff;
  border-radius: var(--ci-radius);
}

.ci-insert-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 42px);
}

.ci-insert-copy,
.ci-insert-visual {
  z-index: 1;
}

.ci-insert-copy {
  position: relative;
  z-index: 2;
  width: min(56%, 980px);
  min-width: 0;
}

.ci-insert-copy::before {
  content: "";
  position: absolute;
  inset: -26px -42px -28px -24px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(8, 9, 15, 0.72), rgba(8, 9, 15, 0.46) 62%, rgba(8, 9, 15, 0));
  pointer-events: none;
}

.ci-insert-copy p,
.ci-insert-final p {
  margin: 0 0 12px;
  color: var(--ci-cyan);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-insert-copy p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.ci-insert-copy h1 {
  max-width: 980px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(66px, 8.3vw, 132px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.68), 0 1px 2px rgba(0, 0, 0, 0.92);
}

.ci-insert-copy h1 span {
  color: var(--ci-cyan);
}

.ci-insert-copy strong {
  display: block;
  max-width: 900px;
  margin-top: 28px;
  font-size: clamp(24px, 2.2vw, 42px);
  line-height: 1.05;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.66), 0 1px 2px rgba(0, 0, 0, 0.86);
}

.ci-insert-copy em {
  display: block;
  max-width: 860px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.25vw, 23px);
  font-style: normal;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.68);
}

.ci-insert-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.ci-insert-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 3px solid var(--ci-cyan);
  background: var(--ci-cyan);
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-insert-button:hover {
  background: #fff;
  color: var(--ci-blue);
}

.ci-insert-price {
  color: #ffd84d;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.ci-insert-price small {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.ci-insert-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 58%;
  min-width: 0;
  pointer-events: none;
}

.ci-insert-visual img {
  display: block;
  width: auto;
  max-width: none;
  height: min(96%, 720px);
  margin-right: clamp(-34px, -1.8vw, -14px);
  margin-bottom: -1px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
}

.ci-insert-strip,
.ci-insert-final {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding: clamp(26px, 3.4vw, 48px);
  background: #fff;
  border-radius: var(--ci-radius);
}

.ci-insert-strip {
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(44px, 6vw, 120px);
}

.ci-insert-final {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ci-insert-strip strong {
  color: var(--ci-blue);
  font-size: clamp(23px, 1.65vw, 34px);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-insert-strip span {
  justify-self: end;
  max-width: 470px;
  color: var(--ci-muted);
  font-size: clamp(16px, 1.05vw, 21px);
  line-height: 1.35;
  font-weight: 750;
}

.ci-insert-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.ci-insert-features article {
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border-radius: var(--ci-radius);
  border-top: 8px solid var(--ci-cyan);
}

.ci-insert-features b {
  display: block;
  color: var(--ci-blue);
  font-size: 16px;
  font-weight: 1000;
}

.ci-insert-features h2 {
  margin: 42px 0 14px;
  color: var(--ci-ink);
  font-size: clamp(21px, 1.34vw, 28px);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.ci-insert-features p {
  margin: 0;
  color: var(--ci-muted);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.ci-insert-final {
  margin-bottom: 70px;
  background: var(--ci-blue);
  color: #fff;
}

.ci-insert-final h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 3.1vw, 58px);
  line-height: 0.92;
  text-transform: uppercase;
}

.ci-insert-final .ci-insert-button {
  flex: 0 0 auto;
  border-color: #fff;
  justify-self: end;
  align-self: center;
}

.ci-info-hero,
.ci-about-hero {
  display: grid;
  gap: 12px;
  padding: clamp(42px, 5vw, 86px) 0 36px;
}

.ci-info-hero p,
.ci-about-hero p {
  margin: 0;
  color: var(--ci-blue);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-info-hero h1,
.ci-about-hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(74px, 12vw, 190px);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
}

.ci-info-hero span,
.ci-about-hero strong {
  display: block;
  max-width: 980px;
  color: var(--ci-ink);
  font-size: clamp(22px, 2.1vw, 42px);
  line-height: 1.05;
  font-weight: 1000;
}

.ci-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 28px;
  margin-bottom: 28px;
}

.ci-about-lead,
.ci-about-card,
.ci-about-statement,
.ci-about-blocks > div,
.ci-legal-content,
.ci-legal-company,
.ci-contact-copy,
.ci-contact-form {
  background: #fff;
}

.ci-about-lead,
.ci-about-card,
.ci-about-statement,
.ci-contact-copy,
.ci-contact-form {
  padding: clamp(24px, 3vw, 46px);
}

.ci-about-lead h2,
.ci-contact-copy strong {
  display: block;
  margin: 0 0 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 6vw, 116px);
  line-height: 0.86;
  text-transform: uppercase;
}

.ci-about-lead p,
.ci-about-statement p,
.ci-contact-copy p,
.ci-legal-intro,
.ci-legal-section p {
  margin: 0;
  color: var(--ci-ink);
  font-size: clamp(17px, 1.22vw, 22px);
  line-height: 1.34;
  font-weight: 650;
}

.ci-about-lead p + p,
.ci-about-statement p + p,
.ci-legal-section p + p {
  margin-top: 18px;
}

.ci-about-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ci-ink);
  color: #fff;
}

.ci-about-card span,
.ci-legal-company strong,
.ci-cookie-copy strong {
  color: var(--ci-cyan);
  font-size: 16px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-about-card strong {
  display: block;
  font-size: clamp(34px, 3.1vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
}

.ci-about-card em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
}

.ci-about-statement {
  margin-bottom: 28px;
  border-left: 12px solid var(--ci-cyan);
}

.ci-about-blocks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 64px;
}

.ci-about-blocks > div {
  min-height: 240px;
  padding: 24px;
  border: 2px solid var(--ci-ink);
}

.ci-about-blocks span {
  display: block;
  color: var(--ci-cyan);
  font-size: 18px;
  font-weight: 1000;
}

.ci-about-blocks strong {
  display: block;
  margin: 36px 0 12px;
  color: var(--ci-ink);
  font-size: clamp(23px, 1.5vw, 32px);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-about-blocks p {
  margin: 0;
  color: var(--ci-muted);
  font-weight: 760;
  line-height: 1.3;
}

.ci-legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: start;
  margin-bottom: 64px;
}

.ci-legal-content,
.ci-legal-company {
  padding: clamp(22px, 3vw, 44px);
  border: 2px solid var(--ci-ink);
}

.ci-legal-section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 2px solid var(--ci-line);
}

.ci-legal-section h2,
.ci-cookie-preference-card h2 {
  margin: 0 0 10px;
  color: var(--ci-ink);
  font-size: clamp(22px, 1.6vw, 34px);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-legal-section a,
.ci-footer a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ci-legal-company {
  position: sticky;
  top: 94px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-legal-company address {
  display: grid;
  gap: 7px;
  margin: 18px 0 24px;
  color: #fff;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
}

.ci-legal-company nav {
  display: grid;
  gap: 10px;
}

.ci-legal-company nav a {
  display: block;
  padding: 12px 14px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.ci-legal-company nav a:hover,
.ci-legal-company nav a:focus-visible {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
}

.ci-cookie-preference-card {
  margin-top: 28px;
  padding: 24px;
  background: var(--ci-paper);
  border: 2px solid var(--ci-ink);
}

.ci-cookie-preference-card p,
.ci-cookie-preference-card label {
  display: block;
  margin: 0 0 16px;
  color: var(--ci-muted);
  font-size: 16px;
  font-weight: 850;
}

.ci-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 64px;
}

.ci-contact-copy {
  background: var(--ci-ink);
  color: #fff;
}

.ci-contact-copy strong {
  color: #fff;
  font-size: clamp(42px, 4.1vw, 82px);
}

.ci-contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.08vw, 22px);
}

.ci-contact-hero span {
  max-width: 1260px;
  font-size: clamp(28px, 2vw, 44px);
}

.ci-contact-form {
  display: grid;
  gap: 18px;
  border: 2px solid var(--ci-ink);
}

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

.ci-contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.ci-contact-form label span {
  color: var(--ci-blue);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-contact-form input,
.ci-contact-form select,
.ci-contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 0;
}

.ci-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ci-ink) 50%),
    linear-gradient(135deg, var(--ci-ink) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 14px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
  line-height: 1.1;
  padding-right: 46px;
}

.ci-contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.ci-contact-form input:focus,
.ci-contact-form select:focus,
.ci-contact-form textarea:focus {
  outline: 3px solid rgba(0, 173, 231, 0.32);
  outline-offset: 0;
}

.ci-contact-email-grid.is-invalid input[name="email_confirm"] {
  border-color: var(--ci-red);
}

.ci-contact-field-note {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: var(--ci-red);
  font-size: 14px;
  font-weight: 950;
}

.ci-contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ci-contact-submit,
.ci-cookie-btn {
  min-height: 52px;
  padding: 0 20px;
  border: 2px solid var(--ci-ink);
  background: var(--ci-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
}

.ci-contact-submit:hover,
.ci-contact-submit:focus-visible,
.ci-cookie-btn.is-primary:hover,
.ci-cookie-btn.is-primary:focus-visible {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
}

.ci-contact-alert {
  padding: 16px 18px;
  border: 2px solid var(--ci-ink);
  font-weight: 850;
}

.ci-contact-alert strong,
.ci-contact-alert span {
  display: block;
}

.ci-contact-alert ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.ci-contact-alert.is-success {
  background: #dff6e8;
}

.ci-contact-alert.is-error {
  background: #ffe7ec;
}

.ci-cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(720px, calc(100vw - 36px));
  padding: 20px;
  border: 3px solid var(--ci-ink);
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 9, 15, 0.2);
}

@media (min-width: 821px) {
  .ci-cookie-banner {
    left: 50%;
    right: auto;
    bottom: 24px;
    grid-template-columns: minmax(0, 1fr);
    width: min(980px, calc(100vw - 48px));
    transform: translateX(-50%);
  }

  .ci-cookie-copy {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: 18px 28px;
    align-items: start;
  }

  .ci-cookie-copy strong {
    font-size: 24px;
    line-height: 1;
  }

  .ci-cookie-copy p {
    margin: 0;
    font-size: 18px;
  }

  .ci-cookie-copy nav {
    grid-column: 1 / -1;
  }

  .ci-cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .ci-cookie-btn {
    min-width: 0;
    white-space: nowrap;
  }
}

.ci-cookie-banner.is-hidden {
  display: none;
}

.ci-cookie-copy p {
  margin: 6px 0 10px;
  color: var(--ci-ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.ci-cookie-copy nav,
.ci-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ci-cookie-copy nav a {
  color: var(--ci-blue);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-cookie-actions {
  justify-content: flex-end;
  align-items: start;
}

.ci-cookie-btn.is-ghost,
.ci-cookie-btn.is-soft {
  background: #fff;
  color: var(--ci-ink);
}

.ci-cookie-btn.is-soft {
  border-color: var(--ci-cyan);
  color: var(--ci-blue);
}

.ci-cookie-options {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
  border-top: 2px solid var(--ci-line);
}

.ci-cookie-options[hidden] {
  display: none;
}

.ci-cookie-options label {
  color: var(--ci-ink);
  font-size: 14px;
  font-weight: 850;
}

@media (min-width: 821px) {
  .ci-cookie-copy {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: 18px 28px;
    align-items: start;
  }

  .ci-cookie-copy strong {
    font-size: 24px;
    line-height: 1;
  }

  .ci-cookie-copy p {
    margin: 0;
    font-size: 18px;
    line-height: 1.28;
  }

  .ci-cookie-copy nav {
    grid-column: 1 / -1;
  }

  .ci-cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .ci-cookie-btn {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }
}

.ci-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 72px);
  border-top: 0;
  background: var(--ci-ink);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.ci-footer-main {
  display: grid;
  gap: 4px;
  max-width: none;
}

.ci-footer-main strong {
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-footer-main span {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.18;
}

.ci-footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: none;
  min-width: 0;
}

.ci-footer-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-footer-links a:hover,
.ci-footer-links a:focus-visible {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
}

.ci-footer small {
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .ci-chart-row,
  .ci-chart-row.is-top {
    grid-template-columns: 94px 132px minmax(0, 1fr) 82px 116px 58px;
    grid-template-areas: "rank cover copy trend stats links";
    grid-template-rows: auto;
    align-content: stretch;
    min-height: 132px;
    gap: 0;
    padding: 0 20px 0 0;
  }

  .ci-chart-row.is-top {
    min-height: 132px;
  }

  .ci-rank,
  .ci-chart-row.is-top .ci-rank {
    font-size: 48px;
  }

  .ci-stats div {
    grid-template-columns: 1fr 42px;
  }

  .ci-copy {
    margin-left: 18px;
  }

  .ci-copy h2,
  .ci-copy p,
  .ci-copy small {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-platform-links {
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    align-self: center;
    gap: 6px;
    width: 44px;
    margin-top: 0;
    margin-left: 0;
  }

  .ci-platform-links--top-copy {
    display: none;
  }

  .ci-chart-row.is-top .ci-platform-links--row {
    display: flex;
    justify-content: center;
    justify-self: end;
    align-self: center;
    width: 44px;
    margin: 0;
  }

  .ci-platform-link {
    width: 32px;
    height: 32px;
  }

  .ci-platform-link svg {
    width: 16px;
    height: 16px;
  }

  .ci-trend {
    margin-left: 18px;
  }

  .ci-stats {
    margin-left: 18px;
  }

  .ci-chart-row--legacy,
  .ci-chart-row--legacy.is-top {
    grid-template-columns: 78px minmax(0, 1fr) 82px 112px;
    grid-template-areas: "rank copy trend stats";
    min-height: 104px;
    padding: 14px 18px 14px 0;
  }

  .ci-chart-row--legacy .ci-copy h2,
  .ci-chart-row--legacy.is-top .ci-copy h2 {
    font-size: clamp(22px, 2.2vw, 32px);
  }
}

@media (max-width: 1420px) and (min-width: 821px) {
  .ci-insert-copy {
    width: min(62%, 920px);
  }

  .ci-insert-copy h1 {
    font-size: clamp(60px, 7.4vw, 108px);
  }

  .ci-insert-copy strong {
    font-size: clamp(22px, 2vw, 34px);
  }

  .ci-insert-visual {
    width: 60%;
  }

  .ci-insert-visual img {
    height: min(92%, 670px);
    margin-right: -86px;
  }

  .ci-insert-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .ci-insert-strip strong {
    white-space: normal;
  }

  .ci-insert-strip span {
    justify-self: start;
    max-width: 760px;
    text-align: left;
  }

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

  .ci-insert-features article {
    min-height: 220px;
  }

  .ci-insert-features h2 {
    font-size: clamp(24px, 2.1vw, 34px);
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .ci-rd-detail {
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
    gap: 0;
  }

  .ci-rd-detail-main {
    padding: 28px;
  }

  .ci-rd-detail-main h1 {
    font-size: clamp(34px, 5.5vw, 58px);
  }

  .ci-rd-detail-main h2 {
    font-size: clamp(22px, 3.2vw, 34px);
  }

  .ci-rd-press {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  }

  .ci-rd-press:not(.has-contact) {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ci-rd-press:not(.has-actions) {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 820px) {
  .ci-header {
    position: sticky;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--ci-ink);
  }

  .ci-logo img {
    width: min(210px, 58vw);
  }

  .ci-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
  }

  .ci-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .18s ease, opacity .18s ease;
  }

  .ci-menu-state:checked + .ci-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ci-menu-state:checked + .ci-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .ci-menu-state:checked + .ci-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ci-header nav,
  .ci-main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: auto;
    padding: 12px 16px 16px;
    background: var(--ci-ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .ci-menu-state:checked ~ nav,
  .ci-menu-state:checked ~ .ci-main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .ci-header nav a,
  .ci-main-nav a {
    min-width: 0;
    justify-content: center;
    min-height: 48px;
    padding: 0 8px;
    background: transparent;
    color: #fff;
    border-color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  main {
    width: 100%;
  }

  .ci-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding-top: 34px;
  }

  .ci-hero aside {
    width: 100%;
    text-align: left;
  }

  .ci-rd-hero aside {
    justify-content: flex-start;
  }

  .ci-hero > div > span {
    width: 100%;
  }

  .ci-week-picker {
    width: 100%;
  }

  .ci-week-picker summary {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
  }

  .ci-week-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: -2px;
    box-shadow: none;
  }

  .ci-week-menu a {
    padding: 14px 20px;
  }

  .ci-hero.is-emergenti h1 {
    font-size: clamp(54px, 15vw, 92px);
    line-height: 0.9;
  }

  .ci-chart-list {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    gap: 10px;
    padding-top: 0;
  }

  .ci-archive-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: 0 auto;
    gap: 34px;
    padding-top: 8px;
  }

  .ci-archive-grid--all {
    gap: 28px;
  }

  .ci-archive-pagination {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding-bottom: 46px;
  }

  .ci-video-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: 0 auto;
    gap: 28px;
    padding: 20px 0 46px;
  }

  .ci-video-row,
  .ci-video-row.is-archive,
  .ci-video-row.is-playlist-row {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "rank copy"
      "trend copy"
      "drawer drawer";
    grid-template-rows: 46px 20px auto;
    gap: 0 8px;
    padding: 10px 8px 12px;
  }

  .ci-video-row.is-archive {
    grid-template-areas:
      "rank copy"
      "trend copy"
      "stats stats";
  }

  .ci-video-row.is-playlist-row {
    grid-template-areas:
      "rank copy"
      "trend copy"
      "drawer drawer";
  }

  .ci-video-heading {
    padding: 0;
  }

  .ci-video-heading h2 {
    font-size: 48px;
  }

  .ci-video-rank {
    grid-area: rank;
    align-self: stretch;
    justify-self: stretch;
    min-height: 46px;
    height: 46px;
    padding-bottom: 3px;
    background: transparent;
    font-size: 26px;
    justify-content: flex-end;
  }

  .ci-video-copy {
    align-self: center;
    min-width: 0;
  }

  .ci-video-copy h3 {
    font-size: 18px;
    line-height: 1;
  }

  .ci-video-copy p {
    font-size: 15px;
    line-height: 1.08;
  }

  .ci-video-copy small {
    font-size: 11px;
    line-height: 1.1;
  }

  .ci-video-trend {
    grid-area: trend;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    justify-content: center;
    margin: 0;
    min-height: 20px;
    height: 20px;
    padding: 1px 0 11px;
    background: transparent;
    pointer-events: none;
  }

  .ci-video-row:nth-child(1) .ci-video-rank,
  .ci-video-row:nth-child(1) .ci-video-trend {
    background: var(--ci-cyan);
    color: #fff;
  }

  .ci-video-row:nth-child(2) .ci-video-rank,
  .ci-video-row:nth-child(3) .ci-video-rank,
  .ci-video-row:nth-child(2) .ci-video-trend,
  .ci-video-row:nth-child(3) .ci-video-trend {
    background: var(--ci-line);
  }

  .ci-video-trend .ci-movement {
    grid-auto-flow: row;
    gap: 1px;
    min-width: 0;
    margin: 0;
  }

  .ci-video-trend .ci-movement b {
    min-width: 0;
    height: auto;
    font-size: 10px;
    line-height: 1;
  }

  .ci-video-trend .ci-movement em {
    font-size: 8px;
    line-height: 1;
    margin-top: 0;
  }

  .ci-video-trend .ci-movement.is-new b {
    font-size: 9px;
  }

  .ci-video-row:nth-child(1) .ci-video-trend .ci-movement b,
  .ci-video-row:nth-child(1) .ci-video-trend .ci-movement em {
    color: #fff;
  }

  .ci-video-row.is-playlist-row > .ci-video-stats {
    display: none;
  }

  .ci-video-row.is-archive > .ci-video-stats {
    grid-area: stats;
    display: flex;
    justify-content: flex-end;
    width: auto;
    margin: 10px 8px -12px 0;
  }

  .ci-video-row.is-archive > .ci-video-stats div {
    padding: 0;
    background: transparent;
  }

  .ci-video-row.is-archive > .ci-video-stats dt {
    font-size: 10px;
  }

  .ci-video-row.is-archive > .ci-video-stats dd {
    font-size: 11px;
  }

  .ci-video-watch {
    display: none;
  }

  .ci-video-title-row {
    position: relative;
    padding-right: 24px;
  }

  .ci-video-title-row h3 {
    flex: 0 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-video-toggle {
    display: inline-flex;
  }

  .ci-video-row .ci-listen-toggle:checked ~ .ci-video-copy .ci-video-toggle::before {
    transform: rotate(180deg);
  }

  .ci-video-drawer {
    grid-area: drawer;
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    margin: 10px -8px -12px;
    padding: 9px 10px 9px 12px;
    background: var(--ci-ink);
  }

  .ci-listen-toggle:checked ~ .ci-video-drawer {
    display: flex;
  }

  .ci-video-watchbar-label {
    color: #b9bbc4;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .ci-video-drawer .ci-video-watch-link {
    width: 27px;
    height: 27px;
    color: #fff;
    background: var(--ci-ink);
    border-color: #fff;
    border-width: 1.5px;
  }

  .ci-video-drawer .ci-video-watch-link:hover,
  .ci-video-drawer .ci-video-watch-link:focus-visible {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
  }

  .ci-video-drawer .ci-video-watch-link svg {
    width: 15px;
    height: 15px;
  }

  .ci-video-drawer .ci-video-stats {
    display: flex;
    width: auto;
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .ci-video-drawer .ci-video-stats div {
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  .ci-video-drawer .ci-video-stats dt {
    color: #b9bbc4;
    font-size: 10px;
  }

  .ci-video-drawer .ci-video-stats dd {
    color: #fff;
    font-size: 11px;
  }

  .ci-archive-filters {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding-bottom: 18px;
  }

  .ci-archive-filter-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: -2px;
    box-shadow: none;
  }

  .ci-rd-page,
  .ci-rd-detail-page {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding-bottom: 42px;
  }

  .ci-rd-detail-page {
    padding-top: 24px;
  }

  .ci-rd-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ci-rd-tabs a,
  .ci-rd-week-nav a,
  .ci-rd-card-action,
  .ci-rd-back,
  .ci-rd-links a,
  .ci-rd-press a {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .ci-rd-week-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ci-rd-list {
    gap: 28px;
  }

  .ci-rd-day-head {
    padding: 14px 16px;
  }

  .ci-rd-day-head h2 {
    font-size: 22px;
  }

  .ci-rd-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ci-rd-card {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: stretch;
    column-gap: 14px;
    padding: 14px 16px;
  }

  .ci-rd-card-cover {
    width: 88px;
    height: 88px;
    aspect-ratio: 1;
    align-self: start;
    font-size: 42px;
  }

  .ci-rd-card-main {
    gap: 3px;
    padding: 4px 0 0;
  }

  .ci-rd-card-main h3 {
    font-size: 18px;
  }

  .ci-rd-card-main time {
    line-height: 1;
  }

  .ci-rd-card-main h3,
  .ci-rd-card-main p,
  .ci-rd-card-main small {
    line-height: 1.08;
  }

  .ci-rd-card-action {
    grid-column: 1 / -1;
    margin: 10px 0 0;
  }

  .ci-rd-detail {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }

  .ci-rd-detail-cover {
    display: none;
  }

  .ci-rd-detail-cover-inline {
    display: block !important;
    width: 100%;
    aspect-ratio: 1;
    height: calc(100vw - 24px);
    max-height: 640px;
    overflow: hidden;
    background: var(--ci-cyan);
  }

  .ci-rd-detail-main,
  .ci-rd-release,
  .ci-rd-note {
    padding: 22px;
  }

  .ci-rd-detail-main {
    display: grid !important;
    order: 0;
    gap: 6px;
    align-content: start;
    background: #fff;
  }

  .ci-rd-detail-main > p {
    display: none;
  }

  .ci-rd-date-box {
    width: 100%;
    padding: 12px 14px;
  }

  .ci-rd-detail-main h1 {
    font-size: 28px;
    line-height: 1;
  }

  .ci-rd-detail-main h2 {
    font-size: 20px;
    line-height: 1;
  }

  .ci-rd-detail-main small {
    font-size: 13px;
  }

  .ci-rd-press {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ci-rd-press-actions {
    justify-content: flex-start;
  }

  .ci-rd-copy {
    font-size: 16px;
    line-height: 1.5;
  }

  .ci-insert-hero {
    width: calc(100% - 24px);
    min-height: 0;
    margin: 24px auto;
    padding: 28px 22px 0;
    gap: 18px;
  }

  .ci-insert-copy {
    width: 100%;
  }

  .ci-insert-copy h1 {
    font-size: clamp(58px, 17vw, 88px);
    line-height: 0.86;
  }

  .ci-insert-copy strong {
    margin-top: 20px;
    font-size: 24px;
  }

  .ci-insert-copy em {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.36;
  }

  .ci-insert-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
  }

  .ci-insert-button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    text-align: center;
  }

  .ci-insert-price {
    text-align: center;
  }

  .ci-insert-price small {
    display: inline-block;
  }

  .ci-insert-visual img {
    position: relative;
    width: min(112%, 520px);
    height: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -34px;
  }

  .ci-insert-visual {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 18px;
    justify-content: center;
  }

  .ci-insert-strip,
  .ci-insert-final,
  .ci-insert-features {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .ci-insert-strip,
  .ci-insert-final {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    padding: 24px 22px;
  }

  .ci-insert-strip strong {
    font-size: 28px;
    white-space: normal;
  }

  .ci-insert-strip span {
    justify-self: start;
    max-width: 100%;
    text-align: left;
    font-size: 16px;
  }

  .ci-insert-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ci-insert-features article {
    min-height: 0;
    padding: 22px;
    border-top-width: 6px;
  }

  .ci-insert-features h2 {
    margin-top: 24px;
  }

  .ci-insert-final {
    margin-bottom: 42px;
  }

  .ci-insert-final h2 {
    font-size: 36px;
  }

  .ci-insert-final .ci-insert-button {
    justify-self: stretch;
  }

  .ci-archive-heading {
    min-height: 0;
  }

  .ci-chart-row,
  .ci-chart-row.is-top {
    position: relative;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 42px 76px minmax(0, 1fr);
    grid-template-areas:
      "rank cover copy"
      "trend cover copy"
      "links links links";
    grid-template-rows: 1fr auto auto;
    min-height: 0;
    gap: 0 8px;
    padding: 10px 8px 12px 8px;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 0;
    overflow: hidden;
  }

  .ci-rank {
    grid-area: rank;
    align-self: stretch;
    justify-self: stretch;
    min-height: 0;
    padding-top: 0;
    font-size: 26px;
    background: transparent;
    flex-direction: column;
    gap: 2px;
    justify-content: flex-end;
    padding-bottom: 3px;
  }

  .ci-chart-row.is-top .ci-rank {
    min-height: 0;
    background: var(--ci-cyan);
    color: #fff;
    font-size: 26px;
  }

  .ci-chart-row:nth-child(2) .ci-rank,
  .ci-chart-row:nth-child(3) .ci-rank {
    background: var(--ci-line);
  }

  .ci-cover {
    grid-area: cover;
    align-self: stretch;
  }

  .ci-copy {
    grid-area: copy;
    align-self: center;
    min-width: 0;
    margin-left: 0;
  }

  .ci-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    position: relative;
    padding-right: 24px;
  }

  .ci-copy h2,
  .ci-chart-row.is-top .ci-copy h2 {
    flex: 0 1 auto;
    font-size: 18px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-listen-trigger {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 0;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .ci-listen-trigger::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--ci-ink);
    transition: transform 0.16s ease;
  }

  .ci-listen-toggle:checked ~ .ci-copy .ci-listen-trigger::before {
    transform: rotate(180deg);
  }

  .ci-platform-links {
    grid-area: links;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    justify-self: stretch;
    gap: 5px;
    width: auto;
    min-height: 46px;
    margin: 10px -8px -12px;
    padding: 9px 112px 9px 12px;
    background: var(--ci-ink);
    border-top: 0;
  }

  .ci-platform-links--top-copy {
    display: none;
  }

  .ci-chart-row.is-top .ci-platform-links--row {
    display: none;
  }

  .ci-listen-toggle:checked ~ .ci-platform-links--row {
    display: flex;
  }

  .ci-chart-row.is-top .ci-listen-toggle:checked ~ .ci-platform-links--row {
    display: flex;
  }

  .ci-listen-label {
    display: inline-flex;
    margin-right: 3px;
    color: #b9bbc4;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
  }

  .ci-chart-row.is-top .ci-platform-links--row {
    flex-direction: row;
    justify-content: flex-start;
    justify-self: stretch;
    align-self: auto;
    width: auto;
    margin: 10px -8px -12px;
  }

  .ci-platform-link {
    width: 25px;
    height: 25px;
    color: #fff;
    background: var(--ci-ink);
    border-color: #fff;
    border-width: 1.5px;
  }

  .ci-platform-link svg {
    width: 14px;
    height: 14px;
  }

  .ci-platform-link.is-spotify:hover,
  .ci-platform-link.is-spotify:focus-visible {
    background: #1db954;
    border-color: #1db954;
    color: #fff;
  }

  .ci-platform-link.is-apple:hover,
  .ci-platform-link.is-apple:focus-visible {
    background: #fa2d55;
    border-color: #fa2d55;
    color: #fff;
  }

  .ci-platform-link.is-deezer:hover,
  .ci-platform-link.is-deezer:focus-visible {
    background: #8a3ffc;
    border-color: #8a3ffc;
    color: #fff;
  }

  .ci-copy p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.08;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-copy small {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-trend {
    grid-area: trend;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    margin: 0;
    background: transparent;
    padding: 1px 0 11px;
    pointer-events: none;
  }

  .ci-chart-row.is-top .ci-trend {
    background: var(--ci-cyan);
  }

  .ci-chart-row:nth-child(2) .ci-trend,
  .ci-chart-row:nth-child(3) .ci-trend {
    background: var(--ci-line);
  }

  .ci-movement {
    grid-auto-flow: row;
    align-items: center;
    justify-items: center;
    gap: 1px;
    min-width: 0;
    margin: 0;
  }

  .ci-movement b {
    min-width: 0;
    height: auto;
    font-size: 10px;
    line-height: 1;
  }

  .ci-movement em {
    font-size: 8px;
    line-height: 1;
  }

  .ci-movement.is-new b {
    font-size: 9px;
  }

  .ci-movement.is-stable em {
    display: none;
  }

  .ci-chart-row.is-top .ci-movement b,
  .ci-chart-row.is-top .ci-movement em {
    color: #fff;
  }

  .ci-chart-row.is-top .ci-movement.is-reentry b {
    color: var(--ci-muted);
  }

  .ci-stats {
    position: static;
    z-index: 2;
    grid-area: links;
    align-self: center;
    justify-self: end;
    display: none;
    align-items: center;
    justify-items: end;
    gap: 8px;
    margin: 10px 8px -12px 0;
    pointer-events: none;
  }

  .ci-stats div {
    display: flex;
    grid-template-columns: none;
    align-items: baseline;
    gap: 3px;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .ci-stats dt,
  .ci-stats dd {
    text-align: right;
  }

  .ci-stats dt {
    color: #b9bbc4;
    width: auto;
    overflow: hidden;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .ci-stats dt::before {
    content: attr(data-short);
    font-size: 10px;
    font-weight: 900;
  }

  .ci-stats div:nth-child(1) dt::before {
    content: "LW";
  }

  .ci-stats div:nth-child(2) dt::before {
    content: "PK";
  }

  .ci-stats div:nth-child(3) dt::before {
    content: "WK";
  }

  .ci-stats dd {
    min-width: 0;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    line-height: 1;
  }

  .ci-listen-toggle:checked ~ .ci-stats {
    display: flex;
  }

  .ci-chart-row.has-no-platforms {
    grid-template-columns: 42px 76px minmax(0, 1fr);
    grid-template-areas:
      "rank cover copy"
      "trend cover copy"
      "links links links";
    grid-template-rows: 1fr auto auto;
  }

  .ci-platform-links--metrics-only {
    min-height: 46px;
    justify-content: flex-end;
    padding-left: 12px;
    padding-right: 112px;
  }

  .ci-platform-links--metrics-only .ci-listen-label {
    display: none;
  }

  .ci-chart-row.has-no-platforms .ci-listen-toggle:checked ~ .ci-platform-links--metrics-only {
    display: flex;
  }

  .ci-chart-row.has-no-platforms .ci-listen-toggle:checked ~ .ci-stats {
    display: flex;
  }

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

  .ci-chart-row--legacy,
  .ci-chart-row--legacy.is-top {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "rank copy"
      "links links";
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 72px;
    padding: 8px;
    gap: 0 10px;
  }

  .ci-chart-row--legacy .ci-rank,
  .ci-chart-row--legacy.is-top .ci-rank {
    align-self: center;
    justify-self: start;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    height: 58px;
    min-height: 58px;
    padding: 0 0 15px;
    font-size: 27px;
  }

  .ci-chart-row--legacy .ci-trend,
  .ci-chart-row--legacy.is-top .ci-trend {
    z-index: 1;
    grid-area: rank;
    align-self: end;
    justify-self: start;
    width: 46px;
    min-height: 15px;
    margin: 0;
    padding: 0 0 5px;
    background: transparent;
    align-items: center;
    justify-content: center;
  }

  .ci-chart-row--legacy:nth-child(-n + 3) .ci-rank span {
    display: inline-block;
    transform: translateY(2px);
  }

  .ci-chart-row--legacy:nth-child(-n + 3) .ci-movement b {
    transform: translateY(-3px);
  }

  .ci-chart-row--legacy .ci-trend .ci-movement.is-up b,
  .ci-chart-row--legacy .ci-trend .ci-movement.is-down b {
    transform: translateY(3px);
  }

  .ci-chart-row--legacy .ci-copy,
  .ci-chart-row--legacy.is-top .ci-copy {
    align-self: center;
    justify-self: start;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
  }

  .ci-chart-row--legacy .ci-title-row,
  .ci-chart-row--legacy.is-top .ci-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .ci-chart-row--legacy .ci-listen-trigger,
  .ci-chart-row--legacy.is-top .ci-listen-trigger {
    position: static;
    justify-self: end;
    transform: none;
    width: 18px;
    height: 18px;
    margin: 0;
  }

  .ci-chart-row--legacy .ci-copy h2,
  .ci-chart-row--legacy.is-top .ci-copy h2 {
    font-size: clamp(18px, 4.8vw, 21px);
    line-height: 1.02;
  }

  .ci-chart-row--legacy .ci-copy p,
  .ci-chart-row--legacy.is-top .ci-copy p {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.08;
  }

  .ci-chart-row--legacy .ci-copy small,
  .ci-chart-row--legacy.is-top .ci-copy small {
    font-size: clamp(11px, 3.2vw, 12px);
    line-height: 1.08;
  }

  .ci-chart-row--legacy .ci-copy h2,
  .ci-chart-row--legacy .ci-copy p,
  .ci-chart-row--legacy .ci-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ci-chart-row--legacy .ci-stats,
  .ci-chart-row--legacy.is-top .ci-stats {
    position: relative;
    z-index: 2;
    grid-area: links;
    display: none;
    justify-self: end;
    align-self: center;
    gap: 8px;
    margin: 6px 10px -8px 0;
    pointer-events: none;
  }

  .ci-chart-row--legacy .ci-stats div {
    display: flex;
    gap: 3px;
  }

  .ci-chart-row--legacy .ci-stats dt::before {
    color: #b9bbc4;
    font-size: 10px;
    font-weight: 900;
  }

  .ci-chart-row--legacy .ci-stats div:nth-child(1) dt::before {
    content: "LW";
  }

  .ci-chart-row--legacy .ci-stats div:nth-child(2) dt::before {
    content: "PK";
  }

  .ci-chart-row--legacy .ci-stats div:nth-child(3) dt::before {
    content: "WK";
  }

  .ci-chart-row--legacy .ci-stats dd {
    color: #fff;
    font-size: 11px;
  }

  .ci-chart-row--legacy .ci-platform-links--metrics-only {
    grid-area: links;
    align-items: center;
    height: 30px;
    min-height: 30px;
    margin: 6px -8px -8px;
    padding: 0 78px 0 10px;
  }

  .ci-chart-row--legacy.has-no-platforms,
  .ci-chart-row--legacy.has-no-platforms.is-top {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "rank copy"
      "links links";
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 72px;
    padding: 8px 10px;
    gap: 0 10px;
  }

  .ci-chart-row--legacy.has-no-platforms .ci-rank,
  .ci-chart-row--legacy.has-no-platforms.is-top .ci-rank {
    grid-area: rank;
    align-self: center;
    justify-self: start;
    width: 46px;
    min-width: 46px;
    height: 58px;
    min-height: 58px;
  }

  .ci-chart-row--legacy.has-no-platforms .ci-trend,
  .ci-chart-row--legacy.has-no-platforms.is-top .ci-trend {
    grid-area: rank;
    align-self: end;
    justify-self: start;
    width: 46px;
    margin: 0;
    padding-bottom: 5px;
  }

  .ci-chart-row--legacy.has-no-platforms .ci-copy,
  .ci-chart-row--legacy.has-no-platforms.is-top .ci-copy {
    grid-area: copy;
    align-self: center;
    justify-self: start;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
  }

  .ci-chart-row--legacy.has-no-platforms .ci-title-row,
  .ci-chart-row--legacy.has-no-platforms.is-top .ci-title-row {
    grid-template-columns: minmax(0, 1fr) 18px;
  }

  .ci-chart-row--legacy.has-no-platforms .ci-platform-links--metrics-only,
  .ci-chart-row--legacy.has-no-platforms.is-top .ci-platform-links--metrics-only {
    grid-area: links;
    height: 30px;
    min-height: 30px;
    margin: 6px -10px -8px;
    padding: 0 78px 0 10px;
  }

  .ci-chart-row--legacy.has-no-platforms .ci-stats,
  .ci-chart-row--legacy.has-no-platforms.is-top .ci-stats {
    grid-area: links;
    justify-self: end;
    align-self: center;
    margin: 6px 8px -8px 0;
    gap: 8px;
  }

  .ci-chart-row--legacy .ci-listen-toggle:checked ~ .ci-platform-links--metrics-only {
    display: flex;
  }

  .ci-chart-row--legacy .ci-listen-toggle:checked ~ .ci-stats {
    display: flex;
  }

  .ci-footer {
    display: grid;
    padding: 28px 18px;
  }

  .ci-footer small {
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .ci-about-grid,
  .ci-contact-layout,
  .ci-legal-layout {
    grid-template-columns: 1fr;
  }

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

  .ci-legal-company {
    position: static;
  }

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

  .ci-footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .ci-info-hero,
  .ci-about-hero {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 34px 0 24px;
  }

  .ci-info-hero h1,
  .ci-about-hero h1 {
    font-size: clamp(58px, 18vw, 96px);
    line-height: 0.86;
  }

  .ci-info-hero span,
  .ci-about-hero strong {
    font-size: 22px;
  }

  .ci-about-grid,
  .ci-about-statement,
  .ci-about-blocks,
  .ci-contact-layout,
  .ci-legal-layout {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .ci-about-blocks,
  .ci-contact-grid {
    grid-template-columns: 1fr;
  }

  .ci-about-lead,
  .ci-about-card,
  .ci-about-statement,
  .ci-contact-copy,
  .ci-contact-form,
  .ci-legal-content,
  .ci-legal-company {
    padding: 22px;
  }

  .ci-about-card {
    min-height: 260px;
  }

  .ci-about-blocks > div {
    min-height: 180px;
  }

  .ci-contact-field-note {
    grid-column: auto;
  }

  .ci-cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .ci-cookie-actions {
    justify-content: stretch;
  }

  .ci-cookie-btn,
  .ci-contact-submit {
    width: 100%;
  }

  .ci-cookie-options {
    align-items: stretch;
  }

  .ci-footer {
    padding: 28px 18px;
  }

  .ci-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .ci-footer-links a {
    justify-content: center;
    min-height: 40px;
    padding: 0 8px;
    text-align: center;
  }
}

/* Homepage final overrides: reuse chart geometry and keep mobile drawers identical. */
.ci-home-hero h1 {
  max-width: 980px;
  font-size: clamp(74px, 7.2vw, 132px);
  line-height: 0.84;
}

.ci-home-hero {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(30px, 4.2vw, 60px);
  padding-bottom: 14px;
}

.ci-home-hero aside {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  width: 100%;
}

.ci-home-top-artist {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  grid-template-rows: 146px 34px;
  width: 150px;
  min-height: 184px;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
}

.ci-home-top-artist:hover,
.ci-home-top-artist:focus-visible {
  border-color: var(--ci-cyan);
}

.ci-home-top-artist-cover {
  display: block;
  width: 146px;
  height: 146px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ci-line);
}

.ci-home-top-artist-cover img,
.ci-home-top-artist-cover .ci-cover-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-home-top-artist-copy {
  display: none;
}

.ci-home-top-artist-copy em {
  display: none;
  color: var(--ci-cyan);
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  font-weight: 1000;
}

.ci-home-top-artist-copy strong,
.ci-home-top-artist-copy small {
  display: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-home-top-artist-copy strong {
  font-size: 22px;
  line-height: 0.95;
  font-weight: 1000;
}

.ci-home-top-artist-copy small {
  color: var(--ci-muted);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
}

.ci-home-top-artist-label {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0 8px;
  background: var(--ci-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ci-home-updated {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 14px 16px;
  background: var(--ci-ink);
  color: #fff;
}

.ci-home-hero aside .ci-home-updated strong,
.ci-home-updated strong {
  color: var(--ci-cyan);
  font-size: 14px;
  line-height: 1;
}

.ci-home-hero aside .ci-home-updated em,
.ci-home-updated em {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.ci-home-shortcuts {
  grid-column: 1 / -1;
}

.ci-home-left {
  gap: 42px;
}

.ci-home-left .ci-home-panel:not(:last-child) {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(8, 9, 15, 0.12);
}

.ci-home-chart-panel .ci-home-list,
.ci-home-video-panel .ci-home-list {
  gap: 12px;
}

.ci-home-chart-panel .ci-chart-row {
  grid-template-columns: 74px 86px minmax(0, 1fr) 102px 66px;
  grid-template-areas: "rank cover copy links trend";
  min-height: 86px;
  padding: 0 14px 0 0;
  gap: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.ci-home-chart-panel .ci-rank {
  align-self: stretch;
  background: transparent;
  font-size: 36px;
}

.ci-home-chart-panel .ci-chart-row:first-child .ci-rank {
  background: var(--ci-cyan);
  color: #fff;
}

.ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-rank,
.ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-rank {
  background: var(--ci-line);
}

.ci-home-chart-panel .ci-cover {
  align-self: stretch;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.ci-home-chart-panel .ci-cover img,
.ci-home-chart-panel .ci-cover-placeholder {
  height: 100%;
  object-fit: cover;
}

.ci-home-chart-panel .ci-copy {
  margin-left: 16px;
}

.ci-home-chart-panel .ci-copy h2,
.ci-home-chart-panel .ci-chart-row.is-top .ci-copy h2 {
  font-size: clamp(22px, 1.55vw, 32px);
  line-height: 0.98;
}

.ci-home-chart-panel .ci-copy h2,
.ci-home-chart-panel .ci-copy p,
.ci-home-chart-panel .ci-copy small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-home-chart-panel .ci-copy p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
}

.ci-home-chart-panel .ci-copy small {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

.ci-home-chart-panel .ci-platform-links {
  display: flex;
  justify-content: flex-end;
  align-self: center;
  width: auto;
  min-width: 0;
  gap: 7px;
}

.ci-home-chart-panel .ci-listen-label {
  display: none;
}

.ci-home-chart-panel .ci-platform-link {
  width: 31px;
  height: 31px;
}

.ci-home-chart-panel .ci-platform-link svg {
  width: 15px;
  height: 15px;
}

.ci-home-chart-panel .ci-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}

.ci-home-chart-panel .ci-trend .ci-movement {
  min-width: 50px;
  gap: 0;
}

.ci-home-chart-panel .ci-trend .ci-movement b {
  height: 28px;
  min-width: 32px;
  font-size: 24px;
}

.ci-home-chart-panel .ci-trend .ci-movement em {
  margin-top: -2px;
}

.ci-home-chart-panel .ci-stats {
  display: none;
}

.ci-home-video-panel .ci-video-row {
  grid-template-columns: 104px minmax(0, 1fr) 58px 74px;
  grid-template-areas: "rank copy watch trend";
  min-height: 104px;
  gap: 0;
  padding: 0 14px 0 0;
  background: #fff;
  overflow: hidden;
}

.ci-home-video-panel .ci-video-rank {
  align-self: stretch;
  font-size: 44px;
}

.ci-home-video-panel .ci-video-copy h3 {
  font-size: clamp(25px, 1.9vw, 40px);
  line-height: 0.98;
}

.ci-home-video-panel .ci-video-copy h3,
.ci-home-video-panel .ci-video-copy p,
.ci-home-video-panel .ci-video-copy small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-home-video-panel .ci-video-copy p {
  font-size: 18px;
}

.ci-home-video-panel .ci-video-copy small {
  font-size: 14px;
}

.ci-home-video-panel .ci-video-copy {
  margin-left: 18px;
}

.ci-home-video-panel .ci-video-watch,
.ci-home-video-panel .ci-video-trend {
  align-self: center;
}

.ci-home-video-panel .ci-video-trend .ci-movement {
  min-width: 58px;
  gap: 0;
}

.ci-home-video-panel .ci-video-trend .ci-movement b {
  height: 34px;
  min-width: 38px;
  font-size: 28px;
}

.ci-home-video-panel .ci-video-trend .ci-movement em {
  margin-top: -2px;
}

.ci-home-video-panel .ci-video-stats,
.ci-home-video-panel .ci-video-drawer {
  display: none;
}

.ci-home-rd-panel {
  padding: 26px;
}

.ci-home-rd-panel .ci-home-panel-head h2 {
  font-size: clamp(48px, 3.6vw, 70px);
}

.ci-home-rd-row {
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  padding: 0;
}

.ci-home-rd-row:hover .ci-home-rd-copy strong,
.ci-home-rd-row:focus-visible .ci-home-rd-copy strong {
  color: var(--ci-cyan);
}

.ci-home-newsletter {
  gap: 18px;
  padding: 26px;
}

.ci-home-newsletter h2 {
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 1.04;
}

.ci-home-newsletter-widget {
  display: grid;
  gap: 0;
  padding: 0;
  background: #fff;
}

@media (max-width: 1180px) and (min-width: 821px) {
  .ci-home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 12px;
  }

  .ci-home-hero h1 {
    font-size: clamp(68px, 8.1vw, 96px);
  }

  .ci-home-hero aside {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-top-artist {
    grid-template-rows: 132px 32px;
    width: 136px;
    min-height: 168px;
  }

  .ci-home-top-artist-cover {
    width: 132px;
    height: 132px;
  }

  .ci-home-updated {
    padding: 12px 14px;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    font-size: 22px;
  }
}

@media (max-width: 820px) {
  .ci-home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 10px;
  }

  .ci-home-hero h1 {
    max-width: 100%;
    font-size: clamp(54px, 14.8vw, 76px);
    line-height: 0.86;
  }

  .ci-home-hero span {
    max-width: 100%;
    font-size: 22px;
    line-height: 1;
  }

  .ci-home-hero aside {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 8px;
  }

  .ci-home-top-artist {
    grid-template-columns: 1fr;
    grid-template-rows: 110px 30px;
    width: 114px;
    min-height: 144px;
    padding: 0;
  }

  .ci-home-top-artist-cover {
    width: 110px;
    height: 110px;
  }

  .ci-home-top-artist-copy strong {
    display: none;
  }

  .ci-home-hero aside .ci-home-updated strong,
  .ci-home-updated strong {
    font-size: 13px;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    font-size: 22px;
  }

  .ci-home-left {
    gap: 34px;
  }

  .ci-home-left .ci-home-panel:not(:last-child) {
    padding-bottom: 30px;
  }

  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    grid-template-columns: 42px 76px minmax(0, 1fr);
    grid-template-areas:
      "rank cover copy"
      "trend cover copy"
      "links links links";
    grid-template-rows: 1fr auto auto;
    min-height: 0;
    gap: 0 8px;
    padding: 10px 8px 12px;
  }

  .ci-home-chart-panel .ci-rank {
    align-self: stretch;
    min-height: 0;
    padding-bottom: 3px;
    background: transparent;
    font-size: 26px;
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-rank,
  .ci-home-chart-panel .ci-chart-row:first-child .ci-trend {
    background: var(--ci-cyan);
    color: #fff;
  }

  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-trend,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-trend {
    background: var(--ci-line);
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-movement b,
  .ci-home-chart-panel .ci-chart-row:first-child .ci-movement em {
    color: #fff;
  }

  .ci-home-chart-panel .ci-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    align-self: stretch;
  }

  .ci-home-chart-panel .ci-copy h2,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-copy h2 {
    font-size: 18px;
    line-height: 1;
  }

  .ci-home-chart-panel .ci-copy p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.08;
  }

  .ci-home-chart-panel .ci-copy small {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.1;
  }

  .ci-home-chart-panel .ci-platform-links {
    display: none;
    flex-direction: row;
    justify-content: flex-start;
    justify-self: stretch;
    width: auto;
    min-height: 46px;
    margin: 10px -8px -12px;
    padding: 9px 112px 9px 12px;
    background: var(--ci-ink);
  }

  .ci-home-chart-panel .ci-platform-links .ci-listen-label {
    display: inline-flex;
  }

  .ci-home-chart-panel .ci-listen-toggle:checked ~ .ci-platform-links--row {
    display: flex;
  }

  .ci-home-chart-panel .ci-platform-link {
    width: 25px;
    height: 25px;
    color: #fff;
    background: var(--ci-ink);
    border-color: #fff;
    border-width: 1.5px;
  }

  .ci-home-chart-panel .ci-platform-link svg {
    width: 14px;
    height: 14px;
  }

  .ci-home-chart-panel .ci-stats {
    display: none;
  }

  .ci-home-chart-panel .ci-listen-toggle:checked ~ .ci-stats {
    display: flex;
  }

  .ci-home-video-panel .ci-video-row,
  .ci-home-video-panel .ci-video-row.is-playlist-row {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "rank copy"
      "trend copy"
      "drawer drawer";
    grid-template-rows: 46px 20px auto;
    gap: 0 8px;
    min-height: 0;
    padding: 10px 8px 12px;
  }

  .ci-home-video-panel .ci-video-rank {
    min-height: 46px;
    height: 46px;
    padding-bottom: 3px;
    background: transparent;
    font-size: 26px;
    justify-content: flex-end;
  }

  .ci-home-video-panel .ci-video-row:nth-child(1) .ci-video-rank,
  .ci-home-video-panel .ci-video-row:nth-child(1) .ci-video-trend {
    background: var(--ci-cyan);
    color: #fff;
  }

  .ci-home-video-panel .ci-video-row:nth-child(2) .ci-video-rank,
  .ci-home-video-panel .ci-video-row:nth-child(3) .ci-video-rank,
  .ci-home-video-panel .ci-video-row:nth-child(2) .ci-video-trend,
  .ci-home-video-panel .ci-video-row:nth-child(3) .ci-video-trend {
    background: var(--ci-line);
  }

  .ci-home-video-panel .ci-video-copy h3 {
    font-size: 18px;
    line-height: 1;
  }

  .ci-home-video-panel .ci-video-copy p {
    font-size: 15px;
    line-height: 1.08;
  }

  .ci-home-video-panel .ci-video-copy small {
    font-size: 11px;
    line-height: 1.1;
  }

  .ci-home-video-panel .ci-video-watch {
    display: none;
  }

  .ci-home-video-panel .ci-video-drawer {
    display: none;
  }

  .ci-home-video-panel .ci-listen-toggle:checked ~ .ci-video-drawer {
    display: flex;
  }

  .ci-home-rd-panel,
  .ci-home-newsletter {
    padding: 18px;
  }

  .ci-home-rd-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .ci-home-newsletter h2 {
    font-size: 24px;
  }
}

/* Homepage v36: keep preview chart rows aligned with the live TOP100 proportions. */
@media (min-width: 821px) {
  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    grid-template-columns: 72px 86px minmax(0, 1fr) 96px 58px !important;
    grid-template-areas: "rank cover copy links trend" !important;
    min-height: 86px !important;
    padding: 0 12px 0 0 !important;
    gap: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .ci-home-chart-panel .ci-rank,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-rank {
    width: auto !important;
    min-width: 0 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    background: transparent;
    font-size: 36px !important;
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-rank {
    background: var(--ci-cyan) !important;
    color: #fff !important;
  }

  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-rank {
    background: var(--ci-line) !important;
  }

  .ci-home-chart-panel .ci-cover {
    width: 86px !important;
    height: 86px !important;
    align-self: stretch !important;
    aspect-ratio: 1 / 1 !important;
  }

  .ci-home-chart-panel .ci-cover img,
  .ci-home-chart-panel .ci-cover-placeholder {
    width: 86px !important;
    height: 86px !important;
    object-fit: cover !important;
  }

  .ci-home-chart-panel .ci-copy {
    min-width: 0 !important;
    margin-left: 16px !important;
  }

  .ci-home-chart-panel .ci-copy h2,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-copy h2 {
    font-size: clamp(22px, 1.45vw, 30px) !important;
    line-height: 0.98 !important;
  }

  .ci-home-chart-panel .ci-platform-links {
    justify-content: flex-end !important;
    gap: 7px !important;
  }

  .ci-home-chart-panel .ci-platform-link {
    width: 30px !important;
    height: 30px !important;
  }

  .ci-home-chart-panel .ci-trend {
    margin-left: 0 !important;
  }

  .ci-home-chart-panel .ci-trend .ci-movement {
    min-width: 42px !important;
    gap: 0 !important;
  }

  .ci-home-chart-panel .ci-trend .ci-movement b {
    height: 28px !important;
    min-width: 30px !important;
    font-size: 24px !important;
  }

  .ci-home-chart-panel .ci-trend .ci-movement em {
    margin-top: -2px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 820px) {
  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 42px 76px minmax(0, 1fr) !important;
    grid-template-areas:
      "rank cover copy"
      "trend cover copy"
      "links links links" !important;
    grid-template-rows: 45px 31px auto !important;
    min-height: 98px !important;
    gap: 0 8px !important;
    padding: 10px 8px 12px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .ci-home-chart-panel .ci-rank,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-rank {
    grid-area: rank !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    width: 42px !important;
    height: 45px !important;
    min-height: 0 !important;
    padding: 0 0 3px !important;
    background: transparent !important;
    font-size: 26px !important;
    line-height: 1 !important;
    flex-direction: column !important;
    gap: 2px !important;
    justify-content: flex-end !important;
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-rank,
  .ci-home-chart-panel .ci-chart-row:first-child .ci-trend {
    background: var(--ci-cyan) !important;
    color: #fff !important;
  }

  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(2) .ci-trend,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-trend {
    background: var(--ci-line) !important;
  }

  .ci-home-chart-panel .ci-cover {
    grid-area: cover !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    width: 76px !important;
    height: 76px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .ci-home-chart-panel .ci-cover img,
  .ci-home-chart-panel .ci-cover-placeholder {
    width: 76px !important;
    height: 76px !important;
    object-fit: cover !important;
  }

  .ci-home-chart-panel .ci-copy {
    grid-area: copy !important;
    align-self: center !important;
    min-width: 0 !important;
    margin-left: 0 !important;
  }

  .ci-home-chart-panel .ci-title-row {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: 100% !important;
    padding-right: 24px !important;
  }

  .ci-home-chart-panel .ci-copy h2,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-copy h2 {
    flex: 0 1 auto !important;
    font-size: 18px !important;
    line-height: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .ci-home-chart-panel .ci-copy p {
    margin-top: 4px !important;
    font-size: 15px !important;
    line-height: 1.08 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .ci-home-chart-panel .ci-copy small {
    margin-top: 5px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .ci-home-chart-panel .ci-trend {
    grid-area: trend !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    align-self: stretch !important;
    width: 42px !important;
    height: 31px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 1px 0 11px !important;
    background: transparent !important;
    pointer-events: none !important;
  }

  .ci-home-chart-panel .ci-movement {
    grid-auto-flow: row !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 1px !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .ci-home-chart-panel .ci-movement b {
    min-width: 0 !important;
    height: auto !important;
    font-size: 10px !important;
    line-height: 1 !important;
  }

  .ci-home-chart-panel .ci-movement em {
    margin-top: 0 !important;
    font-size: 8px !important;
    line-height: 1 !important;
  }

  .ci-home-chart-panel .ci-movement.is-new b {
    font-size: 9px !important;
  }

  .ci-home-chart-panel .ci-movement.is-stable em {
    display: none !important;
  }

  .ci-home-chart-panel .ci-chart-row:first-child .ci-movement b,
  .ci-home-chart-panel .ci-chart-row:first-child .ci-movement em {
    color: #fff !important;
  }
}

/* Homepage v37: desktop video rows use the same compact rhythm as the chart rows. */
@media (min-width: 821px) {
  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    grid-template-columns: 72px 86px minmax(0, 1fr) 116px 68px !important;
  }

  .ci-home-chart-panel .ci-platform-links {
    padding-right: 12px !important;
  }

  .ci-home-chart-panel .ci-trend {
    padding-left: 8px !important;
  }

  .ci-home-video-panel .ci-video-row,
  .ci-home-video-panel .ci-video-row.is-playlist-row {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) 116px 68px !important;
    grid-template-areas: "rank copy watch trend" !important;
    align-items: center !important;
    min-height: 86px !important;
    padding: 0 12px 0 0 !important;
    gap: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .ci-home-video-panel .ci-video-rank {
    grid-area: rank !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 86px !important;
    height: 86px !important;
    font-size: 36px !important;
  }

  .ci-home-video-panel .ci-video-copy {
    grid-area: copy !important;
    align-self: center !important;
    min-width: 0 !important;
    margin-left: 16px !important;
  }

  .ci-home-video-panel .ci-video-copy h3 {
    font-size: clamp(22px, 1.45vw, 30px) !important;
    line-height: 0.98 !important;
  }

  .ci-home-video-panel .ci-video-copy p {
    margin-top: 4px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .ci-home-video-panel .ci-video-copy small {
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .ci-home-video-panel .ci-video-watch {
    grid-area: watch !important;
    display: flex !important;
    align-self: center !important;
    justify-content: flex-end !important;
    padding-right: 12px !important;
  }

  .ci-home-video-panel .ci-video-watch-link {
    width: 30px !important;
    height: 30px !important;
  }

  .ci-home-video-panel .ci-video-watch-link svg {
    width: 15px !important;
    height: 15px !important;
  }

  .ci-home-video-panel .ci-video-trend {
    grid-area: trend !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    margin: 0 !important;
    padding-left: 8px !important;
  }

  .ci-home-video-panel .ci-video-trend .ci-movement {
    min-width: 42px !important;
    gap: 0 !important;
  }

  .ci-home-video-panel .ci-video-trend .ci-movement b {
    height: 28px !important;
    min-width: 30px !important;
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .ci-home-video-panel .ci-video-trend .ci-movement em {
    margin-top: -2px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }
}

/* Homepage v39: remove the Top Song tile and tighten hero/newsletter spacing. */
.ci-home-hero aside .ci-home-top-artist,
.ci-home-top-artist {
  display: none !important;
}

@media (min-width: 821px) {
  .ci-home-hero {
    margin-bottom: 24px !important;
  }

  .ci-home-hero aside {
    grid-template-columns: 1fr !important;
    align-content: start !important;
    gap: 10px !important;
  }

  .ci-home-updated {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 72px !important;
    padding: 12px 18px !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .ci-home-hero aside .ci-home-updated strong,
  .ci-home-updated strong {
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    margin-top: 6px !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .ci-home-main {
    margin-top: 18px !important;
  }

  .ci-home-shortcuts {
    gap: 8px !important;
  }

  .ci-home-shortcuts a {
    min-height: 76px !important;
    padding: 14px 16px !important;
  }

  .ci-home-shortcuts strong {
    font-size: 21px !important;
    line-height: 0.95 !important;
  }

  .ci-home-shortcuts span {
    margin-top: 5px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 820px) {
  .ci-home-hero aside {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .ci-home-updated {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 74px !important;
    padding: 12px 14px !important;
  }

  .ci-home-hero aside .ci-home-updated strong,
  .ci-home-updated strong {
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .ci-home-hero aside .ci-home-updated em,
  .ci-home-updated em {
    margin-top: 6px !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .ci-home-shortcuts {
    margin-bottom: 22px !important;
  }

  .ci-home-main {
    margin-top: 18px !important;
  }

  .ci-home-newsletter {
    min-height: 0 !important;
    padding: 14px !important;
    gap: 10px !important;
  }

  .ci-home-newsletter h2 {
    font-size: 20px !important;
    line-height: 1.05 !important;
  }

  .ci-home-newsletter-widget {
    min-height: 0 !important;
    max-height: 200px !important;
    overflow: hidden !important;
  }

  .ci-home-newsletter-widget iframe {
    min-height: 0 !important;
    height: 152px !important;
    max-height: 152px !important;
  }
}

/* Classifica rows v41: keep TOP100 and Emergenti blocks sharp-edged. */
.ci-chart-row,
.ci-chart-row.is-top,
.ci-chart-row--legacy,
.ci-chart-row--legacy.is-top {
  border-radius: 0 !important;
}

/* Blog WordPress import */
.ci-blog-hero {
  max-width: 1720px;
  margin: 72px auto 34px;
  padding: 0 32px;
}

.ci-blog-hero p,
.ci-blog-article-hero p,
.ci-blog-card-copy em {
  margin: 0;
  color: var(--ci-blue);
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-blog-hero h1 {
  margin: 0;
  color: var(--ci-black);
  font-size: clamp(90px, 13vw, 190px);
  line-height: 0.82;
  text-transform: uppercase;
}

.ci-blog-hero span {
  display: block;
  max-width: 850px;
  margin-top: 18px;
  color: var(--ci-black);
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 1000;
  line-height: 0.95;
}

.ci-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1720px;
  margin: 0 auto 70px;
  padding: 0 32px;
}

.ci-blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  color: var(--ci-black);
  text-decoration: none;
  background: #fff;
  border: 4px solid var(--ci-black);
}

.ci-blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ci-black);
  border-bottom: 4px solid var(--ci-black);
}

.ci-blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ci-blog-card-media.is-empty {
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  font-size: 34px;
  font-weight: 1000;
  line-height: 0.9;
  text-transform: uppercase;
}

.ci-blog-card-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
}

.ci-blog-card-copy time {
  color: var(--ci-cyan);
  font-weight: 1000;
}

.ci-blog-card-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ci-black);
  font-size: clamp(28px, 2.2vw, 46px);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ci-blog-card-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ci-gray);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ci-blog-card:hover strong,
.ci-blog-card:focus-visible strong {
  color: var(--ci-cyan);
}

.ci-blog-empty {
  grid-column: 1 / -1;
  padding: 34px;
  background: #fff;
  border: 4px solid var(--ci-black);
}

.ci-blog-empty strong,
.ci-blog-empty span {
  display: block;
  color: var(--ci-black);
  font-weight: 1000;
  text-transform: uppercase;
}

.ci-blog-empty span {
  margin-top: 6px;
  color: var(--ci-gray);
}

.ci-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1720px;
  margin: -30px auto 80px;
  padding: 0 32px;
}

.ci-blog-pagination a,
.ci-blog-pagination span,
.ci-blog-pagination strong,
.ci-blog-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  color: var(--ci-black);
  font-size: 16px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  background: #fff;
  border: 3px solid var(--ci-black);
}

.ci-blog-pagination span {
  color: var(--ci-gray);
  border-color: #cfcfd3;
}

.ci-blog-pagination a:hover,
.ci-blog-pagination a:focus-visible,
.ci-blog-back:hover,
.ci-blog-back:focus-visible {
  color: #fff;
  background: var(--ci-black);
}

.ci-blog-article {
  max-width: 1320px;
  margin: 44px auto 76px;
  padding: 0 32px;
}

.ci-blog-article > .ci-blog-back {
  margin-bottom: 22px;
}

.ci-blog-article-hero {
  padding: clamp(26px, 4vw, 58px);
  background: #fff;
  border: 4px solid var(--ci-black);
}

.ci-blog-article-hero time {
  display: inline-block;
  margin-top: 12px;
  color: var(--ci-cyan);
  font-size: 22px;
  font-weight: 1000;
}

.ci-blog-article-hero h1 {
  margin: 18px 0 0;
  color: var(--ci-black);
  font-size: clamp(44px, 7.4vw, 112px);
  font-weight: 1000;
  line-height: 0.9;
}

.ci-blog-article-media {
  margin: 26px 0;
  background: #fff;
  border: 4px solid var(--ci-black);
}

.ci-blog-article-media img {
  display: block;
  width: 100%;
  height: auto;
}

.ci-blog-article-content {
  padding: clamp(24px, 4vw, 60px);
  color: var(--ci-black);
  background: #fff;
  border: 4px solid var(--ci-black);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 500;
  line-height: 1.55;
}

.ci-blog-article-content h1,
.ci-blog-article-content h2,
.ci-blog-article-content h3 {
  margin: 1.3em 0 0.45em;
  color: var(--ci-black);
  font-weight: 1000;
  line-height: 0.96;
}

.ci-blog-article-content h2 {
  font-size: clamp(34px, 4vw, 64px);
}

.ci-blog-article-content h3 {
  font-size: clamp(26px, 3vw, 44px);
}

.ci-blog-article-content p {
  margin: 0 0 1.05em;
}

.ci-blog-article-content a {
  color: var(--ci-blue);
  font-weight: 900;
}

.ci-blog-article-content img,
.ci-blog-article-content video {
  max-width: 100%;
  height: auto;
}

.ci-blog-article-content iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

@media (max-width: 1180px) {
  .ci-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ci-blog-hero {
    margin: 36px auto 22px;
    padding: 0 16px;
  }

  .ci-blog-hero h1 {
    font-size: 74px;
  }

  .ci-blog-hero span {
    max-width: none;
    font-size: 26px;
  }

  .ci-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .ci-blog-card,
  .ci-blog-card-media,
  .ci-blog-empty,
  .ci-blog-article-hero,
  .ci-blog-article-media,
  .ci-blog-article-content {
    border-width: 3px;
  }

  .ci-blog-card-copy {
    padding: 18px;
  }

  .ci-blog-card-copy strong {
    font-size: 30px;
  }

  .ci-blog-pagination {
    flex-wrap: wrap;
    margin: -28px auto 48px;
    padding: 0 16px;
  }

  .ci-blog-article {
    margin: 22px auto 48px;
    padding: 0 16px;
  }

  .ci-blog-article-hero h1 {
    font-size: 42px;
    line-height: 0.95;
  }

  .ci-blog-article-content {
    font-size: 18px;
  }
}
