.history_subtitle {
  font-size: 14px;
  font-weight: 600;
  color: rgb(26, 49, 60);
}

.history_wrapper {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
}

.history_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.history_img_wrap {
  border-radius: 16px;
  overflow: hidden;
  height: auto;
}

.history_info_title {
  font-size: 16px;
  font-weight: 700;
  color: rgb(26, 49, 60);
  text-align: center;
}

.history_info_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(26, 49, 60);
}

@media screen and (min-width: 768px) {
  .history_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .history_wrap_reverse .history_info_wrap {
    order: -1;
  }
}

@media screen and (min-width: 1024px) {
  .history_subtitle {
    font-size: 16px;
  }

  .history_info_title {
    font-size: 18px;
  }

  .history_info_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .history_wrapper {
    padding: 24px;
  }

  .history_wrap {
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .history_subtitle {
    font-size: 18px;
  }

  .history_info_title {
    font-size: 20px;
  }

  .history_info_text {
    font-size: 15px;
  }
}
