.list-blocks {
  display: grid;
  gap: var(--column-gap);
}

@media (min-width: 768px) {
  .list-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.list-block {
  padding: 20px;
  background: #F4F9FC;
  border-radius: 5px;
}

.list-block__top {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  margin-bottom: 10px;
}

.list-block__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #003B67;
}

.list-block__country {
  display: flex;
  align-items: center;
  gap: 13px;
}

.list-block__country-text {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #728594;
}

.list-block__img {
  text-decoration: none;
  height: 190px;
  margin-bottom: 10px;
  color: #000000;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-block__img img {
  width: 60%;
}

.list-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 36px;
  color: #000000;
}

.list-block__list a {
  text-decoration: none;
  color: #000000;
}

.list-block__list a.active, .list-block__list a:hover {
  color: #4ABAF1;
}

@media (min-width: 1200px) {
  .list-block {
    padding: 30px 40px;
  }
  .list-block__country-text {
    display: block;
  }
  .list-block__name {
    font-size: 20px;
    line-height: 28px;
  }
}
