.home {
  max-width: 74rem;
  margin: 0;
  padding-bottom: 3rem;
}

.home__hero {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid #dfe3e0;
}

.home__hero h1 {
  max-width: 17ch;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.15;
}

.home__eyebrow {
  margin: 0 0 0.45rem;
  color: #69736d;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home__intro {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: #4f5953;
  font-size: 1.05rem;
}

.home__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.home__primary-action,
.home__secondary-action {
  padding: 0.75rem 1rem;
  border: 1px solid #aeb9b2;
  border-radius: 4px;
  text-decoration: none;
}

.home__primary-action {
  border-color: #263d30;
  background: #263d30;
  color: white;
}

.home__secondary-action:hover,
.home__region-card:hover,
.home__entry-list a:hover {
  border-color: #7f9186;
  background: #f6f8f6;
}

.home__section {
  padding: 3rem 0;
  border-bottom: 1px solid #dfe3e0;
}

.home__section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home__section-heading h2,
.home__tools h2 {
  margin: 0;
  font-size: 1.5rem;
}

.home__section-heading > a {
  font-size: 0.85rem;
}

.home__region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.home__region-card {
  display: flex;
  min-height: 8.5rem;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #d6dcd8;
  text-decoration: none;
}

.home__region-card strong {
  font-size: 1rem;
}

.home__region-card span {
  margin-top: 0.35rem;
  color: #5c6760;
  font-size: 0.8rem;
}

.home__region-card small {
  margin-top: auto;
  padding-top: 0.75rem;
  color: #78817c;
}

.home__tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid #d6dcd8;
  background: #d6dcd8;
}

.home__tools > div {
  padding: 1.5rem;
  background: var(--background);
}

.home__tools p:not(.home__eyebrow) {
  max-width: 30rem;
  color: #59635d;
}

.home__entry-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home__entry-list a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #d6dcd8;
  text-decoration: none;
}

.home__entry-list li + li a {
  border-top: 0;
}

.home__entry-list time {
  color: #69736d;
  font-size: 0.8rem;
}

@media (max-width: 54rem) {
  .home__region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home__tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 36rem) {
  .home__hero {
    padding: 2.75rem 0;
  }

  .home__hero h1 {
    font-size: 3rem;
  }

  .home__section-heading {
    display: grid;
  }

  .home__region-grid,
  .home__tools {
    grid-template-columns: 1fr;
  }

  .home__entry-list a {
    grid-template-columns: 1fr auto;
  }

  .home__entry-list time {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}
