.about-hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
  color: var(--color-text);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(224, 160, 75, 0.22), transparent 55%),
              radial-gradient(circle at bottom right, rgba(4, 6, 24, 0.9), #050612);
  z-index: -2;
}

.about-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.about-hero__text {
  max-width: 640px;
}

.about-hero__eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-strong);
  margin-bottom: var(--space-2);
}

.about-hero__lead {
  font-size: var(--font-size-lg);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.about-hero__media {
  max-width: 460px;
  justify-self: end;
}

.about-hero__image {
  box-shadow: var(--shadow-strong);
}

.about-section-grid {
  align-items: flex-start;
}

.about-budapest__image,
.about-team__image {
  height: 100%;
  min-height: 260px;
}

.about-budapest__image img,
.about-team__image img {
  object-fit: cover;
  height: 100%;
}

.about-poker__highlights .card__body p:last-child {
  margin-bottom: 0;
}

.about-testimonials__header {
  max-width: 640px;
  margin: 0 auto var(--space-8) auto;
  text-align: center;
}

.about-testimonials__grid {
  align-items: stretch;
}

.about-testimonials__name {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.about-final-cta {
  background: radial-gradient(circle at top, rgba(224, 160, 75, 0.16), transparent 55%), var(--color-surface);
}

.about-final-cta__content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  justify-content: space-between;
}

.about-final-cta__text {
  max-width: 640px;
}

.about-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 991px) {
  .about-hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-hero__media {
    justify-self: start;
    max-width: 420px;
  }
}

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

  .about-hero__actions,
  .about-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-budapest__image,
  .about-team__image {
    min-height: 220px;
  }

  .about-final-cta__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
