@charset "UTF-8";

.gameplay-grid-main {
  align-items: center;
}

.gameplay-figure {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: var(--shadow-sm);
}

.gameplay-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gameplay-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
}

.gameplay-course-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.gameplay-aside-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
}

@media (min-width: 900px) {
  .gameplay-figure {
    max-height: 420px;
  }
}
