#hero-image {
  height: 55vh;

  background-image: url(../ASSETS/Images/main-hero-image.jpg);
  background-position: center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}

.cards + .cards {
  margin-top: 1rem;
}

.cards {
  text-align: center;
  font-size: 0.75rem;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.cards:nth-child(odd) {
  flex-direction: row-reverse;
}

.cards > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 40vh;
}

.card-description {
  background-color: var(--dark-bg-muted);
}

.card-button {
  margin-top: 1rem;
  padding: 0.25rem 0.5rem;
  background: none;
  color: var(--accent-color);
}

#immigration-show-more .card-container > * {
  max-width: 400px;
  height: 375px;
}

@media (max-width: 576px) {
  #immigration-show-more .card-container > * {
    height: auto;
  }
  .cards {
    flex-direction: column;
  }
  .cards:nth-child(odd) {
    flex-direction: column;
  }
}
