.hall-history {
  width: min(1240px, calc(100% - 40px));
  margin: 40px auto 120px;
  scroll-margin-top: 30px;
}

.hall-history-intro {
  position: relative;
  padding: clamp(42px, 7vw, 90px);
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(211, 168, 63, 0.3), transparent 24rem),
    linear-gradient(145deg, #173f2c, #0d1d15);
  color: #fff;
  box-shadow: 0 30px 90px rgba(23, 79, 52, 0.18);
}

.hall-history-intro::after {
  content: "1893";
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(8rem, 22vw, 19rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
}

.hall-history-intro > * {
  position: relative;
  z-index: 1;
}

.hall-history-kicker {
  margin: 0 0 18px;
  color: #d8ed9c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hall-history-intro h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.6rem);
  font-weight: 430;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hall-history-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hall-history-timeline {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hall-history-card {
  min-height: 240px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(23, 79, 52, 0.08);
}

.hall-history-card time {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8f2cf;
  color: #174f34;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.hall-history-card h3 {
  margin: 20px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 520;
  letter-spacing: -0.045em;
}

.hall-history-card p {
  margin: 0;
  color: #465149;
  font-size: 0.96rem;
  line-height: 1.72;
}

.hall-history-card--fire {
  border-color: rgba(158, 69, 44, 0.15);
  background: linear-gradient(145deg, #fff8f3, #fff);
}

.hall-history-card--fire time {
  background: #f8ddd0;
  color: #873c27;
}

.hall-history-figures {
  margin-top: 22px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(23, 79, 52, 0.09);
}

.hall-history-figures h3,
.hall-history-originals h3 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  font-weight: 440;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hall-history-number-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(17, 23, 20, 0.12);
}

.hall-history-number-grid div {
  min-height: 150px;
  padding: 28px 18px 10px;
  border-left: 1px solid rgba(17, 23, 20, 0.12);
}

.hall-history-number-grid div:first-child {
  border-left: 0;
}

.hall-history-number-grid strong {
  display: block;
  color: #174f34;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 550;
  letter-spacing: -0.05em;
}

.hall-history-number-grid span {
  display: block;
  margin-top: 9px;
  color: #657168;
  font-size: 0.82rem;
  line-height: 1.5;
}

.hall-history-originals {
  margin-top: 90px;
}

.hall-history-originals > p {
  max-width: 720px;
  margin: 20px 0 36px;
  color: #465149;
  line-height: 1.75;
}

.hall-history-scans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 18px;
}

.hall-history-scan {
  padding: 10px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(23, 79, 52, 0.11);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hall-history-scan:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(23, 79, 52, 0.16);
}

.hall-history-scan img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.hall-history-scan:last-child {
  grid-column: 1 / -1;
  width: min(900px, 100%);
  justify-self: center;
}

@media (max-width: 900px) {
  .hall-history-number-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hall-history-number-grid div:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .hall-history {
    width: calc(100% - 20px);
    margin-bottom: 80px;
  }

  .hall-history-intro {
    border-radius: 28px;
  }

  .hall-history-timeline,
  .hall-history-scans {
    grid-template-columns: 1fr;
  }

  .hall-history-card {
    min-height: 0;
  }

  .hall-history-number-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hall-history-number-grid div {
    min-height: 120px;
    padding: 22px 12px;
  }

  .hall-history-scan:last-child {
    grid-column: auto;
  }
}
