* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.5;
  background-color: var(--grey-100);
}

h1,
h2,
h3 {
  font-family: "Fraunces";
  font-weight: 700;
}
a {
  color: inherit;
  text-decoration: none;
}

main {
  padding-top: var(--header-height);
}
body.has-hero-page main {
  padding-top: 0;
}

section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-7) 0;
  margin-bottom: var(--spacing-7);
  text-align: center;
}
section h2 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-3);
}
.section-subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-7);
}

td,
th {
  border: 1px solid var(--grey-300);
  padding: var(--spacing-5);
}

td p,
th p {
  margin-bottom: 0 !important;
}

tr:nth-child(even) {
  background: var(--teal-50);
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-color: inherit;
}

.table > :not(caption) > * > * {
  box-shadow: none;
}

@media (max-width: 900px) {
  .cards-grid,
  .stats-grid,
  .articles-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
