.poker-nights-page {
  background: var(--color-charcoal);
}

.poker-nights-page .pn-hero {
  position: relative;
  isolation: isolate;
  min-height: 43.75rem;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--color-forest-deep);
}

.poker-nights-page .pn-hero__image,
.poker-nights-page .pn-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poker-nights-page .pn-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.poker-nights-page .pn-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 36, 29, 0.72) 0%, rgba(11, 36, 29, 0.48) 47%, rgba(23, 22, 20, 0.3) 100%);
}

.poker-nights-page .pn-hero__grid,
.poker-nights-page .pn-hosted__grid,
.poker-nights-page .pn-dining__grid,
.poker-nights-page .pn-house__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  min-width: 0;
}

.poker-nights-page .pn-hero__grid {
  align-items: end;
  padding-block: 7rem 4rem;
}

.poker-nights-page .pn-hero__copy {
  grid-column: 1 / span 7;
  min-width: 0;
  max-width: 43rem;
}

.poker-nights-page .pn-hero__copy .lead {
  max-width: 36rem;
}

.poker-nights-page .pn-hero__actions {
  margin-top: var(--space-5);
}

.poker-nights-page .pn-hero__note {
  grid-column: 9 / span 4;
  align-self: end;
  min-width: 0;
  padding: var(--space-5);
  border: 1px solid var(--color-line-dark);
  background: rgba(11, 36, 29, 0.88);
  box-shadow: var(--shadow-elevated);
}

.poker-nights-page .pn-hero__note h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.poker-nights-page .pn-suit {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-brass);
  font-size: 1.5rem;
  line-height: 1;
}

.poker-nights-page .pn-suit--small {
  font-size: 1rem;
}

.poker-nights-page .pn-rhythm-intro__heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  min-width: 0;
  margin-bottom: var(--space-7);
}

.poker-nights-page .pn-rhythm-intro__heading > div:first-child {
  grid-column: 1 / span 6;
  min-width: 0;
  max-width: 43rem;
}

.poker-nights-page .pn-rhythm-intro__heading .lead {
  max-width: 37rem;
}

.poker-nights-page .pn-rhythm-intro__rule {
  grid-column: 7 / span 2;
  width: 1px;
  min-width: 1px;
  background: var(--color-brass);
}

.poker-nights-page .pn-experience-cards,
.poker-nights-page .pn-timeline,
.poker-nights-page .pn-marker-grid,
.poker-nights-page .pn-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  min-width: 0;
}

.poker-nights-page .pn-experience-card,
.poker-nights-page .pn-marker,
.poker-nights-page .pn-decision {
  min-width: 0;
  padding: var(--space-5);
  border: 1px solid var(--color-line-dark);
  background: var(--color-espresso);
}

.poker-nights-page .pn-experience-card {
  border-top-color: var(--color-brass);
}

.poker-nights-page .pn-experience-card--forest,
.poker-nights-page .pn-marker--upper {
  background: var(--color-forest);
}

.poker-nights-page .pn-experience-card h3 a {
  text-decoration: none;
}

.poker-nights-page .pn-hosted__grid {
  align-items: start;
}

.poker-nights-page .pn-hosted__figure {
  grid-column: 1 / span 5;
  min-width: 0;
  margin-top: -2rem;
}

.poker-nights-page .pn-hosted__figure img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.poker-nights-page .pn-hosted__copy {
  grid-column: 7 / span 6;
  min-width: 0;
  max-width: 39rem;
}

.poker-nights-page .pn-hosted__copy > .lead {
  max-width: 38rem;
}

.poker-nights-page .pn-entry-note {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--color-parchment);
  color: var(--color-ink);
}

.poker-nights-page .pn-entry-note > * {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-entry-note .meta {
  color: color-mix(in srgb, var(--color-ink) 68%, var(--color-brass));
}

.poker-nights-page .pn-scorecard {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 0;
  margin-top: var(--space-6);
}

.poker-nights-page .pn-scorecard > * {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-scorecard dl {
  margin: 0;
  border-top: 1px solid var(--color-line-dark);
}

.poker-nights-page .pn-scorecard dl > div {
  display: grid;
  grid-template-columns: minmax(5rem, 0.35fr) minmax(0, 1fr);
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-line-dark);
}

.poker-nights-page .pn-scorecard dt {
  min-width: 0;
  color: var(--color-parchment);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poker-nights-page .pn-scorecard dd {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-text-link {
  color: var(--color-parchment);
  font-weight: 700;
}

.poker-nights-page .pn-night-rhythm__intro {
  width: 50%;
  min-width: 0;
  max-width: 43rem;
  margin-bottom: var(--space-7);
}

.poker-nights-page .pn-night-rhythm__intro .lead {
  max-width: 38rem;
}

.poker-nights-page .pn-timeline__item {
  min-width: 0;
  min-height: 17rem;
  padding: var(--space-5);
  border-left: 1px solid var(--color-brass);
  background: var(--color-espresso);
}

.poker-nights-page .pn-timeline__item--accent {
  border-top: 1px solid var(--color-brass);
}

.poker-nights-page .pn-timeline__item--late {
  transform: translateY(2.5rem);
  background: var(--color-espresso);
}

.poker-nights-page .pn-timeline__number {
  display: block;
  margin-bottom: var(--space-5);
  color: var(--color-brass);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poker-nights-page .pn-night-rhythm__action {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  margin-top: var(--space-7);
}

.poker-nights-page .pn-dining__grid {
  align-items: start;
}

.poker-nights-page .pn-dining__copy {
  grid-column: 1 / span 5;
  min-width: 0;
  max-width: 34rem;
  color: var(--color-ink);
}

.poker-nights-page .pn-dining__copy .lead {
  max-width: 33rem;
}

.poker-nights-page .pn-dining__pull {
  max-width: 24rem;
  margin-top: var(--space-6);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.15;
}

.poker-nights-page .pn-dining__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  min-width: 0;
  margin-top: var(--space-6);
}

.poker-nights-page .pn-dining__details > div {
  min-width: 0;
}

.poker-nights-page .pn-dining__details p {
  margin-bottom: 0;
}

.poker-nights-page .pn-dining__decision {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
  margin-top: var(--space-6);
}

.poker-nights-page .pn-dining__decision > * {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-dining__actions {
  margin-top: var(--space-2);
}

.poker-nights-page .pn-dining__figure {
  grid-column: 7 / span 6;
  min-width: 0;
  margin-top: -2rem;
}

.poker-nights-page .pn-dining__figure img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.poker-nights-page .pn-house__grid {
  align-items: start;
}

.poker-nights-page .pn-house__intro {
  grid-column: 1 / span 5;
  min-width: 0;
  max-width: 34rem;
}

.poker-nights-page .pn-house__intro .lead {
  max-width: 33rem;
}

.poker-nights-page .pn-accordion {
  grid-column: 7 / span 5;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 0;
  max-width: 40rem;
}

.poker-nights-page .pn-accordion__item {
  min-width: 0;
  border-top: 1px solid var(--color-brass);
  border-bottom: 1px solid var(--color-line-dark);
}

.poker-nights-page .pn-accordion__item h3 {
  margin: 0;
}

.poker-nights-page .pn-accordion__item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  min-height: 3.5rem;
  padding: var(--space-4) 0;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.1;
  text-align: left;
  transition: color var(--transition-base);
}

.poker-nights-page .pn-accordion__item button:hover {
  color: var(--color-brass);
}

.poker-nights-page .pn-accordion__item button span {
  flex: 0 0 auto;
  margin-left: var(--space-4);
  color: var(--color-brass);
  font-family: var(--font-body);
  font-size: 1.4rem;
}

.poker-nights-page .pn-accordion__item button[aria-expanded="true"] span {
  font-size: 0;
}

.poker-nights-page .pn-accordion__item button[aria-expanded="true"] span::after {
  content: "−";
  font-size: 1.4rem;
}

.poker-nights-page .pn-accordion__panel {
  max-width: 37rem;
  padding-bottom: var(--space-5);
}

.poker-nights-page .pn-accordion__panel .meta {
  display: block;
  margin-bottom: var(--space-3);
}

.poker-nights-page .pn-accordion__panel p:last-of-type {
  margin-bottom: var(--space-4);
}

.poker-nights-page .pn-accordion__label-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  min-width: 0;
  margin-bottom: var(--space-4);
}

.poker-nights-page .pn-accordion__label-row span {
  min-width: 0;
  border: 1px solid var(--color-line-dark);
  padding: var(--space-1) var(--space-2);
  color: var(--color-parchment);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poker-nights-page .pn-difference__intro {
  width: 58.333%;
  min-width: 0;
  max-width: 46rem;
  margin-bottom: var(--space-7);
}

.poker-nights-page .pn-difference__intro .lead {
  max-width: 39rem;
}

.poker-nights-page .pn-marker {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-nights-page .pn-marker > * {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-marker--lower {
  transform: translateY(1.75rem);
}

.poker-nights-page .pn-marker--upper {
  transform: translateY(-0.75rem);
}

.poker-nights-page .pn-difference__action {
  margin-top: var(--space-7);
}

.poker-nights-page .pn-next__intro {
  width: 66.666%;
  min-width: 0;
  max-width: 45rem;
  margin: 0 auto var(--space-7);
  text-align: center;
}

.poker-nights-page .pn-next__intro .lead {
  max-width: 37rem;
  margin-inline: auto;
}

.poker-nights-page .pn-decision {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 0;
}

.poker-nights-page .pn-decision > * {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-decision .button {
  width: fit-content;
  margin-top: auto;
}

.poker-nights-page .pn-decision--primary {
  border-top-color: var(--color-brass);
}

.poker-nights-page .pn-closing__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  width: 66.666%;
  min-width: 0;
  max-width: 47.5rem;
  margin-inline: auto;
  text-align: center;
}

.poker-nights-page .pn-closing__copy > * {
  min-width: 0;
  margin: 0;
}

.poker-nights-page .pn-closing__copy .lead {
  max-width: 45rem;
}

.poker-nights-page .pn-closing__copy .button {
  margin-top: var(--space-2);
}

@media (max-width: 68.6875rem) {
  .poker-nights-page .pn-hero {
    min-height: 41rem;
  }

  .poker-nights-page .pn-hero__grid,
  .poker-nights-page .pn-hosted__grid,
  .poker-nights-page .pn-dining__grid,
  .poker-nights-page .pn-house__grid,
  .poker-nights-page .pn-rhythm-intro__heading {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 1rem;
  }

  .poker-nights-page .pn-hero__copy {
    grid-column: 1 / span 6;
  }

  .poker-nights-page .pn-hero__note {
    grid-column: 1 / span 5;
    margin-top: var(--space-6);
  }

  .poker-nights-page .pn-rhythm-intro__heading > div:first-child {
    grid-column: 1 / span 5;
  }

  .poker-nights-page .pn-rhythm-intro__rule {
    display: none;
  }

  .poker-nights-page .pn-experience-cards,
  .poker-nights-page .pn-timeline,
  .poker-nights-page .pn-marker-grid,
  .poker-nights-page .pn-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .poker-nights-page .pn-hosted__figure {
    grid-column: 1 / span 3;
    margin-top: 0;
  }

  .poker-nights-page .pn-hosted__copy {
    grid-column: 5 / span 4;
  }

  .poker-nights-page .pn-night-rhythm__intro {
    width: 62.5%;
  }

  .poker-nights-page .pn-timeline__item--late,
  .poker-nights-page .pn-marker--lower,
  .poker-nights-page .pn-marker--upper {
    transform: none;
  }

  .poker-nights-page .pn-timeline__item {
    min-height: 0;
  }

  .poker-nights-page .pn-night-rhythm__action {
    justify-content: flex-start;
  }

  .poker-nights-page .pn-dining__copy {
    grid-column: 1 / span 4;
  }

  .poker-nights-page .pn-dining__figure {
    grid-column: 5 / span 4;
    margin-top: 0;
  }

  .poker-nights-page .pn-dining__details {
    grid-template-columns: 1fr;
  }

  .poker-nights-page .pn-house__intro {
    grid-column: 1 / span 5;
  }

  .poker-nights-page .pn-accordion {
    grid-column: 1 / span 7;
    margin-top: var(--space-6);
  }

  .poker-nights-page .pn-difference__intro {
    width: 75%;
  }

  .poker-nights-page .pn-next__intro,
  .poker-nights-page .pn-closing__copy {
    width: 75%;
  }
}

@media (max-width: 47.9375rem) {
  .poker-nights-page .pn-hero {
    min-height: 36rem;
  }

  .poker-nights-page .pn-hero__image {
    object-position: 58% center;
  }

  .poker-nights-page .pn-hero__shade {
    background: linear-gradient(0deg, rgba(11, 36, 29, 0.88) 0%, rgba(11, 36, 29, 0.57) 52%, rgba(11, 36, 29, 0.16) 100%);
  }

  .poker-nights-page .pn-hero__grid,
  .poker-nights-page .pn-hosted__grid,
  .poker-nights-page .pn-dining__grid,
  .poker-nights-page .pn-house__grid,
  .poker-nights-page .pn-rhythm-intro__heading {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .poker-nights-page .pn-hero__grid {
    padding-block: 8rem var(--space-5);
  }

  .poker-nights-page .pn-hero__copy,
  .poker-nights-page .pn-hero__note,
  .poker-nights-page .pn-rhythm-intro__heading > div:first-child,
  .poker-nights-page .pn-hosted__figure,
  .poker-nights-page .pn-hosted__copy,
  .poker-nights-page .pn-dining__copy,
  .poker-nights-page .pn-dining__figure,
  .poker-nights-page .pn-house__intro,
  .poker-nights-page .pn-accordion {
    grid-column: 1;
    max-width: none;
  }

  .poker-nights-page .pn-hero__copy .lead,
  .poker-nights-page .pn-rhythm-intro__heading .lead,
  .poker-nights-page .pn-hosted__copy > .lead,
  .poker-nights-page .pn-dining__copy .lead,
  .poker-nights-page .pn-house__intro .lead,
  .poker-nights-page .pn-night-rhythm__intro .lead,
  .poker-nights-page .pn-difference__intro .lead,
  .poker-nights-page .pn-next__intro .lead,
  .poker-nights-page .pn-closing__copy .lead {
    max-width: none;
  }

  .poker-nights-page .pn-hero__actions,
  .poker-nights-page .pn-dining__actions {
    flex-direction: column;
  }

  .poker-nights-page .pn-hero__actions .button,
  .poker-nights-page .pn-dining__actions .button {
    width: 100%;
  }

  .poker-nights-page .pn-hero__note {
    display: none;
  }

  .poker-nights-page .pn-rhythm-intro__heading {
    margin-bottom: var(--space-6);
  }

  .poker-nights-page .pn-experience-cards,
  .poker-nights-page .pn-timeline,
  .poker-nights-page .pn-marker-grid,
  .poker-nights-page .pn-decision-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
  }

  .poker-nights-page .pn-hosted__copy {
    display: contents;
  }

  .poker-nights-page .pn-hosted__copy > .eyebrow,
  .poker-nights-page .pn-hosted__copy > h2,
  .poker-nights-page .pn-hosted__copy > .lead {
    grid-column: 1;
  }

  .poker-nights-page .pn-hosted__figure {
    order: 4;
  }

  .poker-nights-page .pn-entry-note {
    grid-column: 1;
    order: 5;
    margin-top: 0;
  }

  .poker-nights-page .pn-scorecard {
    grid-column: 1;
    order: 6;
    margin-top: 0;
  }

  .poker-nights-page .pn-scorecard dl > div {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .poker-nights-page .pn-night-rhythm__intro,
  .poker-nights-page .pn-difference__intro,
  .poker-nights-page .pn-next__intro,
  .poker-nights-page .pn-closing__copy {
    width: 100%;
    max-width: none;
  }

  .poker-nights-page .pn-night-rhythm__intro {
    margin-bottom: var(--space-6);
  }

  .poker-nights-page .pn-timeline__item {
    min-height: 0;
    padding: var(--space-5) 0;
    border-left: 0;
    border-top: 1px solid var(--color-brass);
    background: transparent;
  }

  .poker-nights-page .pn-timeline__number {
    margin-bottom: var(--space-3);
  }

  .poker-nights-page .pn-night-rhythm__action .button,
  .poker-nights-page .pn-difference__action,
  .poker-nights-page .pn-decision .button,
  .poker-nights-page .pn-closing__copy .button {
    width: 100%;
  }

  .poker-nights-page .pn-dining__figure {
    order: 2;
  }

  .poker-nights-page .pn-dining__copy {
    order: 1;
  }

  .poker-nights-page .pn-dining__details {
    gap: var(--space-5);
  }

  .poker-nights-page .pn-dining__pull {
    max-width: none;
  }

  .poker-nights-page .pn-accordion {
    margin-top: 0;
    gap: var(--space-3);
  }

  .poker-nights-page .pn-accordion__item button {
    min-height: 4rem;
    padding-inline: var(--space-4);
  }

  .poker-nights-page .pn-accordion__panel {
    padding-inline: var(--space-4);
  }

  .poker-nights-page .pn-difference__intro,
  .poker-nights-page .pn-next__intro {
    margin-bottom: var(--space-6);
  }

  .poker-nights-page .pn-next__intro,
  .poker-nights-page .pn-closing__copy {
    text-align: center;
  }

  .poker-nights-page .pn-decision .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poker-nights-page *,
  .poker-nights-page *::before,
  .poker-nights-page *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
