.aspag-ta {
  max-width: 1200px;
  margin: 2rem auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, Arial, "Helvetica Neue", Helvetica;
  color: #0b1220;
}
.aspag-ta__heading {
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #0b1220;
}
.aspag-ta__counter {
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 400;
  margin-left: 0.5rem;
}
.aspag-ta__group {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
  color: #0b1220;
}
.aspag-ta__select-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 0.75rem 0 1.25rem;
  padding: 0.6rem 0.8rem;
  background: #f7f9fc;
  border: 1px solid #e3e8f0;
  border-radius: 0.5rem;
}
.aspag-ta__label {
  font-weight: 600;
}
.aspag-ta__select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #cfd7e3;
  border-radius: 0.4rem;
  min-width: 320px;
  background: #fff;
}
.aspag-ta__cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  align-items: start;
}
.aspag-ta__card {
  display: none;
  border: 1px solid #dfe6f1;
  border-radius: 10px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
  position: relative;
}
.aspag-ta__card.is-visible {
  display: block;
}
.aspag-ta__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0b57d0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.aspag-ta__title {
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  color: #0b1220;
  font-weight: 700;
}
.aspag-ta__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.35rem;
}
.aspag-ta__disc {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 600;
}
.aspag-ta__metrics {
  display: flex;
  gap: 0.5rem;
  margin: 0.25rem 0 0.5rem;
}
.aspag-ta__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.9rem;
  color: #0b1220;
}
.aspag-ta__chip.is-primary {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #1e3a8a;
  font-weight: 700;
}
.aspag-ta__chip.is-fastest {
  border-color: #22c55e;
  background: #ecfdf5;
  color: #166534;
}
.aspag-ta__dl {
  margin: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  row-gap: 0.45rem;
  column-gap: 1.25rem;
}
.aspag-ta__row dt {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}
.aspag-ta__row dd {
  margin: 0;
  color: #0b1220;
  font-size: 0.98rem;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.aspag-ta__error {
  padding: 0.75rem 1rem;
  border: 1px solid #f5c2c7;
  background: #f8d7da;
  color: #842029;
  border-radius: 0.35rem;
}
.aspag-ta__empty {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  border-radius: 0.35rem;
}
.aspag-ta__badge {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 0.35rem;
  background: #e5e7eb;
  color: #111827;
  font-size: 0.8em;
  margin-left: 0.35rem;
}
.aspag-ta__badge.is-red {
  background: #fee2e2;
  color: #991b1b;
}
.aspag-ta__badge.is-orange {
  background: #ffedd5;
  color: #9a3412;
}
.aspag-ta__badge.is-blue {
  background: #dbeafe;
  color: #1e3a8a;
}
.aspag-ta__badge.is-green {
  background: #dcfce7;
  color: #065f46;
}
@media (max-width: 720px) {
  .aspag-ta__dl {
    grid-template-columns: 1fr;
  }
  .aspag-ta__cards {
    grid-template-columns: 1fr;
  }
  .aspag-ta__row dt {
    margin-top: 0.35rem;
  }
}
