.border-box-section .content {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-height: 350px;
  padding: 32px;
}
.border-box-section .content > div {
  max-width: 512px;
}
.border-box-section .content .page-title {
  margin: 0 0 24px;
}
.border-box-section .title-row {
  margin-bottom: 40px;
}
.prices-list {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .border-box-section .content {
    min-height: 300px;
    padding: 24px;
  }
  .prices-list  {
    grid-gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .prices-list  {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}