#best-repair .items_item {
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
}
#best-repair {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
#best-repair div:first-child,
#best-repair div:last-child {
  flex: 1 1 40%;
}
.best-repair_items p,
.best-repair_items h3 {
  text-align: center;
}
.best-repair_items p {
  font-weight: 700;
  font-size: 36px;
  color: #246fad;
  margin-bottom: 8px;
}
.best-repair_items h3 {
  font-weight: 700 !important;
  font-size: 16px;
  margin: 0px !important;
}

.best-repair_items div {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0px 5px 25px 0px #16233f14;
}
.best-repair_items {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr); /* ✅ Три колонки на десктопе */
  grid-auto-rows: auto;
  grid-template-rows: auto;
  justify-content: center;
}
#best-repair a {
  min-width: 240px;
  margin-top: 15px;
}
@media (max-width: 800px) {
  .best-repair_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
