/* ===========================================================================
   TERMS
   ---------------------------------------------------------------------------
   Shared by Home, Software and Web, which all end on the same promise.

   These pages used to carry price cards reading $5,500 and $7,000. That was
   wrong: every build is quoted against the operation it has to run, so a number
   on the page was quoting a job we had not seen. The cards are gone and the
   terms are what remains, because the terms are the part that is actually true
   of every build.

   .ownership was a four-column grid sized for copy + two price cards + a chip
   list. With the cards removed it is a two-column split.
   =========================================================================== */

.ownership { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }

.term-list { margin: 0; padding: 0; list-style: none; }
.term-list li { padding: 17px 0; border-bottom: 1px solid var(--line); }
.term-list li:first-child { border-top: 1px solid var(--line); }
.term-list strong { display: block; font-size: 1.02rem; color: var(--ink); }
.term-list span {
  display: block; margin-top: 5px;
  color: var(--muted); font-size: .92rem; line-height: 1.5;
}

@media (max-width: 900px) {
  .ownership { grid-template-columns: 1fr; }
}
