.aip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.aip-card {
  border: 1px solid #dce4e0;
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
  color: #203630;
}
.aip-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2em;
}
.aip-card img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}
.aip-cta {
  display: block;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  background: var(--aip-brand, #285b50);
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}
.aip-cta:focus-visible,
.aip-table-wrap:focus-visible {
  outline: 3px solid #ba6425;
  outline-offset: 3px;
}
.aip-disclosure {
  font-size: 0.85em;
  line-height: 1.6;
  color: #52665e;
}
.aip-price {
  font-size: 1.3em;
  font-weight: bold;
}
.aip-price small {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
}
.aip-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.aip-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 0.95em;
}
.aip-table caption {
  text-align: left;
  font-weight: 600;
  padding: 0.75rem 0;
}
.aip-table th,
.aip-table td {
  padding: 0.8rem 1rem;
  border: 1px solid #dce4e0;
  text-align: left;
}
.aip-table thead {
  background: #edf3f0;
}
.aip-table tbody tr:nth-child(even) {
  background: #f8faf9;
}
