.texas-holdem-page {
  background: var(--surface-page);
}

.texas-holdem-page .th-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-5);
  min-width: 0;
}

.texas-holdem-page .th-hero {
  position: relative;
  isolation: isolate;
  min-height: 47.5rem;
  display: grid;
  grid-template-columns: minmax(var(--gutter), 1fr) minmax(0, 90rem) minmax(var(--gutter), 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--surface-page);
}

.texas-holdem-page .th-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.texas-holdem-page .th-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 19, 19, 0.76) 0%, rgba(16, 19, 19, 0.48) 40%, rgba(16, 19, 19, 0.1) 67%, rgba(16, 19, 19, 0.18) 100%);
}

.texas-holdem-page .th-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  transition: transform var(--transition-medium);
}

.texas-holdem-page .th-hero:hover .th-hero__media img {
  transform: scale(1.02) translateX(-1%);
}

.texas-holdem-page .th-hero__inner {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  padding-block: clamp(7rem, 13vw, 12rem) var(--space-9);
}

.texas-holdem-page .th-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  grid-column: 2 / span 5;
  min-width: 0;
  max-width: 42rem;
}

.texas-holdem-page .th-hero__copy > * {
  min-width: 0;
  margin: 0;
}

.texas-holdem-page .th-hero__title {
  max-width: 13ch;
  font-size: clamp(3.5rem, 6.8vw, 6.75rem);
  line-height: 0.88;
}

.texas-holdem-page .th-hero__deck {
  max-width: 41ch;
  color: var(--color-desert-sand);
  font-size: var(--text-lg);
}

.texas-holdem-page .th-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-5);
  min-width: 0;
}

.texas-holdem-page .th-actions > * {
  min-width: 0;
}

.texas-holdem-page .th-hero__status {
  max-width: 48ch;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.texas-holdem-page .th-section-label {
  display: block;
  margin: 0;
  color: var(--color-steel-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.texas-holdem-page .th-offline {
  background: var(--surface-raised);
}

.texas-holdem-page .th-offline__copy {
  grid-column: 2 / span 5;
  min-width: 0;
}

.texas-holdem-page .th-offline__copy h2 {
  max-width: 15ch;
}

.texas-holdem-page .th-offline__copy p {
  max-width: 64ch;
}

.texas-holdem-page .th-offline__rail {
  grid-column: 8 / span 4;
  min-width: 0;
  align-self: start;
  padding-top: var(--space-2);
}

.texas-holdem-page .th-definition-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border-light);
}

.texas-holdem-page .th-definition-list > div {
  min-width: 0;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast), padding-inline var(--transition-fast);
}

.texas-holdem-page .th-definition-list > div:hover {
  padding-inline-start: var(--space-3);
  border-color: var(--color-burnt-copper);
}

.texas-holdem-page .th-definition-list dt {
  margin-bottom: var(--space-2);
  color: var(--color-desert-sand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.texas-holdem-page .th-definition-list dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.texas-holdem-page .th-offline__quote {
  grid-column: 2 / span 5;
  min-width: 0;
  margin: var(--space-7) 0 0;
}

.texas-holdem-page .th-offline__quote blockquote {
  max-width: 17ch;
}

.texas-holdem-page .th-offline__quote p {
  max-width: 61ch;
  color: var(--text-secondary);
}

.texas-holdem-page .th-hand {
  background: var(--surface-blue);
}

.texas-holdem-page .th-hand__intro {
  grid-column: 2 / span 4;
  min-width: 0;
  padding-top: var(--space-2);
}

.texas-holdem-page .th-hand__intro h2 {
  max-width: 14ch;
}

.texas-holdem-page .th-hand__intro p {
  max-width: 58ch;
}

.texas-holdem-page .th-hand__index {
  display: block;
  margin-top: var(--space-5);
  color: var(--color-burnt-copper);
  font-family: var(--font-heading);
  font-size: var(--heading-3);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.texas-holdem-page .th-hand__figure {
  grid-column: 7 / span 5;
  min-width: 0;
  margin: 0;
}

.texas-holdem-page .th-hand__figure .media-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.texas-holdem-page .th-hand__figure img {
  object-position: center;
}

.texas-holdem-page .th-stage-board {
  display: grid;
  grid-column: 2 / span 10;
  grid-template-columns: 1fr;
  min-width: 0;
  margin: var(--space-8) 0 0;
  border-top: 1px solid var(--color-border-light);
}

.texas-holdem-page .th-stage {
  display: grid;
  grid-template-columns: minmax(3.5rem, 1fr) minmax(7rem, 2fr) minmax(0, 6fr);
  align-items: start;
  min-width: 0;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast), padding-inline var(--transition-fast);
}

.texas-holdem-page .th-stage > * {
  min-width: 0;
}

.texas-holdem-page .th-stage:hover,
.texas-holdem-page .th-stage:focus-within {
  border-left: 2px solid var(--color-burnt-copper);
  padding-inline-start: var(--space-3);
}

.texas-holdem-page .th-stage__number {
  color: var(--color-burnt-copper);
  font-family: var(--font-heading);
  font-size: var(--heading-3);
  font-weight: 600;
  line-height: 1;
}

.texas-holdem-page .th-stage h3 {
  margin: 0;
  color: var(--color-desert-sand);
  font-size: var(--heading-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.texas-holdem-page .th-stage p {
  max-width: 58ch;
  margin: 0;
  color: var(--text-secondary);
}

.texas-holdem-page .th-stage-board[data-ready="false"] .th-stage {
  opacity: 0;
  transform: translateY(0.75rem);
}

.texas-holdem-page .th-stage-board[data-ready="true"] .th-stage {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition-slow), transform var(--transition-slow), border-color var(--transition-fast), padding-inline var(--transition-fast);
}

.texas-holdem-page .th-stage-board[data-ready="true"] .th-stage:nth-child(2) { transition-delay: 70ms; }
.texas-holdem-page .th-stage-board[data-ready="true"] .th-stage:nth-child(3) { transition-delay: 140ms; }
.texas-holdem-page .th-stage-board[data-ready="true"] .th-stage:nth-child(4) { transition-delay: 210ms; }
.texas-holdem-page .th-stage-board[data-ready="true"] .th-stage:nth-child(5) { transition-delay: 280ms; }

.texas-holdem-page .th-hand__closing {
  grid-column: 2 / span 7;
  min-width: 0;
  margin-top: var(--space-6);
}

.texas-holdem-page .th-hand__closing p {
  max-width: 66ch;
}

.texas-holdem-page .th-rhythm__intro {
  grid-column: 2 / span 5;
  min-width: 0;
}

.texas-holdem-page .th-rhythm__intro h2,
.texas-holdem-page .th-rhythm__intro p {
  max-width: 64ch;
}

.texas-holdem-page .th-guidance {
  display: grid;
  grid-column: 2 / span 10;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  min-width: 0;
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 2px solid var(--color-burnt-copper);
}

.texas-holdem-page .th-guidance > article {
  min-width: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast);
}

.texas-holdem-page .th-guidance > article:hover {
  border-color: var(--color-burnt-copper);
}

.texas-holdem-page .th-guidance h3 {
  margin-bottom: var(--space-4);
}

.texas-holdem-page .th-guidance p {
  max-width: 48ch;
}

.texas-holdem-page .th-guidance__room-link {
  display: block;
  margin-top: var(--space-5);
}

.texas-holdem-page .th-journey {
  background: var(--surface-raised);
}

.texas-holdem-page .th-journey__copy {
  grid-column: 2 / span 4;
  min-width: 0;
  align-self: center;
}

.texas-holdem-page .th-journey__copy h2 {
  max-width: 13ch;
}

.texas-holdem-page .th-journey__copy p {
  max-width: 56ch;
}

.texas-holdem-page .th-journey__media {
  grid-column: 6 / span 7;
  min-width: 0;
  margin: 0;
}

.texas-holdem-page .th-journey__media .media-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.texas-holdem-page .th-journey__media img {
  object-position: center;
  transition: transform var(--transition-medium);
}

.texas-holdem-page .th-journey__media:hover img {
  transform: scale(1.025) translateX(-1%);
}

.texas-holdem-page .th-journey-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-5) 0;
  color: var(--color-steel-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.55;
  text-transform: uppercase;
}

.texas-holdem-page .th-journey-rail span {
  min-width: 0;
}

.texas-holdem-page .th-journey-rail span:not(:last-child)::after {
  content: "→";
  margin-left: var(--space-2);
  color: var(--color-steel-muted);
}

.texas-holdem-page .th-journey-rail .is-current {
  color: var(--color-desert-sand);
}

.texas-holdem-page .th-journey-rail .is-current::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  margin-right: var(--space-2);
  vertical-align: middle;
  background: var(--color-burnt-copper);
}

.texas-holdem-page .th-journey__note {
  padding-left: var(--space-4);
  border-left: 2px solid var(--color-burnt-copper);
}

.texas-holdem-page .th-journey__note p {
  max-width: 52ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.texas-holdem-page .th-paths {
  background: var(--surface-blue);
}

.texas-holdem-page .th-paths__intro {
  grid-column: 2 / span 4;
  min-width: 0;
}

.texas-holdem-page .th-paths__intro h2,
.texas-holdem-page .th-paths__intro p {
  max-width: 60ch;
}

.texas-holdem-page .th-path-list {
  display: grid;
  grid-column: 2 / span 10;
  grid-template-columns: 1fr;
  min-width: 0;
  margin-top: var(--space-7);
  border-top: 1px solid var(--color-border-light);
}

.texas-holdem-page .th-path-row {
  display: grid;
  grid-template-columns: minmax(8rem, 2fr) minmax(0, 5fr) minmax(8.5rem, 2fr);
  align-items: center;
  gap: var(--space-5);
  min-width: 0;
  min-height: 8.5rem;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border-light);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition-fast), padding-inline var(--transition-fast), background-color var(--transition-fast);
}

.texas-holdem-page .th-path-row > * {
  min-width: 0;
}

.texas-holdem-page .th-path-row:hover,
.texas-holdem-page .th-path-row:focus-visible {
  border-left: 2px solid var(--color-burnt-copper);
  padding-inline-start: var(--space-3);
  background: rgba(16, 19, 19, 0.15);
}

.texas-holdem-page .th-path-row--contact {
  border-bottom-color: var(--color-burnt-copper);
}

.texas-holdem-page .th-path-row__label {
  color: var(--color-steel-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.texas-holdem-page .th-path-row__content h3 {
  margin-bottom: var(--space-2);
}

.texas-holdem-page .th-path-row__content p {
  max-width: 56ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.texas-holdem-page .th-path-row__action {
  justify-self: start;
  color: var(--color-desert-sand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.texas-holdem-page .th-path-row__action::after {
  content: "›";
  margin-left: var(--space-2);
  color: var(--color-burnt-copper);
  font-size: 1.5em;
  vertical-align: -0.08em;
}

.texas-holdem-page .th-faq__field {
  grid-column: 2 / span 7;
  min-width: 0;
}

.texas-holdem-page .th-faq__field h2 {
  max-width: 18ch;
}

.texas-holdem-page .th-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-border-light);
}

.texas-holdem-page .th-faq-item {
  min-width: 0;
  border-bottom: 1px solid var(--color-border-light);
}

.texas-holdem-page .th-faq-item__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 4rem;
  padding: var(--space-4) 0;
  border: 0;
  background: transparent;
  color: var(--color-desert-sand);
  font-family: var(--font-heading);
  font-size: var(--heading-4);
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
}

.texas-holdem-page .th-faq-item__button span {
  min-width: 0;
}

.texas-holdem-page .th-faq-item__icon {
  justify-self: end;
  color: var(--color-burnt-copper);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.texas-holdem-page .th-faq-item__button[aria-expanded="true"] .th-faq-item__icon {
  transform: rotate(90deg);
}

.texas-holdem-page .th-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  min-width: 0;
  transition: grid-template-rows var(--transition-medium);
}

.texas-holdem-page .th-faq-item__panel[hidden] {
  display: none;
}

.texas-holdem-page .th-faq-item__panel-inner {
  min-width: 0;
  overflow: hidden;
}

.texas-holdem-page .th-faq-item__panel p {
  max-width: 60ch;
  margin: 0;
  padding: 0 0 var(--space-5);
  color: var(--text-secondary);
}

.texas-holdem-page .th-faq__note {
  grid-column: 9 / span 3;
  min-width: 0;
  align-self: start;
  margin-top: calc(var(--space-2) + var(--text-xs) * 1.2 + var(--space-2));
  padding: var(--space-5) 0 0 var(--space-4);
  border-top: 1px solid var(--color-border-light);
  border-left: 2px solid var(--color-burnt-copper);
}

.texas-holdem-page .th-faq__note p {
  max-width: 24ch;
  margin: 0;
  color: var(--color-desert-sand);
  font-family: var(--font-heading);
  font-size: var(--heading-3);
  font-weight: 600;
  line-height: 1.05;
}

.texas-holdem-page .th-final {
  padding-block: var(--space-8);
  background: var(--surface-page);
}

.texas-holdem-page .th-final__band {
  background: var(--surface-merlot);
}

.texas-holdem-page .th-final__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-5);
  min-width: 0;
  padding-block: clamp(4rem, 7vw, 7rem);
}

.texas-holdem-page .th-final__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  grid-column: 4 / span 6;
  min-width: 0;
  max-width: 46ch;
  margin-inline: auto;
  text-align: center;
}

.texas-holdem-page .th-final__copy > * {
  min-width: 0;
  margin: 0;
}

.texas-holdem-page .th-final__copy h2 {
  max-width: 14ch;
}

.texas-holdem-page .th-final__copy p {
  max-width: 46ch;
}

@media (max-width: 68.75rem) {
  .texas-holdem-page .th-hero {
    min-height: auto;
    display: block;
  }

  .texas-holdem-page .th-hero__media {
    position: relative;
    height: min(58vw, 40rem);
  }

  .texas-holdem-page .th-hero__media::after {
    background: rgba(16, 19, 19, 0.14);
  }

  .texas-holdem-page .th-hero__inner {
    padding-block: var(--space-7) var(--space-8);
    background: var(--surface-page);
  }

  .texas-holdem-page .th-hero__copy {
    grid-column: 1 / -1;
    max-width: 46rem;
  }

  .texas-holdem-page .th-offline__copy {
    grid-column: 2 / span 6;
  }

  .texas-holdem-page .th-offline__rail {
    grid-column: 9 / span 3;
  }

  .texas-holdem-page .th-hand__intro {
    grid-column: 2 / span 5;
  }

  .texas-holdem-page .th-hand__figure {
    grid-column: 8 / span 4;
  }

  .texas-holdem-page .th-stage-board {
    grid-column: 2 / span 10;
  }

  .texas-holdem-page .th-journey__copy {
    grid-column: 2 / span 5;
  }

  .texas-holdem-page .th-journey__media {
    grid-column: 7 / span 5;
  }
}

@media (max-width: 65.625rem) {
  .texas-holdem-page .th-hand__intro {
    grid-column: 2 / span 6;
  }

  .texas-holdem-page .th-hand__figure {
    grid-column: 2 / span 10;
    margin-top: var(--space-6);
  }

  .texas-holdem-page .th-stage-board {
    margin-top: var(--space-7);
  }

  .texas-holdem-page .th-journey__media {
    grid-column: 2 / span 10;
    grid-row: 1;
  }

  .texas-holdem-page .th-journey__copy {
    grid-column: 2 / span 8;
    grid-row: 2;
    margin-top: var(--space-7);
  }
}

@media (max-width: 63.75rem) {
  .texas-holdem-page .th-offline__copy {
    grid-column: 2 / span 7;
  }

  .texas-holdem-page .th-offline__rail {
    grid-column: 2 / span 10;
    margin-top: var(--space-6);
  }

  .texas-holdem-page .th-offline__quote {
    grid-column: 2 / span 7;
  }
}

@media (max-width: 61.25rem) {
  .texas-holdem-page .th-guidance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .texas-holdem-page .th-guidance > article:last-child {
    grid-column: 1 / -1;
  }

  .texas-holdem-page .th-faq__note {
    grid-column: 2 / span 10;
    grid-row: 1;
    margin-top: 0;
    margin-bottom: var(--space-6);
  }

  .texas-holdem-page .th-faq__field {
    grid-column: 2 / span 10;
    grid-row: 2;
  }
}

@media (max-width: 60rem) {
  .texas-holdem-page .th-path-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-3);
  }

  .texas-holdem-page .th-path-row__action {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 47.5rem) {
  .texas-holdem-page .th-grid,
  .texas-holdem-page .th-final__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .texas-holdem-page .th-hero__media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .texas-holdem-page .th-hero__media img {
    object-position: 60% center;
  }

  .texas-holdem-page .th-hero__inner {
    width: min(100% - (var(--gutter) * 2), var(--container-max));
    margin-inline: auto;
    padding-block: var(--space-6) var(--space-8);
  }

  .texas-holdem-page .th-hero__title {
    max-width: 11ch;
    font-size: clamp(3rem, 14vw, 3.5rem);
  }

  .texas-holdem-page .th-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .texas-holdem-page .th-actions .link-arrow {
    min-height: 2.75rem;
  }

  .texas-holdem-page .th-offline__copy,
  .texas-holdem-page .th-offline__rail,
  .texas-holdem-page .th-offline__quote,
  .texas-holdem-page .th-hand__intro,
  .texas-holdem-page .th-hand__figure,
  .texas-holdem-page .th-stage-board,
  .texas-holdem-page .th-hand__closing,
  .texas-holdem-page .th-rhythm__intro,
  .texas-holdem-page .th-guidance,
  .texas-holdem-page .th-journey__copy,
  .texas-holdem-page .th-journey__media,
  .texas-holdem-page .th-paths__intro,
  .texas-holdem-page .th-path-list,
  .texas-holdem-page .th-faq__field,
  .texas-holdem-page .th-faq__note,
  .texas-holdem-page .th-final__copy {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
  }

  .texas-holdem-page .th-offline__rail,
  .texas-holdem-page .th-offline__quote,
  .texas-holdem-page .th-hand__figure,
  .texas-holdem-page .th-stage-board,
  .texas-holdem-page .th-guidance,
  .texas-holdem-page .th-journey__copy,
  .texas-holdem-page .th-path-list,
  .texas-holdem-page .th-faq__field {
    margin-top: var(--space-6);
  }

  .texas-holdem-page .th-offline__copy h2,
  .texas-holdem-page .th-hand__intro h2,
  .texas-holdem-page .th-rhythm__intro h2,
  .texas-holdem-page .th-journey__copy h2,
  .texas-holdem-page .th-paths__intro h2,
  .texas-holdem-page .th-faq__field h2 {
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

  .texas-holdem-page .th-stage {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: var(--space-2) var(--space-3);
  }

  .texas-holdem-page .th-stage h3 {
    align-self: center;
  }

  .texas-holdem-page .th-stage p {
    grid-column: 1 / -1;
    max-width: 46ch;
  }

  .texas-holdem-page .th-guidance {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .texas-holdem-page .th-guidance > article:last-child {
    grid-column: 1;
  }

  .texas-holdem-page .th-journey__media {
    grid-row: 1;
    margin-top: 0;
  }

  .texas-holdem-page .th-journey__copy {
    grid-row: 2;
  }

  .texas-holdem-page .th-journey-rail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .texas-holdem-page .th-journey-rail span {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    padding-block: var(--space-2);
    border-bottom: 1px solid var(--color-border-light);
  }

  .texas-holdem-page .th-journey-rail span:not(:last-child)::after {
    content: none;
  }

  .texas-holdem-page .th-path-row {
    min-height: 0;
    padding: var(--space-5) 0;
  }

  .texas-holdem-page .th-faq__note {
    margin-bottom: 0;
  }

  .texas-holdem-page .th-final {
    padding-block: var(--space-7);
  }

  .texas-holdem-page .th-final__copy {
    align-items: flex-start;
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .texas-holdem-page .th-final__copy h2 {
    font-size: clamp(2.625rem, 12vw, 3rem);
  }
}

@media (max-width: 30rem) {
  .texas-holdem-page .th-actions .button {
    width: 100%;
  }

  .texas-holdem-page .th-final__copy .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .texas-holdem-page .th-hero:hover .th-hero__media img,
  .texas-holdem-page .th-journey__media:hover img {
    transform: none;
  }

  .texas-holdem-page .th-stage-board[data-ready="false"] .th-stage,
  .texas-holdem-page .th-stage-board[data-ready="true"] .th-stage {
    opacity: 1;
    transform: none;
  }
}
