.cms-table {
  margin-top: 34px;
  margin-bottom: 45px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 1200px) {
  .cms-table-wrapper {
    min-width: 950px;
  }
}

.cms-table__head {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}

.head__row {
  min-height: 39px;
  background: #000000;
  border-radius: 50px;
  color: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.head__row:first-child {
  background: transparent;
}

.cms-table__image img {
  max-width: 50px;
}

.cms-table__title {
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.cms-table__description {
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: -0.01em;
}

.cms-table__content {
  display: flex;
}

.cms-table__content-row {
  position: relative;
  z-index: 1;
}

.row--gray {
  background: #f5f2ff;
}

.row--blue {
  background: #ebe8ff;
}

.row--purple {
  background: #dad4ff;
}

.cms-table__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cms-table__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #a185ff;
  z-index: 0;
}

.cms-table__row:last-child::after {
  display: none;
}

.cms-table__row:nth-of-type(2) .cms-table__content-row {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.cms-table__row:first-of-type .cms-table__content-row {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.cms-table__row:last-child .cms-table__content-row {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.cms-table__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.cms-table__image {
  margin-bottom: 20px;
}

.cms-table__content-row {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  height: 100%;
}

.cms-table__title {
  font-size: 16px;
  margin-top: 8px;
}

.cms-table__text {
  font-size: 12px;
  padding: 40px 20px;
}
