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

.single-image-block .image-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-image-block .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  max-height: 480px;
  background-color: #ebebec;
}

.single-image-block .image-wrapper p {
  width: 100%;
  color: #252527;
  text-align: center;
  font-size: 14px;
  margin: 0;
}

.desk-image {
  display: block;
}

.mobile-image {
  display: none;
}

@media (max-width: 1023px) {
  .desk-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }
}
