/* Productsページだけ全体を広くする */
@media print, screen and (min-width: 961px) {
  .wrapper {
    width: 1100px;
  }

  section {
    width: 800px;
  }
}

.products > h1 {
  margin-bottom: 28px;
}

/* Products一覧 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 50px;
  align-items: start;
}


/* 1アプリ */
.product {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}


/* App icon */
.product .app-icon {
  display: block;
  flex: 0 0 112px;
  width: 112px;
  margin: 0;
}

.product .app-icon img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;

  border-radius: 25px;
  border: 1px solid #e5e5e5;
}


/* App name */
.product-info h2 {
  margin: 0 0 5px;
  font-size: 20px;
}


/* Description + Devices */
.product-info .description {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.4;
}


/* Supported devices */
.product-info .devices {
  font-size: 11px;
  color: #999;
}


/* Help · App Store */
.product-info .app-links {
  margin: 0;
  font-size: 13px;
}


/* スマホではProducts一覧を1列にする */
@media screen and (max-width: 700px) {
  .products-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .product {
    gap: 14px;
  }
}