main {
  padding-bottom: var(--space-16);
}
.hero-meta {
  max-width: 40rem;
}
.hero-actions .btn {
  flex-shrink: 0;
}
.poker-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.poker-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}
.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--color-accent));
  box-shadow: 0 0 0 1px rgba(214, 206, 195, 0.7);
}
.image-col,
.content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.poker-cta {
  border-radius: 24px;
  background: linear-gradient(135deg, #faf7f2, #f2ece6);
  box-shadow: var(--shadow-medium);
}
.poker-cta h2 {
  margin-bottom: var(--space-3);
}
@media (max-width: 768px) {
  .poker-cta {
    text-align: left;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
