.product-screens-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
}

.product-screens-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.product-screens-heading h2 {
  max-width: 20ch;
}

.product-screens-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-screens-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-screen-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #d8e7f7;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1.1rem 2.8rem rgba(23, 73, 132, .1);
}

.product-screen-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #eff7ff;
}

.product-screen-card figcaption {
  padding: 1rem 1.15rem 1.1rem;
  color: #53647d;
  font-size: .92rem;
  line-height: 1.55;
}

.product-screen-card figcaption strong {
  display: block;
  margin-bottom: .25rem;
  color: #07152e;
  font-size: 1rem;
}

@media (max-width: 1000px) {
  .product-screens-grid.is-three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .product-screens-grid,
  .product-screens-grid.is-three {
    grid-template-columns: 1fr;
  }
}
