.payment-section {
  background: #2d2924;
  color: #fffaf3;
}

.payment-section .completion-shell {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: 72px;
  row-gap: 30px;
}

.payment-section h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 12ch;
  color: #fffaf3;
}

.payment-section .payment-photo {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 2;
}

.payment-section .payment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.payment-section .payment-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  border-bottom: 1px solid var(--line-dark);
}

.payment-section .payment-item {
  padding: 23px 0 25px;
  border-top: 1px solid var(--line-dark);
}

.payment-section .payment-item h3 {
  color: #fffaf3;
  font-size: 21px;
  font-weight: 700;
}

.payment-section .payment-item p {
  max-width: 60ch;
  margin-top: 10px;
  color: #d5cbc1;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .payment-section .completion-shell { column-gap: 40px; }
}

@media (max-width: 760px) {
  .payment-section .completion-shell { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 28px; }
  .payment-section h2 { grid-column: 1; grid-row: auto; max-width: 17ch; }
  .payment-section .payment-photo { grid-column: 1; grid-row: auto; max-width: 560px; }
  .payment-section .payment-grid { grid-column: 1; grid-row: auto; }
  .payment-section .payment-item { padding: 20px 0 22px; }
}
