.about-features__heading {
  font-size: clamp(2rem, 3.75vw, 4.5rem);
  line-height: 1.2;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-2xl);
}

.about-features__text {
  color: var(--color-text-muted);
  margin: 0;
}

.about-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.9%;
}

.about-features__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-features__image {
  aspect-ratio: 654 / 667;
  overflow: hidden;
}

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

.about-features__card-title {
  font-size: clamp(1.75rem, 2.75vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text-muted);
  margin: 0;
}

.about-features__card-text {
  color: var(--color-text-muted);
  margin: 0;
}

.about-features__card .btn {
  align-self: flex-start;
  width: 250px;
}

@media (max-width: 1024px) {
  .about-features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 640px) {
  .about-features__image {
    aspect-ratio: 4 / 3;
  }
}
