.history-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.33fr) minmax(0, 0.67fr);
  gap: 18px;
  align-items: end;
  margin-top: 18px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
}

.history-copy {
  max-width: 460px;
}

.history-copy h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.7rem);
  line-height: 0.95;
}

.history-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.history-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #060b12;
  border: 1px solid var(--line2);
}

.history-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .history-proof {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .history-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .history-proof {
    gap: 14px;
    padding-bottom: 18px;
  }

  .history-copy h2 {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
  }

  .history-visual {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-right: 0;
    border-left: 0;
  }
}
