/* Roundup guide: five-vendor comparison table, choose-when grid and sources. */

.sia-table-wrap table {
  min-width: 1120px;
}

.sia-table-wrap thead th:first-child,
.sia-table-wrap tbody th {
  min-width: 170px;
}

.sia-table-wrap td {
  min-width: 190px;
}

/* Matches the fit cards on the comparison pages so this section reads as one
   family: light ground, hairline border, the same radius and card shadow. */
.sia-choose-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 2rem;
}

.sia-choose-grid > article {
  padding: clamp(1.4rem, 3vw, 2.05rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f9fc;
  box-shadow: var(--shadow-card);
}

.sia-choose-grid h3 {
  margin: 0 0 .6rem;
  font-size: 1.02rem;
}

.sia-choose-grid p {
  margin: 0;
  font-size: .89rem;
  line-height: 1.62;
}

.sia-sources {
  margin-top: 2rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.sia-sources h3 {
  margin: 0 0 .4rem;
  font-size: 1.02rem;
}

.sia-sources p {
  margin: 0 0 .9rem;
  font-size: .86rem;
}

.sia-sources ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: .84rem;
  line-height: 1.75;
}

.sia-sources li {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .sia-choose-grid {
    grid-template-columns: 1fr;
  }
}
