.artists-catalog-page .page {
  padding-top: 96px;
  background: #0b0b0b;
}

.artists-catalog-hero {
  min-height: min(560px, 58vw);
  padding: clamp(64px, 8vw, 130px) 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: #101010;
  color: #fff;
}

.artists-catalog-hero-inner,
.artists-catalog-inner {
  width: min(calc(100% - 96px), 1500px);
  margin: 0 auto;
}

.artists-catalog-hero-inner {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.7fr);
  align-items: start;
  gap: clamp(30px, 7vw, 120px);
}

.artists-catalog-hero p,
.artists-catalog-heading p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.56);
  font: 700 11px/1.2 var(--ra-body);
  letter-spacing: .14em;
}

.artists-catalog-hero h1 {
  margin: 0;
  max-width: 1050px;
  color: #fff;
  font: 700 clamp(54px, 7.2vw, 128px)/.84 var(--ra-display);
  letter-spacing: -.075em;
}

.artists-catalog-hero h1 .artists-title-arrow {
  display: inline-flex;
  width: .68em;
  height: .68em;
  margin-left: .08em;
  color: var(--ra-accent);
  vertical-align: .02em;
}
.artists-catalog-hero h1 .artists-title-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.artists-catalog-hero h1 .artists-title-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.artists-catalog {
  padding: clamp(70px, 8vw, 135px) 0 clamp(90px, 10vw, 170px);
  background: #ececea;
  color: #0b0b0b;
}

.artists-catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.artists-catalog-heading p { color: rgba(11,11,11,.58); }
.artists-catalog-heading h2 {
  margin: 12px 0 0;
  font: 700 clamp(64px, 9vw, 150px)/.78 var(--ra-display);
  letter-spacing: -.075em;
}
.artists-catalog-heading > span {
  padding-bottom: 8px;
  color: rgba(11,11,11,.62);
  font: 700 11px/1 var(--ra-body);
  letter-spacing: .12em;
}

.artists-filter {
  margin-top: clamp(36px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(11,11,11,.24);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
}
.artists-filter-search { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 0 24px; }
.artists-filter-search input {
  width: 100%;
  min-height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0b0b0b;
  font: 700 12px/1 var(--ra-body);
  letter-spacing: .08em;
}
.artists-filter button {
  min-width: 170px;
  border: 0;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  font: 700 11px/1 var(--ra-body);
  letter-spacing: .1em;
  cursor: pointer;
}
.artists-filter button:hover { background: var(--ra-accent); }

.artists-filter-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.artists-filter-chips a {
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11,11,11,.28);
  border-radius: 999px;
  color: #0b0b0b;
  font: 700 10px/1 var(--ra-body);
  letter-spacing: .1em;
}
.artists-filter-chips a:hover,
.artists-filter-chips a.is-active { border-color: #0b0b0b; background: #0b0b0b; color: #fff; }

.artists-catalog-grid {
  margin-top: clamp(45px, 6vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}
.artists-catalog-page .artists-catalog-card,
.artists-catalog-page .artists-catalog-card:nth-child(even) {
  min-width: 0;
  width: 100%;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  transform: none;
}
.artists-catalog-page .artists-catalog-card > img {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.artists-catalog-type {
  display: block;
  margin-bottom: 8px;
  color: var(--ra-lime);
  font: 700 9px/1 var(--ra-body);
  letter-spacing: .13em;
}
.artists-catalog-page .media-slide-overlay h3 { font-size: clamp(27px, 2.3vw, 42px); }
.artists-catalog-page .media-slide-overlay p { min-height: 2.7em; }
[data-artists-results] { transition: opacity .2s ease; }
[data-artists-results].is-loading { opacity: .45; pointer-events: none; }
.artists-catalog-page .artists-catalog-card .media-slide-overlay {
  flex: 0 0 auto;
  height: auto;
  min-height: 150px;
  justify-content: center;
}
.artists-catalog-page .artists-catalog-card .media-slide-overlay h3 {
  overflow: visible;
  word-break: normal;
  overflow-wrap: anywhere;
}
.artists-empty { margin-top: 70px; padding: 70px 0; border-block: 1px solid rgba(11,11,11,.25); display: grid; gap: 18px; }
.artists-empty strong { font: 700 clamp(34px, 5vw, 72px)/.9 var(--ra-display); }
.artists-empty a { color: #0b0b0b; font-weight: 800; }

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

@media (max-width: 760px) {
  .artists-catalog-page .page { padding-top: 72px; }
  .artists-catalog-hero { min-height: 480px; padding: 70px 0; }
  .artists-catalog-hero-inner,
  .artists-catalog-inner { width: calc(100% - 32px); }
  .artists-catalog-hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .artists-catalog-hero h1 {
    overflow: visible;
    font-size: clamp(40px, 11vw, 56px);
  }
  .artists-catalog-hero h1 .artists-title-arrow {
    display: inline-flex;
    width: .62em;
    height: .62em;
    margin-left: .04em;
  }
  .artists-catalog-heading { align-items: start; flex-direction: column; gap: 18px; }
  .artists-catalog-heading h2 { font-size: clamp(58px, 20vw, 96px); }
  .artists-filter { grid-template-columns: 1fr; border-radius: 24px; }
  .artists-filter button { min-height: 50px; margin: 0 7px 7px; }
  .artists-filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .artists-filter-chips::-webkit-scrollbar { display: none; }
  .artists-filter-chips a { flex: 0 0 auto; }
  .artists-catalog-grid { grid-template-columns: 1fr; gap: 18px; }
  .artists-catalog-page .artists-catalog-card { border-radius: 22px; }
  .artists-catalog-page .artists-catalog-card .media-slide-overlay { min-height: 132px; }
}
