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

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

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  aspect-ratio: 1;
  background-color: #ebebec;
}

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

@media (max-width: 1023px) {
  .double-image-block {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .image-wrapper p {
    font-size: 12px;
  }
}
