.image-container {
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 30%;
}

.themed-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px;
  max-width: 100%;
}

.themed-image img {
  max-width: 30%;
  flex: 1 1 calc(100% / var(--items, 3) - 20px);
  width: calc(100% / var(--items, 3) - 20px);
  height: auto;
  transition: all 0.3s ease;
}

.isto-e-um-link {
  display: none;
}

.available-desktop {
  display: flex;
  flex-direction: column;
}
.available-mobile {
  display: none;
}

@media (max-width: 992px) {
  .available-desktop {
    display: none;
  }
  .available-mobile {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* Place to the right of carousel */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .available-mobile .image-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
