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

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

.about-hero__title {
  max-width: 18ch;
}

.about-hero__subtitle {
  max-width: 48ch;
  font-size: var(--font-size-lg);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.about-hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about-block {
  position: relative;
}

.about-block--image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.about-image--rounded {
  border-radius: var(--radius-lg);
}

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

.about-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-primary);
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.about-short-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 960px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__image-wrapper {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid--reverse {
    direction: ltr;
  }
}

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

  .about-hero__subtitle {
    font-size: var(--font-size-base);
  }

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