.strategies-page .hero {
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.hero-note {
  color: var(--color-text-muted);
}

.hero-aside {
  display: flex;
  justify-content: flex-end;
}

.hero-aside-card {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  padding: var(--space-20);
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.35), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(129, 140, 248, 0.6);
}

.hero-aside-title {
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.hero-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-sm);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  margin-right: 8px;
}

.dot-basic {
  background: #22c55e;
}

.dot-esport {
  background: #f97316;
}

.dot-meta {
  background: #38bdf8;
}

.section-esport {
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.22), transparent 55%);
}

.esport-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 32px;
  align-items: stretch;
}

.esport-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.esport-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esport-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.esport-card {
  height: 100%;
}

.esport-cta {
  margin-top: 12px;
}

.playstyle-grid .card-body ol {
  padding-left: 1.25rem;
}

.section-solo-team {
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 55%);
}

.solo-team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}

.solo-team-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solo-team-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.solo-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solo-team-cta {
  margin-top: 8px;
}

.section-meta {
  position: relative;
}

.section-meta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.4), transparent 60%);
  pointer-events: none;
}

.section-meta > .container {
  position: relative;
  z-index: 1;
}

.top-games-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 32px;
  align-items: center;
}

.top-games-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.top-games-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-games-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-games-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resources-grid .card-body ul {
  margin-bottom: var(--space-12);
}

.resources-cta {
  margin-top: 8px;
}

.section-next {
  padding-top: var(--space-32);
  padding-bottom: var(--space-64);
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.next-main {
  flex: 1 1 260px;
}

.next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.strategies-grid .card,
.playstyle-grid .card,
.resources-grid .card {
  height: 100%;
}

@media (max-width: 1024px) {
  .hero-layout,
  .esport-layout,
  .solo-team-layout,
  .top-games-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-aside {
    justify-content: flex-start;
  }

  .hero-aside-card {
    max-width: 100%;
  }

  .solo-team-image-wrapper,
  .top-games-image-wrapper,
  .esport-image-wrapper {
    order: -1;
  }

  .next-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .next-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .top-games-links {
    flex-direction: column;
    align-items: stretch;
  }
}
