.hero--about {
  padding-block: var(--space-12);
}

.about-hero__layout {
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .about-hero__layout {
    flex-direction: row;
    align-items: center;
  }
}

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

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

.about-hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.breadcrumbs ol {
  display: flex;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

.about-section--alt {
  background: radial-gradient(circle at top, #12172a 0, #050814 55%);
}

.about-highlight-card {
  height: 100%;
}

.about-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.about-list li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.about-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
}

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

.about-steps {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
}

.about-steps__label {
  display: inline-block;
  min-width: 6rem;
  font-weight: 600;
  color: var(--color-primary-strong);
  margin-right: 0.5rem;
}

.about-steps li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

@media (max-width: 480px) {
  .about-steps li {
    flex-direction: column;
    align-items: flex-start;
  }
}
