.board-chess {
  padding-top: 60px;
  padding-bottom: 50px;
}
.board-chess__section-title {
  margin-bottom: 35px;
}
.board-chess__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .board-chess__list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .board-chess__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .board-chess__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.board-chess__item {
  box-shadow: 0 4px 44px -9px rgba(0, 0, 0, 0.03);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .board-chess__item {
    aspect-ratio: unset;
  }
}
.board-chess__item-img {
  border-radius: 16px;
  aspect-ratio: 1;
  overflow: hidden;
}
.board-chess__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .board-chess__grid-item:nth-child(1) {
    order: 1;
  }
  .board-chess__grid-item:nth-child(2) {
    order: 2;
  }
  .board-chess__grid-item:nth-child(3) {
    order: 3;
  }
  .board-chess__grid-item:nth-child(4) {
    order: 4;
  }
  .board-chess__grid-item:nth-child(5) {
    order: 6;
  }
  .board-chess__grid-item:nth-child(6) {
    order: 5;
  }
  .board-chess__grid-item:nth-child(7) {
    order: 8;
  }
  .board-chess__grid-item:nth-child(8) {
    order: 7;
  }
}
.board-chess__item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #051320;
  margin-bottom: 12px;
}
.board-chess__item-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(5, 19, 32, 0.8);
}
.board-chess__item-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.board-chess__item-content ul li {
  position: relative;
  padding-left: 16px;
}
.board-chess__item-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #25bb4d;
}
.board-chess__btn {
  padding: 12px 32px;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 300ms;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #25bb4d;
  color: #fff;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .board-chess__btn {
    width: 100%;
    text-align: center;
  }
}
.board-chess__btn:hover {
  background-color: #30d05a;
  color: #fff;
}
.board-chess__btn:active {
  opacity: 1;
  background-color: #25bb4d;
}/*# sourceMappingURL=style.min.css.map */