.new-page {
  --new-accent: var(--fc-bubblegum);
}

.new-hero {
  margin: 0 0 24px;
  padding: 32px 32px 28px;
  background: var(--fc-volt);
  color: #000;
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  overflow: hidden;
  position: relative;
}

.new-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0) 60%);
  opacity: .12;
  pointer-events: none;
}

.new-hero > * {
  position: relative;
  z-index: 1;
}

.new-hero__eyebrow {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

.new-hero__title {
  margin: 8px 0 4px;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 64px);
  line-height: .92;
  letter-spacing: 0;
  max-width: 12ch;
}

.new-hero__sub {
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .7);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.new-hero__sub b {
  color: #000;
}

.new-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
  width: fit-content;
}

.new-tab {
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--fc-font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  background: transparent;
  color: rgba(0, 0, 0, .65);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.new-tab.active {
  background: #000;
  color: var(--fc-volt);
}

.feat-card {
  background: #fff;
  border: 1px solid #ececea;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.feat-card__art {
  background: #1d428a;
  aspect-ratio: 1;
}

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

.feat-card__body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.feat-card__eyebrow {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--new-accent);
  text-transform: uppercase;
  font-weight: 700;
}

.feat-card__title {
  margin: 0;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0;
}

.feat-card__title a {
  color: #000;
  text-decoration: none;
}

.feat-card__title a:hover {
  color: var(--fc-electric);
}

.feat-card__byline {
  font-size: 14px;
  color: rgba(0, 0, 0, .7);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feat-card__byline a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feat-card__copy {
  margin: 4px 0 0;
  color: rgba(0, 0, 0, .68);
  font-size: 14px;
  line-height: 1.45;
  max-width: 72ch;
}

.feat-card__cta-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--fc-font-mono);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.new-btn--dark {
  background: #000;
  color: #fff;
}

.new-btn--play {
  background: var(--new-accent);
  color: #fff;
}

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

.new-card {
  background: #fff;
  border: 1px solid #ececea;
  border-radius: 8px;
  min-height: auto;
  padding: 14px;
  transition: transform var(--fc-t-fast), box-shadow var(--fc-t-fast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.new-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.new-card__art {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: #1d428a;
  position: relative;
  display: block;
}

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

.new-card__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--fc-volt);
  color: #000;
  font-family: var(--fc-font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 6px;
  border-radius: 3px;
}

.new-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.new-card__title {
  display: block;
  overflow: hidden;
  font-family: var(--fc-font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-card__title:hover {
  color: var(--fc-electric);
}

.new-card__by {
  font-family: var(--fc-font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(0, 0, 0, .55);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.new-card__by a {
  color: var(--new-accent);
  text-decoration: none;
}

.new-card__copy {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(0, 0, 0, .62);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px dashed #d8d6d0;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  color: rgba(0, 0, 0, .55);
}

.new-card__foot .nv,
.new-card__lyrics {
  background: #f3f1eb;
  color: #000;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
}

.new-card__foot .play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: var(--new-accent);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.new-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 28px 0 0;
}

.new-pager a {
  min-width: 36px;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececea;
  border-radius: 999px;
  color: #000;
  text-decoration: none;
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  background: #fff;
}

.new-pager a:hover,
.new-pager a.active {
  background: #000;
  color: var(--fc-volt);
  border-color: #000;
}

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

@media (max-width: 760px) {
  .pg {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .pg__main,
  .fc-topbar {
    min-width: 0;
  }

  .fc-search,
  .fc-topbar__menu {
    display: none;
  }

  .fc-topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pg__inner.new-page {
    width: auto;
    max-width: none;
    padding: 20px 14px 80px;
    box-sizing: border-box;
  }

  .new-hero,
  .feat-card {
    grid-template-columns: 1fr;
  }

  .new-hero {
    padding: 28px 22px 24px;
  }

  .new-hero__title {
    max-width: none;
  }

  .new-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .feat-card__art {
    aspect-ratio: 16 / 10;
  }

  .feat-card__title {
    font-size: 26px;
  }

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

  .new-card {
    padding: 12px;
  }

  .new-card__title {
    font-size: 15px;
  }

  footer {
    padding: 36px 16px 150px !important;
  }

  footer > div {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  footer > div > div:first-child {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 339px) {
  .new-grid {
    grid-template-columns: 1fr;
  }
}
