/**
 * IYD 2026 landing (/iyd2026) — scoped to .iyd-event-page
 */

/* Green leaf side / top rails removed on IYD landing */
.iyd-event-page .iyd2026-section--framed::before,
.iyd-event-page .iyd2026-section--framed::after {
  content: none !important;
}

.iyd-event-page .iyd2026-hero__rail,
.iyd-event-page .iyd2026-hero__rail--left,
.iyd-event-page .iyd2026-hero__rail--right,
.iyd-event-page .iyd2026-hero__leaf--top,
.iyd-event-page .iyd2026-partner-strip__rail,
.iyd-event-page .iyd2026-partner-strip__rail--left,
.iyd-event-page .iyd2026-partner-strip__rail--right {
  display: none !important;
}

.iyd-event-page {
  /* Side rails: punchier on dark scrims (brightness filter applied on rails). */
  --iyd-foliage-opacity: 0.82;
  --iyd2026-lime: #c5e87f;
  --iyd2026-lime-text: #141414;
  --iyd2026-pink: #ff7791;
  --iyd2026-coral: #f28b82;
  --iyd2026-rose-script: #e8b4b8;
  --iyd2026-green-bright: #5ad65a;
  --iyd2026-script: "Great Vibes", cursive;
}

.iyd-event-page .iyd2026-script {
  font-family: var(--iyd2026-script);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --- Shared foliage frame (rails) --- */
.iyd-event-page .iyd2026-section--framed {
  position: relative;
  overflow: hidden;
}

.iyd-event-page .iyd2026-section--framed::before,
.iyd-event-page .iyd2026-section--framed::after {
  content: "";
  position: absolute;
  top: 0;
  width: var(--iyd-foliage-rail-width);
  height: 100%;
  background-image: var(--iyd-foliage-img);
  background-repeat: repeat-y;
  background-size: 108% auto;
  background-position: 34% 0;
  opacity: var(--iyd-foliage-opacity);
  /* Sit above dark wash so leaves stay lush, not “muddy”. */
  filter: brightness(1.14) saturate(1.08);
  pointer-events: none;
  z-index: 3;
}

.iyd-event-page .iyd2026-section--framed::before {
  left: 0;
}

.iyd-event-page .iyd2026-section--framed::after {
  right: 0;
  transform: scaleX(-1);
}

/* --- Lime CTA variant --- */
.iyd-event-page .cta-button--iyd-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 1rem 2.15rem;
  border-radius: 999px;
  background: var(--iyd2026-lime);
  color: var(--iyd2026-lime-text) !important;
  border: none;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.85vw, 1.06rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.iyd-event-page .cta-button--iyd-lime:hover,
.iyd-event-page .cta-button--iyd-lime:focus {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--iyd2026-lime-text) !important;
}

/* ========== Hero ========== */
.iyd-event-page .iyd2026-hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 10vw, 6rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
}

.iyd-event-page .iyd2026-hero__bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d url("../images/iyd2026/iyd2026-hero-fallback.png") center center / cover no-repeat;
  z-index: 0;
}

.iyd-event-page .iyd2026-hero--has-video .iyd2026-hero__bg {
  background-image: none;
}

.iyd-event-page .iyd2026-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.iyd-event-page .iyd2026-hero__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.iyd-event-page .iyd2026-hero__wash {
  position: absolute;
  inset: 0;
  /* Darker scrim = less “see-through” over photo/video + better type contrast. */
  background: rgba(0, 0, 0, 0.64);
  z-index: 1;
}

.iyd-event-page .iyd2026-hero__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--iyd-foliage-rail-width);
  background-image: var(--iyd-foliage-img);
  background-repeat: repeat-y;
  background-size: 108% auto;
  background-position: 34% 0;
  opacity: 0.72;
  filter: brightness(1.14) saturate(1.08);
  z-index: 2;
  pointer-events: none;
}

.iyd-event-page .iyd2026-hero__rail--left {
  left: 0;
}

.iyd-event-page .iyd2026-hero__rail--right {
  right: 0;
  transform: scaleX(-1);
}

.iyd-event-page .iyd2026-hero__leaf--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(120px, 18vw);
  background: var(--iyd-foliage-img) center top / 102% auto no-repeat;
  opacity: 0.48;
  filter: brightness(1.12) saturate(1.06);
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 0.2) 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 0.2) 85%,
    transparent 100%
  );
}

.iyd-event-page .iyd2026-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 56rem;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 28px rgba(0, 0, 0, 0.75);
}

.iyd-event-page .iyd2026-hero__lockup {
  position: relative;
  margin-bottom: 1rem;
}

.iyd-event-page .iyd2026-hero__intl {
  font-size: clamp(1.22rem, 3vw, 1.78rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.1;
}

.iyd-event-page .iyd2026-hero__yoga {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.02em;
  font-size: clamp(2.55rem, 8.5vw, 5.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0.15em 0 0;
}

.iyd-event-page .iyd2026-hero__o {
  display: inline-flex;
  width: 0.62em;
  height: 0.62em;
  margin: 0 0.02em;
  vertical-align: middle;
}

.iyd-event-page .iyd2026-hero__o svg {
  width: 100%;
  height: 100%;
}

.iyd-event-page .iyd2026-hero__miami {
  font-family: var(--iyd2026-script);
  font-size: clamp(3rem, 9.5vw, 5.35rem);
  color: var(--iyd2026-pink);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 3px 24px rgba(0, 0, 0, 0.65);
  margin: 0.1em 0 0;
  transform: rotate(-4deg);
  line-height: 1;
}

.iyd-event-page .iyd2026-hero__tagline {
  font-size: clamp(0.92rem, 2.15vw, 1.14rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 1.25rem auto 0.75rem;
  max-width: 36rem;
}

.iyd-event-page .iyd2026-hero__dates {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(1.08rem, 2.55vw, 1.46rem);
  margin-bottom: 1.25rem;
}

.iyd-event-page .iyd2026-hero__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0.5rem auto 1.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.iyd-event-page .iyd2026-hero__play:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.iyd-event-page .iyd2026-hero__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.iyd-event-page .iyd2026-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ========== Journey ========== */
.iyd-event-page .iyd2026-journey {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
}

.iyd-event-page .iyd2026-journey__bg {
  position: absolute;
  inset: 0;
  background: #111 url("../images/iyd2026/iyd2026-journey.png") center center / cover no-repeat;
  z-index: 0;
}

.iyd-event-page .iyd2026-journey__wash {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  z-index: 1;
}

.iyd-event-page .iyd2026-journey__inner {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

/* Match §3 experience: contrast panels on busy photo. */
.iyd-event-page .iyd2026-journey__brand {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 3px 24px rgba(0, 0, 0, 0.75);
}

.iyd-event-page .iyd2026-journey__copy {
  padding: clamp(1.35rem, 3.2vw, 2rem);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 3px 24px rgba(0, 0, 0, 0.75);
}

.iyd-event-page .iyd2026-journey__fair-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.iyd-event-page .iyd2026-journey__fair-img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.iyd-event-page .iyd2026-journey__headline {
  font-family: var(--iyd2026-script);
  font-size: clamp(1.95rem, 4.6vw, 2.9rem);
  color: #f5d0d6;
  font-weight: 400;
  line-height: 1.22;
  margin: 0 0 1.35rem;
}

.iyd-event-page .iyd2026-journey__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  font-weight: 800;
  line-height: 1.68;
}

.iyd-event-page .iyd2026-journey__list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 0.45em;
}

.iyd-event-page .iyd2026-journey__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
}

/* ========== Experience ========== */
.iyd-event-page .iyd2026-experience {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
}

.iyd-event-page .iyd2026-experience__bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a url("../images/iyd2026/iyd2026-experience.png") center center / cover no-repeat;
  z-index: 0;
}

.iyd-event-page .iyd2026-experience__wash {
  position: absolute;
  inset: 0;
  /* Stronger scrim: busy expo photo reads quieter so type wins. */
  background: rgba(0, 0, 0, 0.74);
  z-index: 1;
}

.iyd-event-page .iyd2026-experience__inner {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

/* Left column: dedicated contrast panel on top of photo + wash. */
.iyd-event-page .iyd2026-experience__left {
  padding: clamp(1.35rem, 3.2vw, 2rem);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 3px 24px rgba(0, 0, 0, 0.75);
}

.iyd-event-page .iyd2026-experience__script {
  font-family: var(--iyd2026-script);
  font-size: clamp(1.95rem, 4.5vw, 2.85rem);
  color: #f5d0d6;
  font-weight: 400;
  line-height: 1.22;
  margin: 0 0 0.45rem;
}

.iyd-event-page .iyd2026-experience__roof {
  font-size: clamp(1.32rem, 2.9vw, 1.78rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--iyd2026-green-bright);
  margin: 0 0 1.35rem;
}

.iyd-event-page .iyd2026-experience__stats-title {
  font-size: clamp(1.1rem, 2.25vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f0b8c0;
  margin: 0 0 0.75rem;
}

.iyd-event-page .iyd2026-experience__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-size: clamp(1.18rem, 2.25vw, 1.42rem);
  line-height: 1.7;
}

.iyd-event-page .iyd2026-experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.15rem, 3.2vw, 1.65rem);
}

.iyd-event-page .iyd2026-experience__cell {
  padding: 0.65rem 0.5rem 0.85rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.iyd-event-page .iyd2026-experience__circle {
  width: min(100%, 248px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--iyd2026-green-bright);
  box-sizing: border-box;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.iyd-event-page .iyd2026-experience__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iyd-event-page .iyd2026-experience__caption {
  text-align: center;
  font-size: clamp(0.95rem, 2.1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0.85rem 0.35rem 0;
  padding: 0 0.15rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 2px 14px rgba(0, 0, 0, 0.8);
}

/* ========== Spectrum ========== */
.iyd-event-page .iyd2026-spectrum {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
}

.iyd-event-page .iyd2026-spectrum__bg {
  position: absolute;
  inset: 0;
  background: #121212 url("../images/iyd2026/iyd2026-spectrum.png") center center / cover no-repeat;
  filter: none;
  transform: none;
  z-index: 0;
}

.iyd-event-page .iyd2026-spectrum__wash {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

.iyd-event-page .iyd2026-spectrum__inner {
  position: relative;
  z-index: 4;
  max-width: 1050px;
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.1rem);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 3px 22px rgba(0, 0, 0, 0.72);
}

.iyd-event-page .iyd2026-spectrum__title {
  font-size: clamp(2.35rem, 5.6vw, 3.45rem);
  margin: 0 0 1.65rem;
  color: #fff;
}

.iyd-event-page .iyd2026-spectrum__taglines {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2.15rem;
}

.iyd-event-page .iyd2026-spectrum__tagline {
  font-size: clamp(0.95rem, 2vw, 1.14rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
}

.iyd-event-page .iyd2026-spectrum__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.iyd-event-page .iyd2026-spectrum__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 0.5rem 1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.iyd-event-page .iyd2026-spectrum__circle {
  width: min(100%, 248px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(245, 240, 230, 0.9);
  box-sizing: border-box;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.iyd-event-page .iyd2026-spectrum .cta-button--iyd-lime {
  min-height: 70px;
  padding: 1.05rem 2.2rem;
  font-size: clamp(0.92rem, 1.9vw, 1.08rem);
}

.iyd-event-page .iyd2026-spectrum__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== Summit ========== */
.iyd-event-page .iyd2026-summit {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
}

.iyd-event-page .iyd2026-summit__bg {
  position: absolute;
  inset: 0;
  background-color: #1a0a0a;
  background-image: url("../images/iyd2026/iyd2026-summit.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.iyd-event-page .iyd2026-summit__wash {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  z-index: 1;
}

.iyd-event-page .iyd2026-summit__inner {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
}

.iyd-event-page .iyd2026-summit__top {
  display: grid;
  grid-template-columns: 1fr min(38vw, 360px);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.iyd-event-page .iyd2026-summit__copy {
  padding: clamp(1.35rem, 3.2vw, 2rem);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 3px 24px rgba(0, 0, 0, 0.75);
}

.iyd-event-page .iyd2026-summit__headline {
  margin: 0 0 1.35rem;
  line-height: 1.12;
}

.iyd-event-page .iyd2026-summit__headline-strong {
  display: block;
  font-size: clamp(1.22rem, 2.75vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8f0b8;
  max-width: 22em;
}

.iyd-event-page .iyd2026-summit__miami {
  display: inline-block;
  font-size: clamp(2.85rem, 6.8vw, 4.25rem);
  color: var(--iyd2026-coral);
  margin-top: 0.15em;
  transform: rotate(-3deg);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 3px 20px rgba(0, 0, 0, 0.55);
}

.iyd-event-page .iyd2026-summit .cta-button--iyd-lime {
  min-height: 70px;
  padding: 1.05rem 2.25rem;
  font-size: clamp(0.92rem, 1.9vw, 1.08rem);
}

.iyd-event-page .iyd2026-summit__portrait {
  padding: 0.75rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
  justify-self: end;
}

.iyd-event-page .iyd2026-summit__ring {
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--iyd2026-coral);
  aspect-ratio: 1;
  max-width: 360px;
  margin-left: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.iyd-event-page .iyd2026-summit__ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iyd-event-page .iyd2026-summit__hotel-block {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.92), 0 2px 16px rgba(0, 0, 0, 0.65);
}

.iyd-event-page .iyd2026-summit__hotel-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
}

.iyd-event-page .iyd2026-summit__hotel-link:hover {
  opacity: 0.92;
}

.iyd-event-page .iyd2026-summit__hilton-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 0.55rem 1.85rem 0.5rem;
  background: rgba(0, 0, 0, 0.5);
}

.iyd-event-page .iyd2026-summit__hilton-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 4vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.iyd-event-page .iyd2026-summit__hilton-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  margin-top: 0.35rem;
  opacity: 0.95;
}

/* ========== Partner strip ========== */
.iyd-event-page .iyd2026-partner-strip {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
  text-align: center;
  overflow: hidden;
}

.iyd-event-page .iyd2026-partner-strip__bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d url("../images/iyd2026/iyd2026-partner.png") center 30% / cover no-repeat;
  z-index: 0;
}

.iyd-event-page .iyd2026-partner-strip__wash {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.iyd-event-page .iyd2026-partner-strip__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--iyd-foliage-rail-width);
  background-image: var(--iyd-foliage-img);
  background-repeat: repeat-y;
  background-size: 108% auto;
  background-position: 34% 0;
  opacity: var(--iyd-foliage-opacity);
  filter: brightness(1.14) saturate(1.08);
  z-index: 3;
  pointer-events: none;
}

.iyd-event-page .iyd2026-partner-strip__rail--left {
  left: 0;
}

.iyd-event-page .iyd2026-partner-strip__rail--right {
  right: 0;
  transform: scaleX(-1);
}

.iyd-event-page .iyd2026-partner-strip__inner {
  position: relative;
  z-index: 4;
  max-width: 480px;
  margin: 0 auto;
}

.iyd-event-page .iyd2026-partner-strip__link {
  display: inline-block;
  line-height: 0;
}

.iyd-event-page .iyd2026-partner-strip__art {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .iyd-event-page .iyd2026-journey__inner {
    grid-template-columns: 1fr;
  }

  .iyd-event-page .iyd2026-experience__inner {
    grid-template-columns: 1fr;
  }

  .iyd-event-page .iyd2026-spectrum__cols {
    grid-template-columns: 1fr;
  }

  .iyd-event-page .iyd2026-summit__top {
    grid-template-columns: 1fr;
  }

  .iyd-event-page .iyd2026-summit__ring {
    margin: 0 auto;
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .iyd-event-page .iyd2026-section--framed::before,
  .iyd-event-page .iyd2026-section--framed::after {
    width: min(72px, 14vw);
  }

  .iyd-event-page .iyd2026-hero__rail {
    width: min(72px, 14vw);
  }
}
