.history-page .intro-box,
.honored-page .intro-box {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 95, 191, 0.16);
  border-radius: 16px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.honored-page .intro-box {
  margin-top: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.history-article {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  background: #f6f6f8;
  border: 1px solid rgba(178, 153, 110, 0.18);
  border-radius: 36px;
  box-shadow: 0 30px 35px rgba(15, 23, 42, 0.1);
  padding: 36px 48px;
  margin: 0 auto 60px;
  scrollbar-width: none;
  max-width: 880px;
}

.history-article::-webkit-scrollbar {
  display: none;
}

.history-section {
  margin-bottom: 50px;
  padding-bottom: 28px;
  position: relative;
}

.history-section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #b7791f;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.5;
}

.history-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.history-section__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.history-section__year {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.32px;
}

.history-section__year--red {
  color: var(--red);
}

.history-section__label {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.02px;
  text-transform: uppercase;
}

.history-section__text {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text);
}

.history-section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 50px 0;
  opacity: 0.55;
}

.history-section__divider--bottom {
  margin: 50px 0 0 0;
}

.history-section__divider::before,
.history-section__divider::after {
  content: '';
  flex: 1;
  height: 1px;
}

.history-section__divider::before {
  background: linear-gradient(90deg, transparent, var(--blue));
}

.history-section__divider::after {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.history-section__diamond {
  width: 6px;
  height: 6px;
  background: var(--blue);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.book-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 70px;
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
  width: calc(100% + var(--pad-x) * 2);
}

.book-area__frame {
  position: relative;
  width: 1003px;
  height: 728px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.book-area__pages {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 78%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.book-area__pages.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.book-area__pages.prev,
.book-area__pages.next {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.book-page {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.book-page--left {
  align-items: center;
  text-align: center;
  padding-left: 100px;
  padding-right: 12px;
}

.book-page__photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(31, 95, 191, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.book-page__surname {
  font-family: 'Manrope', sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.2;
}

.book-page__name {
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.book-page--war .book-page__surname {
  color: var(--red-dark);
}

.book-page__born {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 40px 0 15px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 241, 249, 0.6) 15%, var(--blue-light) 30%, var(--blue-light) 70%, rgba(232, 241, 249, 0.6) 85%, transparent 100%);
  border-radius: 15px;
  margin-left: -15px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.75px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  width: fit-content;
  margin-left: -5px;
}

.book-page--war .book-page__born {
  background: linear-gradient(90deg, transparent 0%, rgba(136, 22, 26, 0.03) 15%, rgba(136, 22, 26, 0.08) 30%, rgba(136, 22, 26, 0.08) 70%, rgba(136, 22, 26, 0.03) 85%, transparent 100%);
  color: var(--red-dark);
}

.book-page__role {
  font-family: 'Manrope', sans-serif;
  font-size: 23.38px;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 14px;
}

.book-page__role-line {
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b7791f, transparent);
  margin-bottom: 14px;
}

.book-page__bio {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 1.72;
  max-width: 341px;
  margin-bottom: 10px;
}

.book-page__awards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  margin-left: 16px;
}

.award-pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 15px;
  margin-left: -15px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 244, 220, 0.6) 15%, #fff4dc 30%, #fff4dc 70%, rgba(255, 244, 220, 0.6) 85%, transparent 100%);
  border: 1.06px solid #B7791F2E;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.94px;
  text-transform: uppercase;
  color: #8c5a14;
  width: fit-content;
}

.book-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.book-nav__btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 95, 191, 0.12);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-nav__btn svg {
  width: 28px;
  height: 28px;
}

.book-nav__pager {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 95, 191, 0.1);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}

.book-nav__pager .muted {
  color: var(--muted);
  font-weight: 600;
}

.book-nav__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.book-nav__dots span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(31, 95, 191, 0.22);
}

.book-nav__dots span.active {
  width: 26px;
  background: var(--blue);
}

.book-nav--war .book-nav__pager {
  color: var(--red-war);
}

.book-nav--war .book-nav__dots span.active {
  background: var(--red-war);
}

.honored-page .kiosk__content,
.history-page .kiosk__content {
  padding-bottom: 28px;
}


