.card-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  list-style: none;
}

.card-list-wrapper .card-list-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: initial;
  border-radius: 0;
  overflow: visible;
  box-sizing: border-box;
}

.card-list-wrapper .card-list-link {
  display: flex;
  flex: 1;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card-list-wrapper .card-list-item.animated {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease, transform 1s ease;
}

.card-list-wrapper .card-list-item.animated.visible {
  opacity: 1;
  transform: translateX(0);
}

.card-list-wrapper .card-list-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.card-list-wrapper .card-list-image {
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.card-list-wrapper .card-list-title {
  width: 100%;
  max-width: 100%;
  letter-spacing: 1px;
  line-height: 1.6em;
  margin: 0;
  padding: 0 8px;
  text-align: center;
  box-sizing: border-box;
}

.card-list-wrapper .card-list-title .hs_cos_wrapper {
  display: block;
  width: 100%;
  text-align: center;
}

.card-list-wrapper .card-list-text {
  line-height: 1.6em;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .card-list-wrapper .card-list-item {
    width: 100% !important;
  }
}

@supports (aspect-ratio: 1 / 1) {
  .card-list-wrapper .card-list-image {
    height: revert;
    aspect-ratio: 1 / 1;
  }
}
