.history-section .content {
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.history-section .content .block {
  display: flex;
  gap: 64px;
  align-items: stretch;
}

.history-images {
  width: 40%;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.history-images .image-full {
  display: flex;
  justify-content: end;
}

.history-images .image {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.history-images .image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.history-images .image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.history-images .image-old {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.history-images .image-old img {
  filter: saturate(0);
  width: 100%;
  height: 100%;
}

.history-section .content .text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 4px;
  width: 50%;
  padding: 64px 0;
}

.history-section .content h3 {
  margin-bottom: 2px;
}


@media (max-width: 1024px) {
  .history-section .content .block {
    gap: 32px;
    margin: 0;
  }

  .history-images {
    width: 45%;
  }

  .history-section .content .text {
    width: 55%;
    padding: 32px 0;
  }
}

@media (max-width: 768px) {
  .history-section .content {
    gap: 48px;
  }

  .history-section .content .block {
    flex-direction: column;
    gap: 24px;
    margin: 0;
  }

  .history-section .content .block2 {
    flex-direction: column-reverse;
  }

  .history-images,
  .history-section .content .text {
    width: 100%;
  }

  .history-images {
    aspect-ratio: 4 / 3;
  }

  .history-section .content .text {
    padding: 0;
  }

  .history-images .image-old {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .history-section .content {
    gap: 32px;
  }

  .history-images {
    aspect-ratio: 1 / 1;
  }

  .history-images .image img {
    border-radius: 6px;
  }
}