#problems-block {
  padding: 80px 0;
  background-color: #F5F5F5;
}
#problems-block .wrap {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#problems-block .wrap .block-title {
  margin-right: 15px;
  margin-bottom: 20px;
}
#problems-block .wrap .link {
  margin-left: auto;
  margin-bottom: 20px;
}
#problems-block .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}
#problems-block .content .item {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 320px;
  border-bottom: 1px solid rgba(204, 178, 154, 0.4);
}
#problems-block .content .item:nth-child(-n+3) {
  border-top: 1px solid rgba(204, 178, 154, 0.4);
}
#problems-block .content .item__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
#problems-block .content .item__array {
  flex-shrink: 0;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #3C3C3B;
  transition: background 0.3s ease-in;
}
#problems-block .content .item:hover .item__array {
  background-color: #B9A25C;
}

@media (max-width: 890px) {
  #problems-block .content {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
  #problems-block .content .item {
    padding: 20px 0;
  }
  #problems-block .content .item:nth-child(3n) {
    border-top: none;
  }
}
@media (max-width: 640px) {
  #problems-block {
    padding: 60px 0;
  }
  #problems-block .wrap {
    margin-bottom: 0;
  }
  #problems-block .content {
    grid-template-columns: 1fr;
  }
  #problems-block .content .item {
    padding: 10px 0;
    max-width: none;
  }
  #problems-block .content .item:nth-child(2n) {
    border-top: none;
  }
}/*# sourceMappingURL=block.css.map */