body {
  background-color: var(--color-background);
}

.poker-layout {
  align-items: center;
}

.poker-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-medium);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--color-surface);
}

.poker-image-card--small {
  max-height: 220px;
}

.poker-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-inline {
  text-decoration: underline;
  text-decoration-color: rgba(227, 36, 59, 0.7);
  text-underline-offset: 2px;
}

.link-inline:hover {
  color: var(--color-primary-strong);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .poker-image-card--small {
    max-height: none;
  }
}
