.start-here {
  margin: 18px auto 0;
  max-width: 1000px;
  padding: 16px 16px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 18px;
  background: var(--background-alt);
  box-shadow: var(--shadow);
}

.start-here-title {
  font-family: var(--heading);
  font-weight: var(--semi-bold);
}

.start-here-items {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.start-here-item .button {
  margin: 0;
  justify-content: center;
  width: 100%;
}

.start-here-desc {
  margin-top: 8px;
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 700px) {
  .start-here-items {
    grid-template-columns: 1fr;
  }
  .start-here-desc {
    text-align: left;
  }
  .start-here-item .button {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=start-here.css.map */