.poker-split-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 240px;
  border-bottom: 3px solid var(--accent);
}

.poker-hero-text {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  align-items: center;
}

.poker-hero-text h1 {
  font-family: var(--faith-serif);
  font-size: 2.25rem;
  margin: 0;
  color: var(--text);
}

.poker-hero-visual {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.poker-hero-visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 10px;
}

.poker-content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.poker-content-wrap h2 {
  font-family: var(--faith-serif);
  font-size: 1.5rem;
  margin: 36px 0 12px;
  color: var(--accent);
}

.poker-content-wrap p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.poker-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.poker-variant-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.poker-variant-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--primary);
}

.poker-variant-card p {
  font-size: 0.9rem;
  margin: 0;
}

.poker-pull-quote {
  font-family: var(--faith-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  text-align: center;
  padding: 32px;
  margin: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.poker-image-band {
  margin: 32px 0;
  text-align: center;
}

.poker-image-band img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.spiritual-community-note {
  background: linear-gradient(135deg, rgba(42, 17, 24, 0.9), rgba(26, 11, 16, 0.95));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

.spiritual-community-note p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .poker-split-hero {
    grid-template-columns: 1fr;
  }

  .poker-variant-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .poker-hero-visual,
  .poker-content-wrap,
  .poker-image-band {
    overflow: hidden;
    max-width: 100%;
  }

  .poker-hero-visual img,
  .poker-image-band img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
  }
}
