/*
 * Minimal fallback styling for the Astro Table.
 * This intentionally reuses your existing .dsky-page / .dsky-table /
 * .dsky-data-grid / .dsky-data-card / .dsky-section-title classes so the
 * table inherits your site's real design system automatically. Only the
 * bits with no existing equivalent are styled below — trim or override
 * anything that conflicts with your theme.
 */

.sgf-astro-table__summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.sgf-astro-table__summary-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}

.sgf-astro-table__summary-value {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.sgf-astro-table__summary-sub {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.sgf-astro-table__title {
  margin-top: 2rem;
}

.sgf-astro-table__sub {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0.25rem 0 0.75rem;
}

.sgf-astro-table__table {
  width: 100%;
  margin-bottom: 1rem;
}

.sgf-astro-table__footer {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 1rem;
}

.sgf-astro-table__method {
  font-size: 0.75rem;
  opacity: 0.55;
  margin-top: 0.25rem;
}

.sgf-astro-table__loading {
  opacity: 0.6;
  font-style: italic;
}
