.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 56px;
  height: 56px;
}

.state-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  background: #d7d9d4;
  border: 1px solid #d7d9d4;
}

.state-list li {
  min-width: 0;
  padding: 16px 10px;
  background: #fff;
  text-align: center;
}

.state-list strong,
.state-list span {
  display: block;
}

.state-list strong {
  color: #173d36;
  font-family: "Libre Franklin", sans-serif;
  font-size: 20px;
}

.state-list span {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: #61706b;
  font-size: 10px;
}

@media (max-width: 620px) {
  .state-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .state-list li:last-child {
    grid-column: 1 / -1;
  }
}
