: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-italiana/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:first-child > 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;
  color: var(--ci-ink);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-transform: none;
}

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

.ci-rd-release .ci-rd-copy p,
.ci-rd-release .ci-rd-copy b,
.ci-rd-release .ci-rd-copy strong {
  color: var(--ci-ink);
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
}

.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;
  grid-template-areas: "main links copy";
  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 {
  grid-area: 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 {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  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 {
  grid-area: copy;
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 1500px) {
  .ci-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "main copy"
      "links links";
    align-items: start;
  }

  .ci-footer-links {
    justify-content: flex-start;
  }
}

@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;
    grid-template-areas:
      "main"
      "links"
      "copy";
  }

  .ci-footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .ci-footer small {
    justify-self: 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 v38: keep mobile TOP3 video movement arrows aligned with TOP5 rows. */
@media (max-width: 820px) {
  .ci-home-video-panel .ci-video-row,
  .ci-home-video-panel .ci-video-row.is-playlist-row {
    grid-template-rows: 45px 31px auto !important;
    min-height: 98px !important;
  }

  .ci-home-video-panel .ci-video-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;
    justify-content: flex-end !important;
  }

  .ci-home-video-panel .ci-video-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-video-panel .ci-video-trend .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-video-panel .ci-video-trend .ci-movement b {
    min-width: 0 !important;
    height: auto !important;
    font-size: 10px !important;
    line-height: 1 !important;
  }

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

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

  .ci-home-video-panel .ci-video-trend .ci-movement.is-stable em {
    display: none !important;
  }

  .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) !important;
    color: #fff !important;
  }

  .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) !important;
  }

  .ci-home-video-panel .ci-video-row:nth-child(1) .ci-movement b,
  .ci-home-video-panel .ci-video-row:nth-child(1) .ci-movement em {
    color: #fff !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;
}

/* Homepage v42: featured blog teasers in the right column. */
.ci-home-featured-panel {
  padding: 24px !important;
}

.ci-home-featured-panel .ci-home-panel-head h2 {
  font-size: clamp(42px, 3vw, 58px) !important;
  line-height: 0.9 !important;
}

.ci-home-featured-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.ci-home-featured-row {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  color: var(--ci-ink);
  text-decoration: none;
}

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

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

.ci-home-featured-cover.is-empty {
  display: grid;
  place-items: center;
  background: var(--ci-ink);
  color: #fff;
  font-size: 28px;
  font-weight: 1000;
}

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

.ci-home-featured-copy strong,
.ci-home-featured-copy small {
  display: -webkit-box;
  overflow: hidden;
  min-width: 0;
  -webkit-box-orient: vertical;
}

.ci-home-featured-copy strong {
  color: var(--ci-ink);
  font-size: clamp(21px, 1.45vw, 28px);
  font-weight: 1000;
  line-height: 0.95;
  -webkit-line-clamp: 2;
}

.ci-home-featured-copy small {
  color: var(--ci-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.12;
  -webkit-line-clamp: 2;
}

.ci-home-featured-row:hover .ci-home-featured-copy strong,
.ci-home-featured-row:focus-visible .ci-home-featured-copy strong {
  color: var(--ci-cyan);
}

.ci-home-search-panel {
  padding: 22px !important;
}

.ci-search-form {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.ci-search-form label {
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 3vw, 58px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.ci-search-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  border: 3px solid var(--ci-ink);
  background: #fff;
}

.ci-search-form input {
  min-width: 0;
  width: 100%;
  height: 54px;
  padding: 0 14px;
  border: 0;
  background: #fff;
  color: var(--ci-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  outline: none;
}

.ci-search-form button {
  min-width: 96px;
  border: 0;
  border-left: 3px solid var(--ci-ink);
  background: var(--ci-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
}

.ci-search-form button:hover,
.ci-search-form button:focus-visible {
  background: var(--ci-cyan);
}

.ci-search-page {
  display: grid;
  gap: 28px;
  padding: 0 0 72px;
}

.ci-search-page-form {
  width: min(920px, 100%);
}

.ci-search-page-form label {
  display: none;
}

.ci-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ci-search-section {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  border: 3px solid var(--ci-ink);
  background: #fff;
}

.ci-search-section h2 {
  margin: 0;
  color: var(--ci-ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 2.8vw, 54px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.ci-search-results {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.ci-search-result {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: var(--ci-ink);
  text-decoration: none;
}

.ci-search-result-media {
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ci-line);
  color: #fff;
}

.ci-search-result-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-search-result-media.is-empty {
  background: var(--ci-ink);
  font-size: 28px;
  font-weight: 1000;
}

.ci-search-result-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ci-search-result-copy em,
.ci-search-result-copy strong,
.ci-search-result-copy small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ci-search-result-copy em {
  color: var(--ci-cyan);
  font-size: 11px;
  font-style: normal;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ci-search-result-copy strong {
  color: var(--ci-ink);
  font-size: 22px;
  font-weight: 1000;
  line-height: 0.95;
  white-space: nowrap;
}

.ci-search-result-copy small {
  color: var(--ci-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ci-search-result:hover .ci-search-result-copy strong,
.ci-search-result:focus-visible .ci-search-result-copy strong {
  color: var(--ci-cyan);
}

.ci-search-empty {
  padding: 18px;
  background: var(--ci-paper);
  color: var(--ci-muted);
  font-size: 14px;
  font-weight: 850;
}

.ci-not-found-hero {
  grid-template-columns: 1fr;
  padding-bottom: 42px;
}

.ci-not-found-hero h1 {
  font-size: clamp(72px, 12vw, 168px);
}

body.ci-page-404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--ci-ink);
}

body.ci-page-404 main {
  flex: 1 0 auto;
  width: 100%;
  margin: 0;
  padding-inline: max(22px, calc((100vw - 1720px) / 2));
  background: var(--ci-paper);
}

body.ci-page-404 .ci-header,
body.ci-page-404 .ci-footer {
  flex: 0 0 auto;
}

.ci-not-found-panel {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 0 86px;
  padding: clamp(22px, 3vw, 34px);
  border: 3px solid var(--ci-ink);
  background: #fff;
}

.ci-not-found-copy {
  display: grid;
  gap: 10px;
}

.ci-not-found-copy h2 {
  margin: 0;
  color: var(--ci-ink);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 1000;
  line-height: 0.95;
}

.ci-not-found-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--ci-muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.18;
}

.ci-not-found-search label {
  font-family: inherit;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.ci-not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ci-not-found-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 3px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

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

@media (max-width: 820px) {
  .ci-not-found-panel {
    margin-bottom: 58px;
  }

  .ci-home-featured-panel {
    padding: 18px !important;
  }

  .ci-home-featured-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .ci-home-featured-cover {
    width: 78px;
  }

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

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

  .ci-home-search-panel {
    padding: 18px !important;
  }

  .ci-search-form div {
    grid-template-columns: 1fr;
  }

  .ci-search-form button {
    min-height: 48px;
    border-left: 0;
    border-top: 3px solid var(--ci-ink);
  }

  .ci-search-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ci-search-section {
    padding: 14px;
  }

  .ci-search-result {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .ci-search-result-media {
    width: 74px;
  }

  .ci-search-result-copy strong {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  body.ci-page-404 main {
    padding-inline: 12px;
  }

  .ci-search-page {
    padding-inline: 12px;
  }

  .ci-not-found-panel {
    margin-inline: 12px;
  }
}

/* Video chart v43: tighten mobile row bottoms and lift top movement markers. */
@media (max-width: 820px) {
  .ci-video-grid .ci-video-row,
  .ci-video-grid .ci-video-row.is-archive,
  .ci-video-grid .ci-video-row.is-playlist-row {
    grid-template-rows: 46px 22px auto;
    padding-bottom: 8px;
  }

  .ci-video-grid .ci-video-row:nth-child(-n+3) .ci-video-trend .ci-movement {
    transform: translateY(-3px);
  }

  .ci-video-grid .ci-video-drawer {
    margin-bottom: -8px;
  }
}

/* Video chart v44: center rank and delta as one block when a movement value is shown. */
@media (max-width: 820px) {
  .ci-video-grid .ci-video-row:has(.ci-movement.is-up) .ci-video-rank span,
  .ci-video-grid .ci-video-row:has(.ci-movement.is-down) .ci-video-rank span {
    display: inline-block;
    transform: translateY(-7px);
  }

  .ci-video-grid .ci-video-row:has(.ci-movement.is-up) .ci-video-trend .ci-movement,
  .ci-video-grid .ci-video-row:has(.ci-movement.is-down) .ci-video-trend .ci-movement {
    transform: translateY(-8px);
  }
}

/* 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: none;
  margin: 0 0 70px;
  padding: 0;
}

.ci-blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  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;
  overflow-wrap: anywhere;
  color: var(--ci-black);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 2.2vw, 46px);
  font-weight: 900;
  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: none;
  margin: -30px 0 80px;
  padding: 0;
}

.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);
  border-color: 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 > .ci-blog-back:hover,
.ci-blog-article > .ci-blog-back:focus-visible {
  color: #fff;
  background: var(--ci-ink);
  border-color: var(--ci-ink);
}

.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-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 4.3vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.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-hero.is-blog > div {
    min-width: 0;
  }

  .ci-hero.is-blog > div > span {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .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;
  }

  .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 0 48px;
    padding: 0;
  }

  .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;
  }
}

/* Classifica Italiana theme overrides */
:root {
  --ci-green: #009246;
  --ci-white: #ffffff;
  --ci-italy-red: #ce2b37;
  --ci-red: #ce2b37;
  --ci-blue: #1aa6d9;
  --ci-purple: #7b3fb2;
  --ci-orange: #f28c00;
  --ci-gray: #7b7f86;
  --ci-cyan: var(--ci-red);
  --ci-ink: #06070b;
  --ci-black: #06070b;
  --ci-paper: #f3f3f1;
  --ci-card: #ffffff;
  --ci-line: #d9d9d6;
  --ci-muted: #747780;
  --ci-radius: 4px;
}

html,
body {
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", Arial, sans-serif;
  background: var(--ci-paper);
}

.ci-hero h1,
.ci-home-hero h1,
.ci-home-panel-head h2,
.ci-info-hero h1,
.ci-about-hero h1,
.ci-blog-hero h1,
.ci-blog-article-hero h1,
.ci-video-heading h2,
.ci-rank,
.ci-video-rank {
  font-family: "Arial Black", "Franklin Gothic Heavy", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
}

.ci-header {
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--ci-green) 0 33.333%, #fff 33.333% 66.666%, var(--ci-italy-red) 66.666% 100%) 1;
}

.ci-logo img {
  width: min(295px, 44vw);
  max-height: 88px;
  object-fit: contain;
}

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

.ci-home-hero,
.ci-hero > aside,
.ci-home-side-box,
.ci-home-panel,
.ci-archive-section,
.ci-search-section,
.ci-not-found-panel,
.ci-contact-form,
.ci-contact-copy,
.ci-legal-content,
.ci-legal-company,
.ci-about-card,
.ci-about-statement,
.ci-about-blocks > div {
  border-radius: 0;
}

.ci-home-hero {
  border-top: 8px solid var(--ci-green);
  border-bottom: 8px solid var(--ci-italy-red);
}

.ci-home-hero > div > p,
.ci-hero p,
.ci-info-hero p,
.ci-about-hero p,
.ci-home-panel-head p,
.ci-home-updated strong,
.ci-home-rd-copy time,
.ci-search-result-copy em,
.ci-legal-hero p,
.ci-contact-hero p {
  color: var(--ci-green);
}

.ci-home-shortcuts a:nth-child(1),
.ci-chart-list.is-accent-red,
.ci-home-chart-panel:nth-child(1) {
  --ci-cyan: var(--ci-italy-red);
}

.ci-home-shortcuts a:nth-child(2),
.ci-chart-list.is-accent-green,
.ci-home-chart-panel:nth-child(2) {
  --ci-cyan: var(--ci-green);
}

.ci-home-shortcuts a:nth-child(3),
.ci-chart-list.is-accent-blue,
.ci-home-chart-panel:nth-child(3) {
  --ci-cyan: var(--ci-blue);
}

.ci-home-shortcuts a:nth-child(4),
.ci-chart-list.is-accent-gray,
.ci-home-chart-panel:nth-child(4) {
  --ci-cyan: var(--ci-gray);
}

.ci-home-shortcuts a:nth-child(5),
.ci-chart-list.is-accent-purple,
.ci-home-chart-panel:nth-child(5) {
  --ci-cyan: var(--ci-purple);
}

.ci-home-shortcuts a:nth-child(6),
.ci-chart-list.is-accent-orange,
.ci-home-chart-panel:nth-child(6) {
  --ci-cyan: var(--ci-orange);
}

.ci-home-shortcuts a:hover,
.ci-home-shortcuts a:focus-visible {
  background: var(--ci-cyan);
  border-color: var(--ci-cyan);
  color: #fff;
}

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

.ci-chart-list.is-accent-green .ci-chart-row.is-top .ci-rank,
.ci-home-chart-panel:nth-child(2) .ci-chart-row.is-top .ci-rank {
  background: var(--ci-green);
}

.ci-chart-list.is-accent-blue .ci-chart-row.is-top .ci-rank,
.ci-home-chart-panel:nth-child(3) .ci-chart-row.is-top .ci-rank {
  background: var(--ci-blue);
}

.ci-chart-list.is-accent-gray .ci-chart-row.is-top .ci-rank,
.ci-home-chart-panel:nth-child(4) .ci-chart-row.is-top .ci-rank {
  background: var(--ci-gray);
}

.ci-chart-list.is-accent-purple .ci-chart-row.is-top .ci-rank,
.ci-home-chart-panel:nth-child(5) .ci-chart-row.is-top .ci-rank {
  background: var(--ci-purple);
}

.ci-chart-list.is-accent-orange .ci-chart-row.is-top .ci-rank,
.ci-home-chart-panel:nth-child(6) .ci-chart-row.is-top .ci-rank {
  background: var(--ci-orange);
}

.ci-insert-hero {
  background:
    linear-gradient(90deg, rgba(0, 146, 70, 0.12), rgba(255, 255, 255, 0.9) 48%, rgba(206, 43, 55, 0.12)),
    #fff;
}

.ci-insert-visual {
  background: var(--ci-ink);
  border-color: var(--ci-ink);
}

.ci-insert-visual img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  padding: clamp(20px, 4vw, 42px);
}

.ci-footer {
  align-items: center;
  gap: 24px;
}

.ci-footer-links {
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 1181px) {
  .ci-home-main {
    grid-template-columns: minmax(0, 1.6fr) minmax(340px, 0.7fr);
  }
}

@media (max-width: 820px) {
  .ci-logo img {
    width: min(235px, 62vw);
  }

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

/* Classifica Italiana refinement pass */
.ci-public,
.ci-public button,
.ci-public input,
.ci-public select,
.ci-public textarea {
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

.ci-hero h1,
.ci-home-hero h1,
.ci-home-panel-head h2,
.ci-info-hero h1,
.ci-about-hero h1,
.ci-insert-copy h1,
.ci-insert-final h2,
.ci-search-form label,
.ci-search-section h2,
.ci-archive-heading h2,
.ci-rd-hero h1,
.ci-rd-detail-title h1,
.ci-legal-hero h1,
.ci-contact-hero h1,
.ci-not-found-hero h1 {
  font-family: "Aptos Display", "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.ci-home-hero h1 {
  font-size: clamp(78px, 10vw, 164px);
  line-height: 0.9;
}

.ci-hero h1 {
  font-size: clamp(64px, 10vw, 150px);
  line-height: 0.9;
}

.ci-home-panel-head h2,
.ci-search-form label,
.ci-search-section h2 {
  line-height: 0.96;
}

.ci-header {
  background: #fff;
  color: var(--ci-ink);
  border-bottom: 7px solid transparent;
  border-image: linear-gradient(90deg, var(--ci-green) 0 33.333%, #fff 33.333% 66.666%, var(--ci-italy-red) 66.666% 100%) 1;
  box-shadow: 0 4px 0 rgba(6, 7, 11, 0.08);
}

.ci-logo {
  padding: 7px 0;
}

.ci-logo img {
  width: min(230px, 38vw);
  max-height: 64px;
}

.ci-main-nav {
  gap: 10px;
}

.ci-header nav a,
.ci-main-nav a {
  min-height: 42px;
  padding: 0 15px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: #fff;
  color: var(--ci-ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: none;
}

.ci-main-nav a:nth-child(1) { color: var(--ci-italy-red); }
.ci-main-nav a:nth-child(2) { color: var(--ci-green); }
.ci-main-nav a:nth-child(3) { color: var(--ci-blue); }
.ci-main-nav a:nth-child(4) { color: var(--ci-gray); }
.ci-main-nav a:nth-child(5) { color: var(--ci-purple); }
.ci-main-nav a:nth-child(6) { color: var(--ci-orange); }
.ci-main-nav a:nth-child(7) { color: var(--ci-ink); }
.ci-main-nav a:nth-child(8) { color: var(--ci-italy-red); }
.ci-main-nav a:nth-child(9) { color: var(--ci-green); }

.ci-header nav a:hover,
.ci-main-nav a:hover,
.ci-header nav a.is-active,
.ci-main-nav a.is-active {
  background: currentColor;
  border-color: currentColor;
  color: #fff;
}

.ci-main-nav a:hover,
.ci-main-nav a.is-active {
  color: #fff;
}

.ci-main-nav a:nth-child(1):hover,
.ci-main-nav a:nth-child(1).is-active { background: var(--ci-italy-red); border-color: var(--ci-italy-red); }
.ci-main-nav a:nth-child(2):hover,
.ci-main-nav a:nth-child(2).is-active { background: var(--ci-green); border-color: var(--ci-green); }
.ci-main-nav a:nth-child(3):hover,
.ci-main-nav a:nth-child(3).is-active { background: var(--ci-blue); border-color: var(--ci-blue); }
.ci-main-nav a:nth-child(4):hover,
.ci-main-nav a:nth-child(4).is-active { background: var(--ci-gray); border-color: var(--ci-gray); }
.ci-main-nav a:nth-child(5):hover,
.ci-main-nav a:nth-child(5).is-active { background: var(--ci-purple); border-color: var(--ci-purple); }
.ci-main-nav a:nth-child(6):hover,
.ci-main-nav a:nth-child(6).is-active { background: var(--ci-orange); border-color: var(--ci-orange); }
.ci-main-nav a:nth-child(7):hover,
.ci-main-nav a:nth-child(7).is-active { background: var(--ci-ink); border-color: var(--ci-ink); }
.ci-main-nav a:nth-child(8):hover,
.ci-main-nav a:nth-child(8).is-active { background: var(--ci-italy-red); border-color: var(--ci-italy-red); }
.ci-main-nav a:nth-child(9):hover,
.ci-main-nav a:nth-child(9).is-active { background: var(--ci-green); border-color: var(--ci-green); }

.ci-menu-toggle {
  border-color: var(--ci-ink);
}

.ci-menu-toggle span {
  background: var(--ci-ink);
}

.ci-home-chart-panel {
  border-top: 8px solid var(--ci-cyan);
}

.ci-home-chart-panel .ci-home-panel-head h2 {
  color: var(--ci-cyan);
}

.ci-home-chart-panel:nth-child(1) .ci-home-panel-head h2 { color: var(--ci-italy-red); }
.ci-home-chart-panel:nth-child(2) .ci-home-panel-head h2 { color: var(--ci-green); }
.ci-home-chart-panel:nth-child(3) .ci-home-panel-head h2 { color: var(--ci-blue); }
.ci-home-chart-panel:nth-child(4) .ci-home-panel-head h2 { color: var(--ci-gray); }
.ci-home-chart-panel:nth-child(5) .ci-home-panel-head h2 { color: var(--ci-purple); }
.ci-home-chart-panel:nth-child(6) .ci-home-panel-head h2 { color: var(--ci-orange); }

.ci-hero.is-chart-main p,
.ci-hero.is-chart-main > aside strong { color: var(--ci-italy-red); }
.ci-hero.is-chart-esordienti p,
.ci-hero.is-chart-esordienti > aside strong { color: var(--ci-green); }
.ci-hero.is-chart-pop p,
.ci-hero.is-chart-pop > aside strong { color: var(--ci-blue); }
.ci-hero.is-chart-rock p,
.ci-hero.is-chart-rock > aside strong { color: var(--ci-gray); }
.ci-hero.is-chart-rap p,
.ci-hero.is-chart-rap > aside strong { color: var(--ci-purple); }
.ci-hero.is-chart-dance p,
.ci-hero.is-chart-dance > aside strong { color: var(--ci-orange); }

.ci-hero.is-chart-main .ci-week-picker summary { border-color: var(--ci-italy-red); }
.ci-hero.is-chart-esordienti .ci-week-picker summary { border-color: var(--ci-green); }
.ci-hero.is-chart-pop .ci-week-picker summary { border-color: var(--ci-blue); }
.ci-hero.is-chart-rock .ci-week-picker summary { border-color: var(--ci-gray); }
.ci-hero.is-chart-rap .ci-week-picker summary { border-color: var(--ci-purple); }
.ci-hero.is-chart-dance .ci-week-picker summary { border-color: var(--ci-orange); }

.ci-cookie-banner {
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(1080px, calc(100vw - 48px));
  padding: 26px 28px;
  border: 4px solid var(--ci-ink);
  box-shadow: 0 14px 40px rgba(6, 7, 11, 0.22);
}

.ci-cookie-copy {
  display: block;
}

@media (min-width: 821px) {
  .ci-cookie-copy {
    display: block;
  }
}

.ci-cookie-copy strong {
  display: block;
  margin: 0 0 10px;
  color: var(--ci-italy-red);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.ci-cookie-copy p {
  max-width: 920px;
  margin: 0 0 14px;
  color: var(--ci-ink);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 750;
  line-height: 1.28;
}

.ci-cookie-copy nav {
  display: flex;
  gap: 14px;
}

.ci-cookie-copy nav a {
  color: var(--ci-italy-red);
  font-size: 14px;
  font-weight: 900;
}

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

.ci-cookie-btn {
  min-height: 58px;
  border-width: 3px;
  font-size: 15px;
}

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

.ci-cookie-btn.is-soft:hover,
.ci-cookie-btn.is-soft:focus-visible {
  background: var(--ci-italy-red);
  color: #fff;
}

.ci-cookie-btn.is-primary:hover,
.ci-cookie-btn.is-primary:focus-visible,
.ci-search-form button:hover,
.ci-search-form button:focus-visible {
  background: var(--ci-italy-red);
  border-color: var(--ci-italy-red);
  color: #fff;
}

@media (max-width: 1120px) and (min-width: 821px) {
  .ci-logo img {
    width: min(190px, 28vw);
  }

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

@media (max-width: 820px) {
  .ci-header {
    background: #fff;
  }

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

  .ci-main-nav {
    background: #fff;
  }

  .ci-header nav a,
  .ci-main-nav a {
    border-radius: 0;
  }

  .ci-cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
  }

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

  .ci-cookie-btn {
    min-height: 52px;
  }
}

/* Rounded system consistency */
:root {
  --ci-radius: 8px;
  --ci-radius-soft: 8px;
  --ci-radius-pill: 999px;
}

.ci-home-hero,
.ci-hero > aside,
.ci-home-panel,
.ci-home-side-box,
.ci-chart-row,
.ci-chart-row.is-top,
.ci-chart-row--legacy,
.ci-chart-row--legacy.is-top,
.ci-video-row,
.ci-video-playlist,
.ci-video-panel,
.ci-rd-card,
.ci-rd-detail,
.ci-rd-detail-cover,
.ci-rd-calendar,
.ci-archive-section,
.ci-archive-row,
.ci-search-section,
.ci-search-result,
.ci-not-found-panel,
.ci-contact-form,
.ci-contact-copy,
.ci-contact-alert,
.ci-legal-content,
.ci-legal-company,
.ci-cookie-banner,
.ci-cookie-preference-card,
.ci-about-card,
.ci-about-statement,
.ci-about-blocks > div,
.ci-insert-hero,
.ci-insert-strip,
.ci-insert-features article,
.ci-insert-final,
.ci-footer,
.ci-empty {
  border-radius: var(--ci-radius-soft) !important;
}

.ci-cover,
.ci-cover img,
.ci-rd-cover,
.ci-rd-cover img,
.ci-home-rd-cover,
.ci-home-rd-cover img,
.ci-search-result-media,
.ci-search-result-media img,
.ci-home-featured-cover,
.ci-home-featured-cover img,
.ci-video-media,
.ci-video-media iframe,
.ci-insert-visual,
.ci-insert-visual img {
  border-radius: 6px !important;
}

.ci-rank,
.ci-chart-row.is-top .ci-rank,
.ci-chart-row--legacy .ci-rank,
.ci-chart-row--legacy.is-top .ci-rank,
.ci-home-chart-panel .ci-rank,
.ci-video-rank {
  border-radius: var(--ci-radius-soft) !important;
}

.ci-title-row,
.ci-platform-links,
.ci-platform-link,
.ci-listen-trigger,
.ci-video-watch-link,
.ci-week-picker summary,
.ci-week-menu,
.ci-archive-filter,
.ci-archive-pagination a,
.ci-archive-pagination span,
.ci-archive-pagination strong,
.ci-search-form div,
.ci-search-form input,
.ci-search-form button,
.ci-contact-form input,
.ci-contact-form select,
.ci-contact-form textarea,
.ci-contact-submit,
.ci-insert-button,
.ci-home-panel-link,
.ci-cookie-btn,
.ci-cookie-options,
.ci-cookie-copy nav a,
.ci-not-found-links a,
.ci-footer-links a {
  border-radius: var(--ci-radius-pill) !important;
}

.ci-search-form div {
  overflow: hidden;
}

.ci-search-form input {
  border-radius: var(--ci-radius-pill) 0 0 var(--ci-radius-pill) !important;
}

.ci-search-form button {
  border-radius: 0 var(--ci-radius-pill) var(--ci-radius-pill) 0 !important;
}

.ci-contact-form textarea,
.ci-cookie-options {
  border-radius: var(--ci-radius-soft) !important;
}

.ci-home-chart-panel,
.ci-home-side-box,
.ci-chart-row,
.ci-rd-card,
.ci-search-section,
.ci-archive-section {
  overflow: hidden;
}

@media (max-width: 820px) {
  .ci-main-nav a {
    border-radius: var(--ci-radius-pill) !important;
  }
}

/* Archive and Radio Date rounded details */
.ci-archive-filter,
.ci-archive-filter summary,
.ci-archive-filter-menu,
.ci-archive-filter-menu a,
.ci-week-picker,
.ci-week-picker summary,
.ci-week-menu,
.ci-week-menu a,
.ci-rd-tabs a,
.ci-rd-week-nav a,
.ci-rd-day,
.ci-rd-day-head,
.ci-rd-day-head span,
.ci-rd-grid,
.ci-rd-card,
.ci-rd-card-cover,
.ci-rd-card-cover img,
.ci-rd-card-action,
.ci-rd-count,
.ci-rd-date-box,
.ci-rd-release,
.ci-rd-note,
.ci-rd-press,
.ci-rd-press-block,
.ci-rd-press a,
.ci-rd-video,
.ci-rd-video iframe,
.ci-rd-links a,
.ci-rd-back {
  border-radius: var(--ci-radius-soft) !important;
}

.ci-archive-filter,
.ci-archive-filter-menu,
.ci-week-picker,
.ci-week-menu,
.ci-rd-day,
.ci-rd-day-head,
.ci-rd-card,
.ci-rd-card-cover,
.ci-rd-detail,
.ci-rd-detail-cover,
.ci-rd-release,
.ci-rd-note,
.ci-rd-press,
.ci-rd-video {
  overflow: hidden;
}

.ci-archive-filter summary,
.ci-week-picker summary {
  padding-inline: 20px 22px;
}

.ci-archive-filter-menu,
.ci-week-menu {
  border: 2px solid var(--ci-ink);
  margin-top: 8px;
  background: #fff;
}

.ci-archive-filter-menu a,
.ci-week-menu a {
  margin: 6px;
  border-radius: var(--ci-radius-soft) !important;
}

.ci-archive-row {
  border: 2px solid transparent;
  outline: 0;
}

.ci-archive-row:hover,
.ci-archive-row:focus-visible {
  border-color: var(--ci-italy-red);
  outline: 0;
}

.ci-archive-grid--all .ci-archive-row {
  border-radius: var(--ci-radius-soft) !important;
}

.ci-rd-tabs a,
.ci-rd-week-nav a,
.ci-rd-card-action,
.ci-rd-back,
.ci-rd-links a,
.ci-rd-press a {
  border-radius: var(--ci-radius-pill) !important;
}

.ci-rd-day-head {
  background: var(--ci-ink);
}

.ci-rd-day-head span,
.ci-rd-card-main time,
.ci-rd-count-number {
  color: var(--ci-italy-red);
}

.ci-rd-day-head span {
  background: var(--ci-italy-red);
  color: #fff;
}

.ci-rd-card {
  border: 1px solid rgba(6, 7, 11, 0.06);
  box-shadow: 0 6px 18px rgba(6, 7, 11, 0.06);
}

.ci-rd-card-action {
  border-color: var(--ci-ink);
}

.ci-rd-card-action:hover,
.ci-rd-card-action:focus-visible,
.ci-rd-tabs a:hover,
.ci-rd-tabs a.is-active,
.ci-rd-week-nav a:hover {
  background: var(--ci-italy-red);
  border-color: var(--ci-italy-red);
  color: #fff;
}

.ci-rd-count {
  padding-inline: 22px;
}

@media (max-width: 820px) {
  .ci-archive-filter-menu,
  .ci-week-menu {
    margin-top: 6px;
  }

  .ci-rd-card,
  .ci-rd-day-head {
    border-radius: var(--ci-radius-soft) !important;
  }
}

/* Radio Date detail date badge */
.ci-rd-detail-main {
  position: relative;
  grid-template-columns: 1fr;
  align-content: center;
}

.ci-rd-date-box {
  min-width: 186px;
  padding: 18px 22px;
  border: 3px solid var(--ci-ink);
  background: #fff;
  color: var(--ci-ink);
}

.ci-rd-date-box span {
  color: var(--ci-italy-red) !important;
}

.ci-rd-date-box time {
  color: var(--ci-ink);
  font-size: 28px;
  line-height: 1;
}

.ci-rd-detail-main > p,
.ci-rd-detail-main h1,
.ci-rd-detail-main h2,
.ci-rd-detail-main small,
.ci-rd-links {
  grid-column: 1;
}

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

.ci-rd-detail-main h2 {
  margin-top: -8px;
}

.ci-rd-links {
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .ci-rd-detail-main {
    grid-template-columns: 1fr;
  }

  .ci-rd-date-box,
  .ci-rd-detail-main > p,
  .ci-rd-detail-main h1,
  .ci-rd-detail-main h2,
  .ci-rd-detail-main small,
  .ci-rd-links {
    grid-column: 1;
  }

  .ci-rd-date-box {
    position: static;
    grid-row: auto;
    justify-self: start;
    margin-bottom: 18px;
  }
}

@media (min-width: 1181px) {
  .ci-rd-detail {
    align-items: stretch;
  }

  .ci-rd-detail-main {
    align-self: stretch;
    align-content: center;
    padding-right: 286px;
  }

  .ci-rd-date-box {
    position: absolute;
    top: 28px;
    right: 18px;
    margin: 0;
  }
}

@media (max-width: 820px) {
  .ci-rd-detail-main {
    gap: 12px;
  }

  .ci-rd-date-box {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Radio Date list controls */
.ci-rd-hero > div > span {
  border: 3px solid var(--ci-ink);
  border-radius: var(--ci-radius-pill) !important;
}

.ci-rd-hero aside {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.ci-rd-count {
  min-width: 220px;
  min-height: 62px;
  padding: 16px 24px !important;
  align-items: center !important;
  justify-content: center;
  background: #fff !important;
  border: 3px solid var(--ci-ink);
  border-radius: var(--ci-radius-pill) !important;
  color: var(--ci-ink) !important;
  text-align: center;
}

.ci-rd-count-number {
  color: var(--ci-italy-red) !important;
}

.ci-rd-count-label {
  color: var(--ci-ink) !important;
}

/* Chart row cover spacing */
@media (min-width: 821px) {
  .ci-chart-list > .ci-chart-row,
  .ci-chart-list > .ci-chart-row.is-top {
    column-gap: 4px;
  }
}

/* Chart movement arrows */
.ci-movement.is-up b,
.ci-movement.is-down b,
.ci-movement.is-stable b {
  position: relative;
  font-size: 0;
  line-height: 1;
}

.ci-movement.is-up b::before,
.ci-movement.is-down b::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 30px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.ci-movement.is-up b::before {
  top: 10px;
}

.ci-movement.is-down b::before {
  bottom: 10px;
}

.ci-movement.is-up b::after,
.ci-movement.is-down b::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
}

.ci-movement.is-up b::after {
  top: 7px;
  transform: translateX(-50%) rotate(45deg);
}

.ci-movement.is-down b::after {
  bottom: 7px;
  transform: translateX(-50%) rotate(225deg);
}

.ci-movement.is-stable b::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.ci-movement.is-stable b::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.ci-home-chart-panel .ci-movement.is-up b::before,
.ci-home-chart-panel .ci-movement.is-down b::before {
  height: 21px;
  width: 3px;
}

.ci-home-chart-panel .ci-movement.is-up b::before {
  top: 5px;
}

.ci-home-chart-panel .ci-movement.is-down b::before {
  bottom: 5px;
}

.ci-home-chart-panel .ci-movement.is-up b::after,
.ci-home-chart-panel .ci-movement.is-down b::after {
  width: 11px;
  height: 11px;
  border-width: 3px;
}

.ci-home-chart-panel .ci-movement.is-up b::after {
  top: 3px;
}

.ci-home-chart-panel .ci-movement.is-down b::after {
  bottom: 3px;
}

.ci-home-chart-panel .ci-movement.is-stable b::before {
  left: 5px;
  width: 22px;
  height: 3px;
}

.ci-home-chart-panel .ci-movement.is-stable b::after {
  right: 4px;
  width: 10px;
  height: 10px;
  border-width: 3px;
}

/* DSP buttons */
.ci-platform-link {
  color: var(--ci-italy-red) !important;
  border-color: var(--ci-line);
  border-radius: var(--ci-radius-soft) !important;
}

.ci-platform-link:hover,
.ci-platform-link:focus-visible {
  color: #fff !important;
}

/* Homepage desktop movement sizing */
@media (min-width: 821px) {
  .ci-home-chart-panel .ci-trend .ci-movement {
    min-width: 42px !important;
    gap: 2px !important;
  }

  .ci-home-chart-panel .ci-trend .ci-movement.is-up b,
  .ci-home-chart-panel .ci-trend .ci-movement.is-down b,
  .ci-home-chart-panel .ci-trend .ci-movement.is-stable b {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
  }

  .ci-home-chart-panel .ci-movement.is-up b::before,
  .ci-home-chart-panel .ci-movement.is-down b::before {
    width: 3px !important;
    height: 19px !important;
  }

  .ci-home-chart-panel .ci-movement.is-up b::before {
    top: 7px !important;
  }

  .ci-home-chart-panel .ci-movement.is-down b::before {
    bottom: 7px !important;
  }

  .ci-home-chart-panel .ci-movement.is-up b::after,
  .ci-home-chart-panel .ci-movement.is-down b::after {
    width: 10px !important;
    height: 10px !important;
    border-width: 3px !important;
  }

  .ci-home-chart-panel .ci-movement.is-up b::after {
    top: 5px !important;
  }

  .ci-home-chart-panel .ci-movement.is-down b::after {
    bottom: 5px !important;
  }

  .ci-home-chart-panel .ci-movement.is-stable b::before {
    left: 5px !important;
    width: 22px !important;
    height: 3px !important;
  }

  .ci-home-chart-panel .ci-movement.is-stable b::after {
    right: 4px !important;
    width: 10px !important;
    height: 10px !important;
    border-width: 3px !important;
  }
}

/* Final chart/home alignment pass */
.ci-home-chart-panel .ci-chart-row,
.ci-home-chart-panel .ci-chart-row.is-top {
  column-gap: 4px !important;
}

.ci-chart-list .ci-trend .ci-movement.is-up b,
.ci-chart-list .ci-trend .ci-movement.is-down b,
.ci-chart-list .ci-trend .ci-movement.is-stable b,
.ci-home-chart-panel .ci-trend .ci-movement.is-up b,
.ci-home-chart-panel .ci-trend .ci-movement.is-down b,
.ci-home-chart-panel .ci-trend .ci-movement.is-stable b {
  position: relative !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

@media (max-width: 820px) {
  .ci-chart-list > .ci-chart-row,
  .ci-chart-list > .ci-chart-row.is-top,
  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    column-gap: 8px !important;
  }

  .ci-chart-list .ci-trend .ci-movement.is-up b,
  .ci-chart-list .ci-trend .ci-movement.is-down b,
  .ci-chart-list .ci-trend .ci-movement.is-stable b,
  .ci-home-chart-panel .ci-trend .ci-movement.is-up b,
  .ci-home-chart-panel .ci-trend .ci-movement.is-down b,
  .ci-home-chart-panel .ci-trend .ci-movement.is-stable b {
    width: 26px !important;
    min-width: 26px !important;
    height: 22px !important;
    min-height: 22px !important;
    overflow: hidden;
  }

  .ci-chart-list .ci-movement.is-up b::before,
  .ci-chart-list .ci-movement.is-down b::before,
  .ci-home-chart-panel .ci-movement.is-up b::before,
  .ci-home-chart-panel .ci-movement.is-down b::before {
    width: 3px !important;
    height: 16px !important;
  }

  .ci-chart-list .ci-movement.is-up b::before,
  .ci-home-chart-panel .ci-movement.is-up b::before {
    top: 4px !important;
  }

  .ci-chart-list .ci-movement.is-down b::before,
  .ci-home-chart-panel .ci-movement.is-down b::before {
    bottom: 4px !important;
  }

  .ci-chart-list .ci-movement.is-up b::after,
  .ci-chart-list .ci-movement.is-down b::after,
  .ci-home-chart-panel .ci-movement.is-up b::after,
  .ci-home-chart-panel .ci-movement.is-down b::after {
    width: 9px !important;
    height: 9px !important;
    border-width: 3px !important;
  }

  .ci-chart-list .ci-movement.is-up b::after,
  .ci-home-chart-panel .ci-movement.is-up b::after {
    top: 3px !important;
  }

  .ci-chart-list .ci-movement.is-down b::after,
  .ci-home-chart-panel .ci-movement.is-down b::after {
    bottom: 3px !important;
  }

  .ci-chart-list .ci-movement.is-stable b::before,
  .ci-home-chart-panel .ci-movement.is-stable b::before {
    left: 4px !important;
    width: 18px !important;
    height: 3px !important;
  }

  .ci-chart-list .ci-movement.is-stable b::after,
  .ci-home-chart-panel .ci-movement.is-stable b::after {
    right: 3px !important;
    width: 8px !important;
    height: 8px !important;
    border-width: 3px !important;
  }
}

/* Mobile top ranks: keep movement on white background */
@media (max-width: 820px) {
  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-trend,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-trend {
    background: transparent !important;
    color: var(--ci-muted) !important;
  }

  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-rank,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-rank {
    border-radius: var(--ci-radius-soft) !important;
  }

  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-movement.is-up b,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-movement.is-up b {
    color: var(--ci-up) !important;
  }

  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-movement.is-down b,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-movement.is-down b {
    color: var(--ci-red) !important;
  }

  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-movement.is-stable b,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-movement.is-stable b {
    color: var(--ci-stable) !important;
  }

  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-movement em,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-movement em {
    color: var(--ci-muted) !important;
  }
}

/* Final movement icon system */
.ci-movement.is-up b,
.ci-movement.is-down b,
.ci-movement.is-stable b {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  font-size: 0 !important;
  overflow: visible !important;
}

.ci-movement.is-up b::before,
.ci-movement.is-down b::before,
.ci-movement.is-stable b::before {
  content: "" !important;
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: currentColor !important;
  transform: none !important;
}

.ci-movement.is-up b::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.2 21V8.75l-5 5L3 11.55 12 2.5l9 9.05-2.2 2.2-5-5V21z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.2 21V8.75l-5 5L3 11.55 12 2.5l9 9.05-2.2 2.2-5-5V21z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ci-movement.is-down b::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.8 3v12.25l5-5 2.2 2.2-9 9.05-9-9.05 2.2-2.2 5 5V3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.8 3v12.25l5-5 2.2 2.2-9 9.05-9-9.05 2.2-2.2 5 5V3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ci-movement.is-stable b::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.35h12.25l-5-5L12.45 3l9.05 9-9.05 9-2.2-2.35 5-5H3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.35h12.25l-5-5L12.45 3l9.05 9-9.05 9-2.2-2.35 5-5H3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ci-movement.is-up b::after,
.ci-movement.is-down b::after,
.ci-movement.is-stable b::after {
  content: none !important;
  display: none !important;
}

@media (min-width: 821px) {
  .ci-home-chart-panel .ci-movement.is-up b,
  .ci-home-chart-panel .ci-movement.is-down b,
  .ci-home-chart-panel .ci-movement.is-stable b {
    width: 25px !important;
    min-width: 25px !important;
    height: 25px !important;
    min-height: 25px !important;
  }
}

@media (max-width: 820px) {
  .ci-movement.is-up b,
  .ci-movement.is-down b,
  .ci-movement.is-stable b,
  .ci-home-chart-panel .ci-movement.is-up b,
  .ci-home-chart-panel .ci-movement.is-down b,
  .ci-home-chart-panel .ci-movement.is-stable b {
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
  }

  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-trend,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-trend {
    background: #fff !important;
  }

  .ci-title-row {
    padding-right: 44px !important;
  }

  .ci-listen-trigger {
    right: 14px !important;
  }
}

/* Movement icon compression fix */
.ci-chart-list .ci-movement.is-up b::before,
.ci-chart-list .ci-movement.is-down b::before,
.ci-chart-list .ci-movement.is-stable b::before,
.ci-home-chart-panel .ci-movement.is-up b::before,
.ci-home-chart-panel .ci-movement.is-down b::before,
.ci-home-chart-panel .ci-movement.is-stable b::before {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: currentColor !important;
  transform: none !important;
}

.ci-chart-list .ci-movement.is-up b::before,
.ci-home-chart-panel .ci-movement.is-up b::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.2 21V8.75l-5 5L3 11.55 12 2.5l9 9.05-2.2 2.2-5-5V21z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.2 21V8.75l-5 5L3 11.55 12 2.5l9 9.05-2.2 2.2-5-5V21z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.ci-chart-list .ci-movement.is-down b::before,
.ci-home-chart-panel .ci-movement.is-down b::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.8 3v12.25l5-5 2.2 2.2-9 9.05-9-9.05 2.2-2.2 5 5V3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.8 3v12.25l5-5 2.2 2.2-9 9.05-9-9.05 2.2-2.2 5 5V3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.ci-chart-list .ci-movement.is-stable b::before,
.ci-home-chart-panel .ci-movement.is-stable b::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.35h12.25l-5-5L12.45 3l9.05 9-9.05 9-2.2-2.35 5-5H3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10.35h12.25l-5-5L12.45 3l9.05 9-9.05 9-2.2-2.35 5-5H3z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.ci-chart-list .ci-movement.is-up b::after,
.ci-chart-list .ci-movement.is-down b::after,
.ci-chart-list .ci-movement.is-stable b::after,
.ci-home-chart-panel .ci-movement.is-up b::after,
.ci-home-chart-panel .ci-movement.is-down b::after,
.ci-home-chart-panel .ci-movement.is-stable b::after {
  content: none !important;
  display: none !important;
}

/* TOP100 desktop: only the first row stays hero-sized */
@media (min-width: 821px) {
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-child(n + 2) {
    grid-template-columns: 120px 168px minmax(0, 1fr) 136px 104px 176px !important;
    grid-template-areas: "rank cover copy links trend stats" !important;
    min-height: 168px !important;
    padding: 0 30px 0 0 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-child(n + 2) .ci-rank {
    font-size: 58px !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-child(n + 2) .ci-cover {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-child(n + 2) .ci-copy h2 {
    font-size: clamp(24px, 2vw, 38px) !important;
    line-height: 1.02 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-child(n + 2) .ci-platform-links--top-copy {
    display: none !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-child(n + 2) .ci-platform-links--row {
    display: flex !important;
  }
}

/* Mobile rank and movement centering */
@media (max-width: 820px) {
  .ci-chart-list > .ci-chart-row,
  .ci-chart-list > .ci-chart-row.is-top,
  .ci-home-chart-panel .ci-chart-row,
  .ci-home-chart-panel .ci-chart-row.is-top {
    grid-template-rows: 46px 30px auto !important;
    align-items: center !important;
  }

  .ci-chart-list .ci-rank,
  .ci-chart-list .ci-chart-row.is-top .ci-rank,
  .ci-home-chart-panel .ci-rank,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-rank {
    align-self: stretch !important;
    justify-self: stretch !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  .ci-chart-list .ci-trend,
  .ci-chart-list .ci-chart-row.is-top .ci-trend,
  .ci-home-chart-panel .ci-trend,
  .ci-home-chart-panel .ci-chart-row.is-top .ci-trend {
    align-self: stretch !important;
    justify-self: stretch !important;
    width: auto !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    background: #fff !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .ci-chart-list .ci-movement,
  .ci-home-chart-panel .ci-movement {
    display: grid !important;
    grid-template-rows: 19px 10px !important;
    align-content: center !important;
    justify-items: center !important;
    gap: 0 !important;
    min-width: 0 !important;
    height: 29px !important;
  }

  .ci-chart-list .ci-movement.is-up b,
  .ci-chart-list .ci-movement.is-down b,
  .ci-chart-list .ci-movement.is-stable b,
  .ci-home-chart-panel .ci-movement.is-up b,
  .ci-home-chart-panel .ci-movement.is-down b,
  .ci-home-chart-panel .ci-movement.is-stable b {
    width: 19px !important;
    min-width: 19px !important;
    height: 19px !important;
    min-height: 19px !important;
  }

  .ci-chart-list .ci-movement em,
  .ci-home-chart-panel .ci-movement em {
    margin-top: 0 !important;
    font-size: 10px !important;
    line-height: 10px !important;
  }

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

  .ci-listen-trigger {
    right: 20px !important;
  }
}

/* Rank/movement optical alignment */
@media (min-width: 821px) {
  .ci-home-chart-panel .ci-chart-row:nth-child(1) .ci-trend .ci-movement,
  .ci-chart-list.is-accent-red > .ci-chart-row:nth-child(1) .ci-trend .ci-movement {
    transform: translateY(3px);
  }

  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-trend .ci-movement,
  .ci-chart-list.is-accent-red > .ci-chart-row:nth-child(3) .ci-trend .ci-movement {
    transform: translateY(5px);
  }

  .ci-home-chart-panel .ci-chart-row:nth-child(4) .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-chart-row:nth-child(5) .ci-trend .ci-movement,
  .ci-chart-list.is-accent-red > .ci-chart-row:nth-child(4) .ci-trend .ci-movement,
  .ci-chart-list.is-accent-red > .ci-chart-row:nth-child(5) .ci-trend .ci-movement {
    transform: translateY(-4px);
  }
}

@media (max-width: 820px) {
  .ci-chart-list > .ci-chart-row:nth-child(1) .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-chart-row:nth-child(1) .ci-trend .ci-movement {
    transform: translateY(3px);
  }

  .ci-chart-list > .ci-chart-row:nth-child(3) .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-chart-row:nth-child(3) .ci-trend .ci-movement {
    transform: translateY(5px);
  }

  .ci-chart-list > .ci-chart-row:nth-child(4) .ci-trend .ci-movement,
  .ci-chart-list > .ci-chart-row:nth-child(5) .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-chart-row:nth-child(4) .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-chart-row:nth-child(5) .ci-trend .ci-movement {
    transform: translateY(-3px);
  }
}

/* Mobile rank/movement final optical offset */
@media (max-width: 820px) {
  .ci-chart-list .ci-rank span,
  .ci-home-chart-panel .ci-rank span {
    transform: translateY(3px);
  }

  .ci-chart-list .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-trend .ci-movement {
    transform: translateY(-4px) !important;
  }
}

/* Mobile NEW/BACK and top-rank movement centering */
@media (max-width: 820px) {
  .ci-chart-list .ci-trend,
  .ci-home-chart-panel .ci-trend {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .ci-chart-list .ci-movement.is-up,
  .ci-chart-list .ci-movement.is-down,
  .ci-home-chart-panel .ci-movement.is-up,
  .ci-home-chart-panel .ci-movement.is-down {
    grid-template-rows: 18px 10px !important;
    height: 28px !important;
    transform: translateY(-3px) !important;
  }

  .ci-chart-list .ci-movement.is-stable,
  .ci-home-chart-panel .ci-movement.is-stable {
    grid-template-rows: 24px !important;
    height: 24px !important;
    transform: translateY(0) !important;
  }

  .ci-chart-list .ci-movement.is-new,
  .ci-chart-list .ci-movement.is-reentry,
  .ci-home-chart-panel .ci-movement.is-new,
  .ci-home-chart-panel .ci-movement.is-reentry {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 30px !important;
    min-width: 42px !important;
    transform: none !important;
  }

  .ci-chart-list .ci-movement.is-new b,
  .ci-chart-list .ci-movement.is-reentry b,
  .ci-home-chart-panel .ci-movement.is-new b,
  .ci-home-chart-panel .ci-movement.is-reentry b {
    width: auto !important;
    min-width: 0 !important;
    height: 30px !important;
    min-height: 30px !important;
    font-size: 10px !important;
    line-height: 30px !important;
    text-align: center !important;
  }

  .ci-chart-list .ci-movement.is-new b,
  .ci-home-chart-panel .ci-movement.is-new b {
    color: var(--ci-italy-red) !important;
  }

  .ci-chart-list .ci-movement.is-reentry b,
  .ci-home-chart-panel .ci-movement.is-reentry b {
    color: var(--ci-muted) !important;
  }

  .ci-chart-list .ci-movement.is-new b::before,
  .ci-chart-list .ci-movement.is-new b::after,
  .ci-chart-list .ci-movement.is-reentry b::before,
  .ci-chart-list .ci-movement.is-reentry b::after,
  .ci-home-chart-panel .ci-movement.is-new b::before,
  .ci-home-chart-panel .ci-movement.is-new b::after,
  .ci-home-chart-panel .ci-movement.is-reentry b::before,
  .ci-home-chart-panel .ci-movement.is-reentry b::after {
    content: none !important;
    display: none !important;
  }
}

/* Mobile top-two rank movement optical correction */
@media (max-width: 820px) {
  .ci-chart-list > .ci-chart-row:nth-child(-n + 2) .ci-trend .ci-movement,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 2) .ci-trend .ci-movement {
    transform: translateY(2px) !important;
  }
}

/* Mobile top-rank number centering inside the colored/gray boxes */
@media (max-width: 820px) {
  .ci-chart-list > .ci-chart-row:nth-child(-n + 3) .ci-rank span,
  .ci-home-chart-panel .ci-chart-row:nth-child(-n + 3) .ci-rank span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1 !important;
    transform: none !important;
  }
}

/* Persistent translucent header */
.ci-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  justify-content: space-between !important;
  background: #fff !important;
  transition: background-color .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}

.ci-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(6, 7, 11, 0.12);
}

.ci-logo {
  margin-right: auto !important;
  padding-left: 0 !important;
  transform: none !important;
}

.ci-logo img {
  object-fit: contain !important;
  object-position: left center !important;
}

.ci-menu-toggle,
.ci-main-nav {
  margin-left: auto !important;
}

@media (max-width: 820px) {
  .ci-header {
    padding: 12px 16px !important;
  }

  .ci-logo {
    flex: 0 1 auto !important;
    justify-content: flex-start !important;
  }

  .ci-logo img {
    width: min(160px, 40vw) !important;
    max-height: 72px !important;
  }

  .ci-menu-toggle {
    width: 48px !important;
    height: 48px !important;
  }
}

/* Service nav buttons */
.ci-main-nav a[href="/archivio"],
.ci-main-nav a[href="/radio-date"],
.ci-main-nav a[href="/inserisci"],
.ci-main-nav a[href="/archivio"].is-active,
.ci-main-nav a[href="/radio-date"].is-active,
.ci-main-nav a[href="/inserisci"].is-active {
  background: var(--ci-ink) !important;
  border-color: var(--ci-ink) !important;
  color: #fff !important;
}

.ci-main-nav a[href="/archivio"]:hover,
.ci-main-nav a[href="/radio-date"]:hover,
.ci-main-nav a[href="/inserisci"]:hover,
.ci-main-nav a[href="/archivio"]:focus-visible,
.ci-main-nav a[href="/radio-date"]:focus-visible,
.ci-main-nav a[href="/inserisci"]:focus-visible {
  background: var(--ci-italy-red) !important;
  border-color: var(--ci-italy-red) !important;
  color: #fff !important;
}

/* Esordienti: only the first desktop row stays featured */
@media (min-width: 821px) {
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2),
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3),
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(2),
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(3),
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2),
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) {
    grid-template-columns: 120px 168px minmax(0, 1fr) 136px 104px 176px !important;
    grid-template-areas: "rank cover copy links trend stats" !important;
    align-content: center !important;
    align-items: center !important;
    min-height: 168px !important;
    height: auto !important;
    padding: 0 30px 0 0 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-rank,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-rank,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(2) .ci-rank,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(3) .ci-rank,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-rank,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-rank {
    background: var(--ci-line) !important;
    color: var(--ci-ink) !important;
    font-size: 58px !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-cover,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-cover,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-cover,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-cover {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-copy h2,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-copy h2,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(2) .ci-copy h2,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(3) .ci-copy h2,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-copy h2,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-copy h2 {
    font-size: clamp(24px, 2vw, 38px) !important;
    line-height: 1.02 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-platform-links--top-copy,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-platform-links--top-copy,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(2) .ci-platform-links--top-copy,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(3) .ci-platform-links--top-copy,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-platform-links--top-copy,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-platform-links--top-copy {
    display: none !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-platform-links--row,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-platform-links--row,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(2) .ci-platform-links--row,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-child(3) .ci-platform-links--row,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-platform-links--row,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-platform-links--row {
    display: flex !important;
  }
}

/* Tablet/compact desktop: top rows 2 and 3 must match the compact row size */
@media (min-width: 821px) and (max-width: 1180px) {
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2),
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3),
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2),
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) {
    grid-template-columns: 94px 132px minmax(0, 1fr) 82px 116px 58px !important;
    grid-template-areas: "rank cover copy trend stats links" !important;
    min-height: 132px !important;
    padding: 0 20px 0 0 !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-rank,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-rank,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-rank,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-rank {
    width: 94px !important;
    font-size: 48px !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-cover,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-cover,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-cover,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-cover {
    width: 132px !important;
    height: 132px !important;
  }

  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(2) .ci-copy,
  .ci-chart-list.is-accent-red > .ci-chart-row.is-top:nth-of-type(3) .ci-copy,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(2) .ci-copy,
  .ci-chart-list.is-accent-green > .ci-chart-row.is-top:nth-of-type(3) .ci-copy {
    margin-left: 18px !important;
  }
}

/* Keep details dropdowns visible outside their rounded trigger box */
.ci-week-picker,
.ci-week-picker[open],
.ci-archive-filter,
.ci-archive-filter[open] {
  overflow: visible !important;
}

.ci-week-picker[open],
.ci-archive-filter[open] {
  z-index: 500 !important;
}

.ci-week-menu,
.ci-archive-filter-menu {
  z-index: 501 !important;
}

/* Dropdown rows should read as one clean rounded menu, not as nested pills */
.ci-week-menu,
.ci-archive-filter-menu {
  overflow: hidden !important;
  border-radius: var(--ci-radius-soft) !important;
}

.ci-week-menu a,
.ci-archive-filter-menu a {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-top: 1px solid rgba(6, 7, 11, 0.18) !important;
  background: #fff;
}

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

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

/* Classifica Italiana typography: Fredoka Regular titles, Light text */
html,
body,
.ci-public,
.ci-public button,
.ci-public input,
.ci-public select,
.ci-public textarea {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
}

.ci-public {
  font-weight: 300;
}

.ci-public p,
.ci-public li,
.ci-public small,
.ci-public input,
.ci-public textarea,
.ci-copy em,
.ci-home-hero > div > p,
.ci-info-hero p,
.ci-about-hero p,
.ci-legal-hero p,
.ci-contact-hero p,
.ci-rd-detail-label,
.ci-rd-detail-main p,
.ci-blog-article-content p {
  font-weight: 300 !important;
}

.ci-hero h1,
.ci-home-hero h1,
.ci-home-panel-head h2,
.ci-info-hero h1,
.ci-about-hero h1,
.ci-insert-copy h1,
.ci-insert-final h2,
.ci-search-form label,
.ci-search-section h2,
.ci-archive-heading h2,
.ci-rd-hero h1,
.ci-rd-detail-title h1,
.ci-legal-hero h1,
.ci-contact-hero h1,
.ci-not-found-hero h1,
.ci-blog-hero h1,
.ci-blog-article-hero h1 {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.ci-hero h1,
.ci-home-hero h1,
.ci-archive-heading h2,
.ci-rd-hero h1,
.ci-blog-hero h1 {
  line-height: 0.86 !important;
}

.ci-home-hero h1 {
  font-size: clamp(64px, 8.1vw, 124px) !important;
}

.ci-hero h1,
.ci-archive-heading h2,
.ci-rd-hero h1,
.ci-blog-hero h1 {
  font-size: clamp(58px, 8.3vw, 122px) !important;
}

.ci-home-panel-head h2,
.ci-search-form label,
.ci-search-section h2,
.ci-rd-detail-title h1,
.ci-blog-article-hero h1,
.ci-info-hero h1,
.ci-about-hero h1,
.ci-insert-copy h1,
.ci-not-found-hero h1 {
  line-height: 0.9 !important;
}

/* Fredoka weight refinement: keep the rounded tone without the heavy bubble effect */
.ci-home-hero span,
.ci-home-hero > div > span,
.ci-home-hero > div > p,
.ci-home-panel-head p,
.ci-home-newsletter p {
  font-weight: 300 !important;
  line-height: 1.06 !important;
}

.ci-copy h2,
.ci-chart-row.is-top .ci-copy h2,
.ci-chart-row--legacy .ci-copy h2,
.ci-chart-row--legacy.is-top .ci-copy h2,
.ci-home-chart-panel .ci-copy h2,
.ci-home-chart-panel .ci-chart-row.is-top .ci-copy h2,
.ci-title-row h2 {
  font-weight: 400 !important;
  line-height: 1.04 !important;
}

.ci-copy p,
.ci-copy small,
.ci-copy em,
.ci-chart-row.is-top .ci-copy p,
.ci-home-chart-panel .ci-copy p,
.ci-home-chart-panel .ci-copy small {
  font-weight: 300 !important;
}

@media (min-width: 700px) {
  .ci-copy p,
  .ci-chart-row.is-top .ci-copy p,
  .ci-chart-row--legacy .ci-copy p,
  .ci-chart-row--legacy.is-top .ci-copy p,
  .ci-home-chart-panel .ci-copy p {
    margin-top: 1px !important;
  }

  .ci-copy small,
  .ci-chart-row--legacy .ci-copy small,
  .ci-chart-row--legacy.is-top .ci-copy small,
  .ci-home-chart-panel .ci-copy small {
    margin-top: 3px !important;
  }
}

/* Lighter movement and stats typography across every chart viewport */
.ci-movement,
.ci-movement b,
.ci-movement em,
.ci-home-chart-panel .ci-movement,
.ci-home-chart-panel .ci-movement b,
.ci-home-chart-panel .ci-movement em,
.ci-video-trend .ci-movement,
.ci-video-trend .ci-movement b,
.ci-video-trend .ci-movement em {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
  font-weight: 300 !important;
}

.ci-movement em,
.ci-home-chart-panel .ci-movement em,
.ci-video-trend .ci-movement em {
  font-weight: 300 !important;
}

.ci-movement.is-new b,
.ci-home-chart-panel .ci-movement.is-new b,
.ci-video-trend .ci-movement.is-new b {
  color: var(--ci-cyan) !important;
  font-weight: 300 !important;
}

.ci-movement.is-reentry b,
.ci-home-chart-panel .ci-movement.is-reentry b,
.ci-video-trend .ci-movement.is-reentry b {
  color: var(--ci-muted) !important;
  font-weight: 300 !important;
}

.ci-movement.is-stable b,
.ci-movement.is-stable em,
.ci-home-chart-panel .ci-movement.is-stable b,
.ci-home-chart-panel .ci-movement.is-stable em,
.ci-video-trend .ci-movement.is-stable b,
.ci-video-trend .ci-movement.is-stable em {
  color: var(--ci-stable) !important;
  font-weight: 300 !important;
}

.ci-stats dt,
.ci-stats--legacy dt,
.ci-home-chart-panel .ci-stats dt,
.ci-video-row .ci-stats dt {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
  font-weight: 300 !important;
}

.ci-stats dd,
.ci-stats--legacy dd,
.ci-home-chart-panel .ci-stats dd,
.ci-video-row .ci-stats dd {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
  font-weight: 400 !important;
}

body.ci-public main .ci-chart-list .ci-chart-row .ci-trend .ci-movement.is-new b,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-trend .ci-movement.is-new b,
body.ci-public main .ci-video-row .ci-video-trend .ci-movement.is-new b {
  color: #00ade7 !important;
  font-weight: 300 !important;
}

body.ci-public main .ci-chart-list .ci-chart-row .ci-trend .ci-movement.is-reentry b,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-trend .ci-movement.is-reentry b,
body.ci-public main .ci-video-row .ci-video-trend .ci-movement.is-reentry b {
  color: #757782 !important;
  font-weight: 300 !important;
}

body.ci-public main .ci-chart-list .ci-chart-row .ci-trend .ci-movement.is-stable b,
body.ci-public main .ci-chart-list .ci-chart-row .ci-trend .ci-movement.is-stable em,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-trend .ci-movement.is-stable b,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-trend .ci-movement.is-stable em,
body.ci-public main .ci-video-row .ci-video-trend .ci-movement.is-stable b,
body.ci-public main .ci-video-row .ci-video-trend .ci-movement.is-stable em {
  color: #f28c28 !important;
  font-weight: 300 !important;
}

body.ci-public main .ci-chart-list .ci-chart-row .ci-trend .ci-movement em,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-trend .ci-movement em,
body.ci-public main .ci-video-row .ci-video-trend .ci-movement em {
  font-weight: 300 !important;
}

body.ci-public main .ci-chart-list .ci-chart-row .ci-stats dt,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-stats dt,
body.ci-public main .ci-video-row .ci-stats dt {
  font-weight: 300 !important;
}

body.ci-public main .ci-chart-list .ci-chart-row .ci-stats dd,
body.ci-public main .ci-home-chart-panel .ci-chart-row .ci-stats dd,
body.ci-public main .ci-video-row .ci-stats dd {
  font-weight: 400 !important;
}

/* Wide desktop: align the hero first-row movement with the column used by the other rows */
@media (min-width: 1181px) {
  body.ci-public main .ci-chart-list > .ci-chart-row:first-child .ci-trend {
    transform: translateX(25px) !important;
  }
}

/* Readability pass: keep Fredoka, but make controls and Radio Date previews lighter */
body.ci-public .ci-main-nav a,
body.ci-public .ci-week-picker summary,
body.ci-public .ci-week-menu a,
body.ci-public .ci-archive-filter summary,
body.ci-public .ci-archive-filter-menu a,
body.ci-public .ci-rd-tabs a,
body.ci-public .ci-rd-week-nav a,
body.ci-public .ci-rd-card-action,
body.ci-public .ci-rd-back,
body.ci-public .ci-home-panel-link,
body.ci-public .ci-search-form button,
body.ci-public .ci-contact-submit,
body.ci-public .ci-insert-button,
body.ci-public .ci-cookie-btn,
body.ci-public .ci-cookie-copy nav a,
body.ci-public .ci-not-found-links a,
body.ci-public .ci-footer-links a,
body.ci-public .ci-radio-date-card a,
body.ci-public button {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
  font-weight: 400 !important;
}

body.ci-public .ci-home-shortcuts strong,
body.ci-public .ci-home-shortcuts span,
body.ci-public .ci-home-updated strong,
body.ci-public .ci-home-updated em,
body.ci-public .ci-hero > div > span,
body.ci-public .ci-archive-row strong,
body.ci-public .ci-archive-row small {
  font-weight: 400 !important;
}

body.ci-public .ci-home-rd-panel .ci-home-panel-head h2 {
  font-weight: 400 !important;
}

body.ci-public .ci-home-rd-copy {
  gap: 2px !important;
}

body.ci-public .ci-home-rd-copy time {
  color: var(--ci-green) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

body.ci-public .ci-home-rd-copy strong {
  font-weight: 400 !important;
  line-height: 1.02 !important;
}

body.ci-public .ci-home-rd-copy em,
body.ci-public .ci-home-rd-copy small {
  font-weight: 300 !important;
  line-height: 1.04 !important;
}

body.ci-public .ci-rd-card-main time {
  font-weight: 400 !important;
}

body.ci-public .ci-rd-card-main h3,
body.ci-public .ci-rd-card-main h3 a {
  font-weight: 400 !important;
  line-height: 1.02 !important;
}

body.ci-public .ci-rd-card-main p,
body.ci-public .ci-rd-card-main small {
  font-weight: 300 !important;
  line-height: 1.05 !important;
}

/* Header menu readability and Inserisci emphasis */
body.ci-public .ci-main-nav a {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.05 !important;
  letter-spacing: 0.018em !important;
  white-space: nowrap !important;
}

body.ci-public .ci-main-nav a[href="/inserisci"],
body.ci-public .ci-main-nav a[href="/inserisci"].is-active {
  background: var(--ci-italy-red) !important;
  border-color: var(--ci-italy-red) !important;
  color: #fff !important;
}

body.ci-public .ci-main-nav a[href="/inserisci"]:hover,
body.ci-public .ci-main-nav a[href="/inserisci"]:focus-visible {
  background: var(--ci-ink) !important;
  border-color: var(--ci-ink) !important;
  color: #fff !important;
}

/* Updated-date badges: lighter, readable Fredoka */
body.ci-public .ci-hero aside strong,
body.ci-public .ci-hero aside em,
body.ci-public .ci-home-updated strong,
body.ci-public .ci-home-updated em,
body.ci-public .ci-home-hero aside .ci-home-updated strong,
body.ci-public .ci-home-hero aside .ci-home-updated em {
  font-family: "Fredoka", "Arial Rounded MT Bold", Arial, sans-serif !important;
  letter-spacing: 0.01em !important;
}

body.ci-public .ci-hero aside strong,
body.ci-public .ci-home-updated strong,
body.ci-public .ci-home-hero aside .ci-home-updated strong {
  font-weight: 400 !important;
  line-height: 1.02 !important;
}

body.ci-public .ci-hero aside em,
body.ci-public .ci-home-updated em,
body.ci-public .ci-home-hero aside .ci-home-updated em {
  font-weight: 400 !important;
  line-height: 1.04 !important;
}

/* Archive page: keep the rounded system and bring section titles back into scale */
body.ci-public .ci-hero.is-archive > div > span {
  border-radius: var(--ci-radius-pill) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

body.ci-public .ci-archive-filter summary span,
body.ci-public .ci-archive-filter-menu a {
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

body.ci-public .ci-archive-heading p {
  color: var(--ci-green) !important;
}

body.ci-public .ci-hero.is-archive h1 {
  letter-spacing: 0.025em !important;
}

@media (min-width: 821px) {
  body.ci-public .ci-hero.is-archive h1 {
    font-size: clamp(58px, 6.4vw, 104px) !important;
    line-height: 0.92 !important;
  }

  body.ci-public .ci-archive-heading {
    min-height: auto !important;
    gap: 6px !important;
  }

  body.ci-public .ci-archive-heading h2,
  body.ci-public .ci-archive-grid--all .ci-archive-heading h2 {
    font-size: clamp(28px, 2.35vw, 46px) !important;
    line-height: 0.98 !important;
    font-weight: 400 !important;
  }
}

/* Homepage finishing pass: rounded modules and cleaner mobile search */
body.ci-public .ci-home-updated,
body.ci-public .ci-home-shortcuts a,
body.ci-public .ci-home-chart-panel,
body.ci-public .ci-home-side-box,
body.ci-public .ci-home-chart-panel .ci-chart-row {
  border-radius: 22px !important;
}

body.ci-public .ci-home-chart-panel,
body.ci-public .ci-home-side-box,
body.ci-public .ci-home-chart-panel .ci-chart-row {
  overflow: hidden !important;
}

body.ci-public .ci-home-shortcuts a {
  align-items: center !important;
  border-radius: 22px !important;
}

body.ci-public .ci-home-shortcuts strong {
  letter-spacing: 0.012em !important;
}

body.ci-public .ci-home-shortcuts a span {
  letter-spacing: 0.01em !important;
}

@media (max-width: 820px) {
  body.ci-public .ci-home-search-panel {
    border-radius: 22px !important;
    padding: 26px 22px !important;
  }

  body.ci-public .ci-home-search-panel .ci-search-form {
    gap: 16px !important;
  }

  body.ci-public .ci-home-search-panel .ci-search-form label {
    font-size: clamp(48px, 14vw, 72px) !important;
    font-weight: 400 !important;
    line-height: 0.9 !important;
  }

  body.ci-public .ci-home-search-panel .ci-search-form div {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  body.ci-public .ci-home-search-panel .ci-search-form input {
    min-height: 58px !important;
    height: 58px !important;
    border: 3px solid var(--ci-ink) !important;
    border-radius: var(--ci-radius-pill) !important;
    padding: 0 20px !important;
    background: #fff !important;
    font-size: 20px !important;
    font-weight: 300 !important;
  }

  body.ci-public .ci-home-search-panel .ci-search-form button {
    min-height: 54px !important;
    border: 3px solid var(--ci-ink) !important;
    border-radius: var(--ci-radius-pill) !important;
    background: var(--ci-ink) !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 400 !important;
  }

  body.ci-public .ci-home-search-panel .ci-search-form button:hover,
  body.ci-public .ci-home-search-panel .ci-search-form button:focus-visible {
    background: var(--ci-italy-red) !important;
    border-color: var(--ci-italy-red) !important;
    color: #fff !important;
  }
}
