/* A semantic row-by-row comparison, with the partner as the first option. */
#shift .wrap { padding: 56px 52px; border-radius: 32px; box-shadow: var(--shadow); }
#shift h2 { font-size: 28px; }
#shift .section-head { margin-bottom: 38px; }
.comparison-scroll {
  overflow-x: auto;
  padding: 4px 3px 8px;
  scrollbar-color: var(--blue) var(--paper);
  scrollbar-width: thin;
}
.comparison-table {
  width: 100%;
  min-width: 780px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}
.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.comparison-label-col { width: 20%; }
.comparison-table th, .comparison-table td { vertical-align: middle; }
.comparison-table thead th { height: 94px; padding: 18px 12px; color: var(--ink); font-size: 19px; font-weight: 700; }
.comparison-table .partner-heading { display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; color: var(--navy); }
.comparison-table tbody th {
  padding: 22px 16px;
  background: var(--navy);
  border-bottom: 2px solid white;
  color: white;
  font-size: 17px;
  font-weight: 700;
}
.comparison-table tbody td {
  height: 118px;
  padding: 18px 14px;
  background: #f0f0f0;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  color: var(--muted);
}
.comparison-table .comparison-partner { border-left: 2px solid var(--bright); border-right: 2px solid var(--bright); }
.comparison-table thead .comparison-partner {
  background: white;
  border-top: 2px solid var(--bright);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -3px 10px rgb(25 81 165 / 7%);
}
.comparison-table tbody .comparison-partner { background: var(--paper); color: var(--navy); font-weight: 700; }
.comparison-table tbody tr:last-child .comparison-partner { border-bottom: 2px solid var(--bright); border-radius: 0 0 10px 10px; }
.comparison-table tbody tr:first-child>th { border-top-left-radius: 8px; }
.comparison-table tbody tr:first-child>td:last-child { border-top-right-radius: 8px; }
.comparison-table tbody tr:last-child>th { border-bottom-left-radius: 8px; border-bottom: 0; }
.comparison-table tbody tr:last-child>td:not(.comparison-partner) { border-bottom: 0; }
.comparison-table tbody tr:last-child>td:last-child { border-bottom-right-radius: 8px; }
.comparison-symbol { display: block; margin: 0 auto 7px; color: #9ca4ae; font-size: 29px; font-weight: 400; line-height: 1.15; }
.comparison-partner .comparison-symbol { color: var(--bright); font-weight: 700; }
.comparison-scroll-hint { display: none; }
@media (max-width: 1023px) {
  #shift .wrap { padding: 40px 30px; }
  #shift h2 { font-size: 25px; }
  .comparison-scroll-hint { display: block; margin-top: 12px; text-align: center; color: var(--muted); font-size: 12px; }
}
@media (max-width: 699px) {
  #shift { padding-block: 44px; }
  #shift .wrap { padding: 32px 20px; border-radius: 24px; }
  #shift h2 { font-size: 21px; }
  #shift .section-head { margin-bottom: 26px; }
  .comparison-table { min-width: 660px; font-size: 13px; }
  .comparison-label-col { width: 16%; }
  .comparison-table thead th { height: 82px; font-size: 16px; padding: 14px 8px; }
  .comparison-table tbody th { font-size: 14px; padding: 18px 12px; }
  .comparison-table tbody td { height: 112px; padding: 16px 10px; }
  .comparison-scroll-hint { font-size: 11px; }
}
