.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.hero__content {
  max-width: 640px;
}

.about-layout {
  align-items: center;
  gap: var(--space-8);
}

.about-layout--image-right {
  align-items: stretch;
}

.about-layout--image-left {
  align-items: stretch;
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-figure {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-figure--tall {
  max-height: 520px;
}

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

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.why-grid {
  gap: var(--space-4);
}

.about-card-sm {
  padding: var(--space-5);
}

.about-card-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .about-layout {
    align-items: flex-start;
  }

  .hero__content {
    max-width: 100%;
  }
}
