.awards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.awards__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.awards__title {
}

.awards__title p {
  font-size: var(--heading-size-l);
  line-height: 170%;
  color: var(--color-primary--3);
  margin: 0;
}

.awards__image {
}

.awards__text {
}

.awards__text::before {
  content: '';
  display: block;
  width: 60px;
  height: 75px;
  background-image: url('../../images/awards/awards-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 1rem;
}

.awards__text p {
  font-size: var(--content-size-m);
  line-height: 170%;
}

@media (min-width: 750px) {
  .awards {
    flex-direction: row;
    align-items: center;
  }

  .awards__content,
  .awards__text {
    flex: 1;
  }
}