.centers-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 24px;
}

.centers-list__image {
  width: 100%;
  height: 53.33vw;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.centers-list__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  min-height: 108px;
  margin-top: 20px;
}

.centers-list__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
}

.button.centers-list__button {
  background: white;
  color: var(--main-red);
  border: 2px solid var(--main-red);
  width: fit-content;
  padding: 14px 24px;
}
.button.centers-list__button:hover {
  color: white;
}

@media (min-width: 768px) {
  .centers-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .centers-list__title {
    font-weight: 600;
  }
  .centers-list__image {
    height: 250px;
  }
}

@media (min-width: 1200px) {
  .centers-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-top: 40px;
  }
}
