/* ipinfo.io Alternatives page-specific styles */

/* ── Hero verdict card ─────────────────────────────────────────────────── */
.v2-alt-verdict {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 18px 44px rgba(13, 27, 61, 0.08);
}
.v2-alt-verdict__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v2-gray);
  margin-bottom: 18px;
}
.v2-alt-verdict__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--v2-border);
  font-size: 15px;
}
.v2-alt-verdict__row:last-child { border-bottom: none; }
.v2-alt-verdict__label { color: var(--v2-gray); }
.v2-alt-verdict__value { color: var(--v2-navy); font-weight: 600; text-align: right; }

/* ── Comparison table ──────────────────────────────────────────────────── */
.v2-cmp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  background: #fff;
}
.v2-cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 760px;
}
.v2-cmp-table th,
.v2-cmp-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--v2-border);
  color: var(--v2-navy);
  vertical-align: top;
}
.v2-cmp-table thead th {
  background: var(--v2-soft-bg);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--v2-gray);
  white-space: nowrap;
}
.v2-cmp-table tbody tr:last-child td { border-bottom: none; }
.v2-cmp-table td:first-child { font-weight: 600; white-space: nowrap; }
.v2-cmp-table__hl { background: rgba(47, 107, 239, 0.05); }
.v2-cmp-yes  { color: #1B9E5A; font-weight: 600; white-space: nowrap; }
.v2-cmp-no   { color: var(--v2-gray); white-space: nowrap; }
.v2-cmp-part { color: #B07D1E; font-weight: 500; }
.v2-cmp-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--v2-gray);
}

/* ── Alternative breakdown cards ───────────────────────────────────────── */
.v2-alt-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.v2-alt-card {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 32px;
}
.v2-alt-card--featured {
  border: 2px solid var(--v2-blue);
  box-shadow: 0 18px 44px rgba(47, 107, 239, 0.10);
}
.v2-alt-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.v2-alt-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--v2-navy);
  letter-spacing: -0.01em;
}
.v2-alt-card__pricing {
  font-size: 14px;
  color: var(--v2-gray);
  font-weight: 500;
}
.v2-alt-card__tagline {
  font-size: 15.5px;
  color: var(--v2-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.v2-alt-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 18px;
}
.v2-alt-card__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.v2-alt-card__col-title--pro  { color: #1B9E5A; }
.v2-alt-card__col-title--con  { color: #B07D1E; }
.v2-alt-card__points {
  margin: 0;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--v2-navy);
  line-height: 1.65;
}
.v2-alt-card__points li { margin-bottom: 6px; }
.v2-alt-card__best {
  font-size: 14.5px;
  color: var(--v2-navy);
  background: var(--v2-soft-bg);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.55;
}
.v2-alt-card__best strong { color: var(--v2-blue); }

@media (max-width: 720px) {
  .v2-alt-card { padding: 24px; }
  .v2-alt-card__cols { grid-template-columns: 1fr; gap: 16px; }
  .v2-alt-verdict { max-width: 100%; }
}
