.horizontal-image-block {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 32px;
}

.horizontal-image-block .image-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-x: scroll;
}

.horizontal-image-block .scroll-container {
  padding: 72px 32px;
  border-radius: 24px;
  width: 100%;
}

@media (max-width: 1024px) {
  .horizontal-image-block .scroll-container {
    padding: 18px 16px;
  }
}

.horizontal-image-block .image-wrapper::-webkit-scrollbar {
  height: 8px;
}

.horizontal-image-block .image-wrapper::-webkit-scrollbar-thumb {
  background: #c2c2c6;
  border-radius: 8px;
}

.horizontal-image-block .image-wrapper::-webkit-scrollbar-track {
  background: #E0E0E2;
  border-radius: 8px;
}

.horizontal-image-block .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  height: fit-content;
  width: fit-content;
  margin-bottom: 8px;
}

