:root {
  --desktop-viewport: 1200px;
  --tablet-viewport: 768px;
}

@layer components {
  .features {
    background: #f8f8f8;
  }
  .features__item:not(:last-child) {
    margin-bottom: 48px;
  }
  @media screen and (min-width: 768px) {
    .features__item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
    }
  }
  @media screen and (min-width: 1024px) {
    .features__item:not(:last-child) {
      margin-bottom: 90px;
    }
  }
  .features__icon {
    flex-shrink: 0;
  }
  @media screen and (max-width: 767.9px) {
    .features__icon:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .features__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
@layer layouts {
  .two-columns {
    background: #f8f8f8;
  }
  .two-columns__block-header h2 span {
    display: block;
  }
  .two-columns__text .content li:not(:last-child) {
    margin-bottom: 28px;
  }
  .two-columns__text--center {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .two-columns__img {
    flex-shrink: 0;
  }
  @media screen and (max-width: 991.9px) {
    .two-columns__img {
      display: flex;
      justify-content: center;
    }
  }
  .two-columns__img img {
    width: var(--width);
    border-radius: 24px;
    overflow: hidden;
  }
  @media screen and (max-width: 991.9px) {
    .two-columns__img img {
      width: 412px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  .two-columns__row {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .two-columns__row--mob-reverse {
    flex-direction: column-reverse;
  }
  @media screen and (min-width: 992px) {
    .two-columns__row {
      gap: 80px;
      flex-direction: row;
    }
  }
  .two-columns__strong:not(:first-child), .two-columns__button:not(:first-child) {
    margin-top: 40px;
  }
  .two-columns__strong,
  .two-columns__strong strong {
    font-size: 24px;
    font-weight: 400;
  }
  .two-columns__note {
    margin-top: 48px;
  }
  @media screen and (min-width: 992px) {
    .two-columns__note {
      margin-top: 80px;
    }
  }
  .two-columns--transparent {
    background: transparent;
  }
}