/* Why Us Block Styles */

.why-us__wrapper {
  align-items: flex-start;
  display: flex;
}

.why-us__text p:not(:last-child) {
  margin-bottom: 0.75rem;
}

.why-us__text a {
  color: var(--primary-4);
}

.why-us__text a:hover {
  text-decoration: underline;
}

/* Медиа-запросы */
@media (max-width: 61.99875em) {
  .why-us__wrapper {
    flex-direction: column;
  }
}

@media (max-width: 20em) {
  .why-us__wrapper {
    gap: 1.5rem;
  }
}

@media (min-width: 20em) and (max-width: 120em) {
  .why-us__wrapper {
    gap: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  }
}

@media (min-width: 61.99875em) {
  .why-us__label,
  .why-us__text {
    width: 50%;
  }
}

@media (min-width: 120em) {
  .why-us__wrapper {
    gap: 2rem;
  }
}

