body {
  --color-subtle: #ccc;

  display: grid;
  place-items: center;
  font-family: var(--font-monospace-slab-serif);
}

p {
  margin-bottom: var(--size-4);
}

.tagline {
  font-style: italic;
}

.t-center {
  text-align: center;
}
.t-sm {
  font-size: var(--font-size-0);
}
.t-nowrap {
  white-space: nowrap;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--size-fluid-4);
  padding: var(--size-fluid-4) var(--size-fluid-2);
}

p {
  max-width: 60ch;
}

.logo {
  max-width: 300px;
}
.logo-mini {
  max-width: 30px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-fluid-2);
}

section {
  display: flex;
  flex-direction: column;
  gap: var(--size-3)
}

h2 {
  font-weight: bold;
}

h3 {
  font-size: var(--font-size-3);
  padding: var(--size-3) 0;
  font-weight: var(--font-weight-4);
  text-decoration: underline;
  width: 100%;
  display: block;
}

.event-banner {
  border: 2px solid #c92a2a;
  padding: var(--size-3);
  margin: var(--size-4) 0;
  text-align: center;
  background: #ffe3e3;
  color: #c92a2a;
  font-weight: bold;
  text-decoration: none;
  font-size: var(--font-size-2);
  display: block;

  &:hover {
    text-decoration: underline;
  }
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: var(--size-2) 0;

  &::before, &::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ccc; /* Line color */
  }

  a {
    text-decoration: none;
    font-weight: bold;
    margin: 0 var(--size-2);
    &:hover {
      text-decoration: underline;
    }
  }
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-fluid-1);
}

.l-stack {
  display: flex;
  flex-direction: column;
  gap: var(--size-4);

  &.l-stack--sm {
    gap: var(--size-1);
  }
  &.l-stack--between {
    justify-content: space-between;
  }
}

.l-cluster {
  display: flex;
  gap: var(--size-4);
  justify-content: center;
  align-items: center;

  &.between {
    justify-content: space-between;
  }
  &.l-cluster--sm {
    gap: var(--size-1);
  }
  &.l-cluster--end {
    justify-content: flex-end;
  }
}

hr {
  height: 1px;
  border: none;
  background-color: var(--color-subtle);
}

footer {
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--size-4); */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--size-6);
}