/* Home V2 - page-scoped composition. */
.gp-home-v2 {
  --home-bg: #050607;
  --home-panel: #0b0d0f;
  --home-line: rgba(255, 255, 255, 0.12);
  --home-muted: #9a9da3;
  --home-red: #bc101b;
  color: #f4f4f5;
  background: var(--home-bg);
  overflow: hidden;
}

.gp-home-v2 *,
.gp-home-v2 *::before,
.gp-home-v2 *::after {
  box-sizing: border-box;
}

.gp-home-v2 a {
  color: inherit;
}

.gp-home-v2__hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(430px, 46vw, 680px);
  border-bottom: 1px solid var(--home-line);
  overflow: hidden;
}

.gp-home-v2__hero-media,
.gp-home-v2__hero-shade {
  position: absolute;
  inset: 0;
}

.gp-home-v2__hero-media {
  z-index: -2;
}

.gp-home-v2__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.gp-home-v2__hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 2, 3, 0.96) 0%, rgba(5, 2, 3, 0.78) 30%, rgba(5, 2, 3, 0.2) 68%, rgba(5, 2, 3, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.78) 0%, transparent 48%);
}

.gp-home-v2__hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
}

.gp-home-v2__hero-copy {
  max-width: 600px;
}

.gp-home-v2__eyebrow,
.gp-home-v2__kicker {
  margin: 0 0 16px;
  color: #d11a27;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gp-home-v2__hero h1 {
  max-width: 9ch;
  margin: 0;
  color: #f7f7f8;
  font-size: clamp(4rem, 7.8vw, 8.4rem);
  font-weight: 680;
  line-height: 0.82;
  letter-spacing: -0.068em;
}

.gp-home-v2__hero-copy > p:not(.gp-home-v2__eyebrow) {
  max-width: 590px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: #c2c3c7;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.gp-home-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gp-home-v2__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.gp-home-v2__button:hover,
.gp-home-v2__button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #08090a;
}

.gp-home-v2__button--primary {
  border-color: var(--home-red);
  background: var(--home-red);
}

.gp-home-v2__section {
  padding: clamp(54px, 6.5vw, 94px) 0;
  border-bottom: 1px solid var(--home-line);
}

.gp-home-v2__section-head {
  margin-bottom: 24px;
}

.gp-home-v2__section-head--link,
.gp-home-v2__lane-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.gp-home-v2__section h2 {
  margin: 0;
  color: #f6f6f7;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.gp-home-v2__section h3,
.gp-home-v2__section h4,
.gp-home-v2__section p {
  margin-top: 0;
}

.gp-home-v2__tab-list {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--home-line);
}

.gp-home-v2__tab-list button {
  position: relative;
  padding: 0 0 13px;
  border: 0;
  color: var(--home-muted);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
}

.gp-home-v2__tab-list button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--home-red);
  content: "";
  opacity: 0;
}

.gp-home-v2__tab-list button[aria-selected="true"],
.gp-home-v2__tab-list button[data-gp-tab-active] {
  color: #fff;
}

.gp-home-v2__tab-list button[aria-selected="true"]::after,
.gp-home-v2__tab-list button[data-gp-tab-active]::after {
  opacity: 1;
}

.gp-home-v2__tab-list button:focus-visible,
.gp-home-v2__text-link:focus-visible,
.gp-home-v2 a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.gp-home-v2__tab-panel + .gp-home-v2__tab-panel {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--home-line);
}

.gp-home-v2__tabs.is-enhanced .gp-home-v2__tab-panel + .gp-home-v2__tab-panel {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.gp-home-v2__signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 4vw, 64px);
}

.gp-home-v2__signal-lead {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--home-line);
  overflow: hidden;
}

.gp-home-v2__signal-lead::after {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(0deg, rgba(4, 5, 6, 0.98), transparent);
  content: "";
}

.gp-home-v2__signal-lead img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: grayscale(1);
}

.gp-home-v2__signal-lead-copy {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(22px, 4vw, 44px);
  left: clamp(20px, 4vw, 48px);
}

.gp-home-v2__signal-lead.is-text-only {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #17191c, #08090a);
}

.gp-home-v2__signal-lead.is-text-only::after {
  display: none;
}

.gp-home-v2__signal-lead.is-text-only .gp-home-v2__signal-lead-copy {
  position: relative;
}

.gp-home-v2__signal-lead h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 0.95;
}

.gp-home-v2__signal-lead-copy > p:not(.gp-home-v2__kicker) {
  margin-bottom: 18px;
  color: #d0d1d4;
}

.gp-home-v2__signal-secondary {
  display: flex;
  flex-direction: column;
}

.gp-home-v2__signal-small {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--home-line);
}

.gp-home-v2__signal-small img {
  width: 118px;
  height: 132px;
  object-fit: cover;
  filter: grayscale(1);
}

.gp-home-v2__signal-small.is-text-only {
  grid-template-columns: 1fr;
}

.gp-home-v2__signal-small h3 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.gp-home-v2__signal-small p:not(.gp-home-v2__kicker),
.gp-home-v2__notice-card p,
.gp-home-v2__event-card p,
.gp-home-v2__artist-card p {
  color: var(--home-muted);
  line-height: 1.5;
}

.gp-home-v2__text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(188, 16, 27, 0.8);
  color: #f3f3f4;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.gp-home-v2__text-link:hover {
  border-color: #fff;
}

.gp-home-v2__all-link {
  align-self: flex-start;
  margin-top: auto;
}

.gp-home-v2__upcoming-grid,
.gp-home-v2__event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gp-home-v2__notice-card,
.gp-home-v2__event-card,
.gp-home-v2__signal-upcoming-card {
  border: 1px solid var(--home-line);
  background: var(--home-panel);
}

.gp-home-v2__signal-upcoming-card {
  overflow: hidden;
}

.gp-home-v2__signal-upcoming-media {
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.gp-home-v2__signal-upcoming-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.gp-home-v2__signal-upcoming-copy {
  padding: clamp(24px, 3vw, 38px);
}

.gp-home-v2__signal-upcoming-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
}

.gp-home-v2__signal-upcoming-copy > p:not(.gp-home-v2__kicker) {
  color: var(--home-muted);
  line-height: 1.55;
}

.gp-home-v2__signal-upcoming-deck {
  font-size: 0.9rem;
}

/* Balanced SIGNAL collection cards. */
.gp-home-v2__signal-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

.gp-home-v2__signal-editorial-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-height: 520px;
  border: 1px solid var(--home-line);
  background: var(--home-panel);
  overflow: hidden;
}

.gp-home-v2__signal-editorial-card figure {
  min-height: 260px;
  margin: 0;
  background: #050607;
  overflow: hidden;
}

.gp-home-v2__signal-editorial-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gp-home-v2__signal-editorial-card--scene figure img {
  object-fit: contain;
}

.gp-home-v2__signal-editorial-card > div {
  padding: clamp(24px, 3vw, 40px);
}

.gp-home-v2__signal-editorial-card h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 0.98;
}

.gp-home-v2__signal-editorial-card p:not(.gp-home-v2__kicker) {
  color: var(--home-muted);
  line-height: 1.5;
}

.gp-home-v2__signal-upcoming-card--verified {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  margin-top: clamp(18px, 2.6vw, 32px);
}

.gp-home-v2__signal-upcoming-card--verified .gp-home-v2__signal-upcoming-media {
  aspect-ratio: auto;
  min-height: 230px;
  background: #050607;
}

.gp-home-v2__signal-upcoming-card--verified .gp-home-v2__signal-upcoming-media img {
  filter: none;
  object-fit: contain;
}

/* SIGNAL V8 - open magazine composition, deliberately unlike event cards. */
.gp-home-v2__signal {
  background:
    radial-gradient(64% 34% at 8% 12%, rgba(150, 15, 30, .11), transparent 72%),
    #070708;
}

.gp-home-v2__signal > .gp-container > .gp-home-v2__section-head h2 {
  font-family: var(--gp-premium-sans, Inter, "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif);
  font-size: clamp(2.6rem, 4.3vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -.01em;
}

body:not(.page-template-page-culture) .gp-home-v2__signal h2,
body:not(.page-template-page-culture) .gp-home-v2__signal h3 {
  font-family: var(--gp-premium-sans, Inter, "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif);
  font-weight: 600;
  letter-spacing: -.01em;
}

.gp-home-v2__signal-collection {
  padding: clamp(52px, 7vw, 88px) 0 0;
  border-top: 1px solid var(--home-line);
}

.gp-home-v2__signal-collection + .gp-home-v2__signal-collection {
  margin-top: clamp(64px, 9vw, 112px);
}

.gp-home-v2__signal-collection-head {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.gp-home-v2__signal-collection-head .gp-home-v2__kicker { margin-bottom: 10px; font-weight: 600; }
.gp-home-v2__signal-collection-head h3 {
  margin: 0;
  color: #f3f1ee;
  font-family: var(--gp-premium-sans, Inter, "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif);
  font-size: clamp(2.3rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
}
.gp-home-v2__signal-collection-head > p { justify-self: end; max-width: 40ch; margin: 0; color: #9fa0a4; font-size: 1rem; line-height: 1.55; }

.gp-home-v2__signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 20px;
  color: #e04453;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.gp-home-v2__signal-meta span { color: #77797e; }
.gp-home-v2__signal-actions { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 24px; }
.gp-home-v2__text-link--quiet { color: #a6a7ab; border-color: rgba(255,255,255,.16); }

.signal-voices-spread--home { --signal-voice-media-height: clamp(300px, 24vw, 390px); }

.gp-home-v2__scene-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .72fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
}
.gp-home-v2__scene-current { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(240px, .98fr); border-top: 1px solid var(--home-line); }
.gp-home-v2__scene-current-copy { padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 20px 0; }
.gp-home-v2__scene-current h4 { margin: 0; color: #f3f1ee; font-family: var(--gp-premium-sans, Inter, "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif); font-size: clamp(2.25rem, 4vw, 3.15rem); font-weight: 600; line-height: .98; letter-spacing: -.01em; }
.gp-home-v2__scene-editorial-title { margin: 14px 0 4px; color: #e0deda; font-family: var(--gp-premium-sans, Inter, "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif); font-size: 1.08rem; font-style: italic; }
.gp-home-v2__scene-context { margin: 0 0 24px; color: #77797e; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.gp-home-v2__scene-facts { margin: 0; border-top: 1px solid rgba(255,255,255,.08); }
.gp-home-v2__scene-facts > div { display: grid; grid-template-columns: 70px 1fr; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.gp-home-v2__scene-facts dt { color: #77797e; font-size: .63rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.gp-home-v2__scene-facts dd { margin: 0; color: #a6a7ab; font-size: .78rem; line-height: 1.45; }
.gp-home-v2__scene-current-media { display: grid; place-items: center; align-self: stretch; margin: 0; background: #040405; }
.gp-home-v2__scene-current-media img { width: 100%; height: 100%; max-height: 570px; object-fit: contain; }
.gp-home-v2__scene-upcoming { padding-top: 18px; border-top: 1px solid var(--home-line); }
.gp-home-v2__scene-upcoming-media { margin: 0 0 22px; background: #040405; }
.gp-home-v2__scene-upcoming-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; }
.gp-home-v2__scene-project { margin: 0 0 6px; color: #e04453; font-size: .66rem; font-weight: 600; letter-spacing: .15em; }
.gp-home-v2__scene-upcoming h4 { margin: 0 0 14px; color: #f3f1ee; font-family: var(--gp-premium-sans, Inter, "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif); font-size: clamp(1.5rem, 2.3vw, 1.85rem); font-weight: 600; line-height: 1.04; }
.gp-home-v2__scene-upcoming-copy > p:not(.gp-home-v2__signal-meta, .gp-home-v2__scene-project, .gp-home-v2__scene-upcoming-lineup) { margin: 0 0 12px; color: #a6a7ab; font-size: .78rem; line-height: 1.5; }
.gp-home-v2__scene-upcoming-lineup { margin: 0 0 20px; color: #77797e; font-size: .74rem; line-height: 1.5; }

.gp-home-v2__notice-card {
  min-height: 180px;
  padding: clamp(24px, 3vw, 40px);
}

.gp-home-v2__notice-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
}

.gp-home-v2__event-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  min-height: 390px;
  border: 1px solid var(--home-line);
  background: var(--home-panel);
}

.gp-home-v2__event-focus-media {
  min-height: 390px;
  overflow: hidden;
}

.gp-home-v2__event-focus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-home-v2__event-focus-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.gp-home-v2__event-focus.is-text-only {
  grid-template-columns: 1fr;
}

.gp-home-v2__event-focus h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 0.98;
}

.gp-home-v2__event-focus h3 a,
.gp-home-v2__event-card h3 a,
.gp-home-v2__release-card a,
.gp-home-v2__artist-card a {
  text-decoration: none;
}

.gp-home-v2__event-facts {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  color: #b7b9be;
  list-style: none;
}

.gp-home-v2__event-card-media {
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.gp-home-v2__event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-home-v2__event-card-copy {
  padding: clamp(22px, 3vw, 36px);
}

.gp-home-v2__event-card.is-text-only {
  min-height: 260px;
  background: linear-gradient(135deg, #111316, #070809);
}

.gp-home-v2__event-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.gp-home-v2__release-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 64px);
}

.gp-home-v2__lane-head {
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(188, 16, 27, 0.62);
}

.gp-home-v2__lane-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.gp-home-v2__release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gp-home-v2__release-media {
  display: block;
  aspect-ratio: 1;
  border: 1px solid var(--home-line);
  background: linear-gradient(135deg, #141619, #08090a);
  overflow: hidden;
}

.gp-home-v2__release-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-home-v2__release-copy {
  padding-top: 12px;
}

.gp-home-v2__release-card h4 {
  margin-bottom: 6px;
  font-size: 0.96rem;
  line-height: 1.3;
}

.gp-home-v2__release-artists,
.gp-home-v2__release-meta {
  margin-bottom: 4px;
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.gp-home-v2__artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gp-home-v2__artist-media {
  display: block;
  aspect-ratio: 4 / 5;
  margin-bottom: 13px;
  border: 1px solid var(--home-line);
  background: linear-gradient(145deg, #17191c, #08090a);
  overflow: hidden;
}

.gp-home-v2__artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-home-v2__artist-card h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.gp-home-v2__artist-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.gp-home-v2__empty {
  padding: 28px;
  border: 1px solid var(--home-line);
  color: var(--home-muted);
  background: var(--home-panel);
}

@media (max-width: 980px) {
  .gp-home-v2__signal-grid,
  .gp-home-v2__signal-collection-grid,
  .gp-home-v2__event-focus {
    grid-template-columns: 1fr;
  }

  .gp-home-v2__scene-composition {
    grid-template-columns: 1fr;
  }

  .gp-home-v2__scene-upcoming {
    display: grid;
    grid-template-columns: minmax(190px, .68fr) minmax(0, 1.32fr);
    gap: 30px;
  }

  .gp-home-v2__scene-upcoming-media { margin-bottom: 0; }

  .gp-home-v2__signal-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .gp-home-v2__signal-small {
    grid-template-columns: 100px minmax(0, 1fr);
    margin: 0;
  }

  .gp-home-v2__signal-small img {
    width: 100px;
    height: 118px;
  }

  .gp-home-v2__all-link {
    grid-column: 1 / -1;
  }

  .gp-home-v2__release-lanes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .gp-home-v2__hero {
    min-height: min(680px, calc(100svh - 64px));
  }

  .gp-home-v2__hero-media img {
    object-position: 52% center;
  }

  .gp-home-v2__hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 2, 3, 0.9), rgba(4, 2, 3, 0.33)),
      linear-gradient(0deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 2, 3, 0.18) 68%);
  }

  .gp-home-v2__hero-inner {
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .gp-home-v2__hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.2rem);
  }

  .gp-home-v2__hero-copy > p:not(.gp-home-v2__eyebrow) {
    font-size: 0.98rem;
  }

  .gp-home-v2__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gp-home-v2__button {
    width: 100%;
  }

  .gp-home-v2__section-head--link,
  .gp-home-v2__lane-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-home-v2__signal-lead,
  .gp-home-v2__signal-lead img {
    min-height: 380px;
  }

  .gp-home-v2__signal-secondary,
  .gp-home-v2__signal-editorial-grid,
  .gp-home-v2__signal-collection-grid,
  .gp-home-v2__upcoming-grid,
  .gp-home-v2__event-grid {
    grid-template-columns: 1fr;
  }

  .gp-home-v2__signal-collection {
    padding: 22px;
  }

  .gp-home-v2__signal-collection-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gp-home-v2__signal-collection-head { grid-template-columns: 1fr; }
  .gp-home-v2__signal-collection-head > p { justify-self: start; }

  .gp-home-v2__scene-current,
  .gp-home-v2__scene-upcoming {
    grid-template-columns: 1fr;
  }

  .gp-home-v2__scene-current-copy { padding: 28px 0; }
  .gp-home-v2__scene-current-media { min-height: 250px; }

  .gp-home-v2__signal-card--primary {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .gp-home-v2__signal-editorial-card {
    min-height: 0;
  }

  .gp-home-v2__signal-upcoming-card--verified {
    grid-template-columns: 1fr;
  }

  .gp-home-v2__all-link {
    grid-column: auto;
  }

  .gp-home-v2__event-focus-media {
    min-height: 250px;
  }

  .gp-home-v2__release-grid {
    gap: 10px;
  }

  .gp-home-v2__release-card h4 {
    font-size: 0.83rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .gp-home-v2 *,
  .gp-home-v2 *::before,
  .gp-home-v2 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================================
   SIGNAL v8.4.0 - homepage SIGNAL identity, focus and flyer handling.
   Scoped to the homepage SIGNAL section and the Events focus media only.
   Bookings, Labels, Releases and other homepage sections are untouched.
   ===================================================================== */

/* --- Homepage SIGNAL section: smaller lockup replaces the plain word --- */
.gp-home-v2__section-head--signal { align-items: center; }
.gp-home-v2__signal-brand { display: flex; align-items: center; }
.gp-home-v2__signal-lockup {
  display: block;
  width: auto;
  max-width: clamp(168px, 20vw, 232px);
  height: auto;
}
.gp-home-v2__signal-title--logo {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* --- Homepage Scene Support: full-width when only one item exists ----- */
.gp-home-v2__scene-composition--single {
  grid-template-columns: minmax(0, 1fr);
}
.gp-home-v2__scene-composition--single .gp-home-v2__scene-upcoming {
  border-top: 0;
  padding-top: 0;
}

/* --- Homepage Event focus flyer: never crop embedded typography ------- */
/* Flyers carry their own dates, event names and lineups baked into the
   artwork. Use contain on a controlled dark canvas so nothing is cropped. */
.gp-home-v2__event-focus-media {
  background: #0a0a0a;
}
.gp-home-v2__event-focus-media img {
  object-fit: contain;
  object-position: center;
}

/* =====================================================================
   Home v8.5.0 - Strmac focus
   The verified Event data is typography; the legacy campaign file supplies
   only its forest/location visual through a controlled crop.
   ===================================================================== */
.gp-home-v2__scene-current--strmac {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
}
.gp-home-v2__scene-current-media--strmac {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}
.gp-home-v2__scene-current-media--strmac img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transform: scale(1.66);
  transform-origin: 62% 51%;
}
.gp-home-v2__scene-current--strmac .gp-home-v2__scene-current-copy {
  position: relative;
  z-index: 1;
}
.gp-home-v2__scene-current--strmac .gp-home-v2__scene-current-copy::before {
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 22px;
  background: #d82435;
  content: "";
}

.gp-home-v2__event-focus--strmac {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .7fr);
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(110deg, rgba(199, 43, 59, .08), transparent 48%),
    #0b0c0e;
}
.gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-media {
  position: relative;
  overflow: hidden;
  background: #050506;
}
.gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.58);
  transform-origin: 63% 51%;
}
.gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-copy {
  border-left: 1px solid rgba(255, 255, 255, .09);
}
.gp-home-v2__event-focus--strmac .gp-home-v2__event-lineup {
  max-width: 38ch;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8f9298;
  font-size: .78rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .gp-home-v2__scene-current--strmac {
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  }
  .gp-home-v2__event-focus--strmac {
    grid-template-columns: 1fr;
  }
  .gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-media {
    min-height: 360px;
  }
  .gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-copy {
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .gp-home-v2__scene-current--strmac {
    grid-template-columns: 1fr;
  }
  .gp-home-v2__scene-current-media--strmac {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }
  .gp-home-v2__scene-current-media--strmac img,
  .gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-media img {
    transform: scale(1.5);
    transform-origin: 60% 51%;
  }
  .gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-media {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-home-v2__scene-current-media--strmac img,
  .gp-home-v2__event-focus--strmac .gp-home-v2__event-focus-media img {
    transition: none;
  }
}
