.short-about-section .container {
  row-gap: 2rem;
  padding-block: 2rem;

  @media (width >= 56.25rem) {
    row-gap: 0;
    padding-block: 0;
  }
}

.short-about-image {
  @media (width >= 56.25rem) {
    grid-column: 1 / 9;
  }
}

.short-about-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;

  @media (width >= 56.25rem) {
    height: 100%;
  }
}

.short-about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;

  @media (width >= 56.25rem) {
    grid-column: 9 / -1;
    max-width: 80%;
    margin-inline: auto;
  }
}

.short-about-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-block: 1rem;

  @media (width >= 56.25rem) {
    row-gap: 2rem;
    margin-block: 1.75rem;
  }
}

.short-about-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  &:before {
    display: block;
    mask-image: url('../../assets/icons/check.svg');
  }
}