.start-page__tile {
  padding: 1rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-elevation-s);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  color: var(--color-water-blue-600);

  &:hover {
    box-shadow: var(--shadow-elevation-m);
  }

  &:focus {
    outline: 2px solid var(--color-water-blue-600);
    outline-offset: 0;
  }

  @media (min-width: 48rem) {
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
  }
}

.start-page__tile-icon {
  font-size: 1.25rem;
  flex-shrink: 0;

  @media (min-width: 48rem) {
    font-size: 2.5rem;
  }
}

.start-page__tile-title {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;

  @media (min-width: 48rem) {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.start-page__tile-description {
  margin: 0;
  color: var(--color-ash-gray-600);
  line-height: 1.5;
  text-wrap: balance;
}
