.listColumn {
  width: 100%;
}

.listColumn__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 90px 0;
}

.listColumn__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.listColumn__topText {
  margin-bottom: 16px;
}
.listColumn__topText span {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.listColumn__title {
  color: #1b2335;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 16px 0;
}

.listColumn__text {
  color: #1b2335;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.listColumn__text p {
  margin: 0;
}

.listColumn__actions {
  margin-top: 24px;
}
.listColumn__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 2px;
  background: transparent;
  color: #1b2335;
  border: 1px solid #1b2335;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}

.listColumn__btn:hover {
  background: #dff1ff;
  color: #000;
  border: 1px solid #000;
}

.listColumn__right {
  align-self: center;
}
.listColumn__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.listColumn__listItem {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 40px;
  align-items: start;
}
.listColumn__listIcon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #1b2335;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listColumn__listIcon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  overflow: hidden;
}
.listColumn__itemTitle {
  color: #1b2335;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 6px 0;
}
.listColumn__itemText {
  color: #242424;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.listColumn__itemText p {
  margin: 0;
}

@media (max-width: 1024px) {
  .listColumn__container {
    gap: 40px;
    padding: 70px 0;
  }
  .listColumn__title {
    font-size: 36px;
  }
  .listColumn__text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .listColumn__container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
  }
  .listColumn__title {
    font-size: 30px;
  }
  .listColumn__text {
    font-size: 16px;
  }
}
