.historical-feature {
  display: grid;
  grid-template-columns: minmax(125px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  margin: 38px 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid #c8c3ad;
  border-radius: 6px;
  background: #f5f1e5;
  color: #253a30;
}
.historical-feature-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  align-self: stretch;
  min-height: 260px;
  padding: 24px 12px;
  border: 1px solid #797d65;
  box-shadow: inset 6px 0 #d6d3c0;
  background: #e9e6d6;
  color: #37452f;
  text-align: center;
}
.historical-feature-book span {
  font-size: 12px;
  letter-spacing: 0.2em;
}
.historical-feature-book strong {
  font-family: Georgia, serif;
  font-size: clamp(35px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
}
.historical-feature-book em {
  font-family: Georgia, serif;
  font-size: 18px;
}
.historical-feature .eyebrow {
  color: #56604a;
}
.historical-feature h2 {
  margin: 10px 0 20px;
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.historical-feature h2 em {
  color: #526043;
  font-weight: 400;
}
.historical-feature blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.5;
  color: #253a30;
}
.historical-feature p {
  font-size: 14px;
  line-height: 1.65;
  color: #435243;
}
.historical-feature .historical-feature-source {
  font-size: 12px;
}
.historical-feature a {
  color: #284c3b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.historical-feature a:hover {
  color: #172d23;
}
.historical-feature a:focus-visible,
.historical-feature summary:focus-visible {
  outline: 3px solid #2c5944;
  outline-offset: 4px;
  border-radius: 2px;
}
.historical-feature details {
  border-top: 1px solid #c8c3ad;
  border-bottom: 1px solid #c8c3ad;
  padding: 12px 0;
  margin-top: 18px;
}
.historical-feature summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  min-height: 28px;
}
.historical-feature details p:last-child {
  margin-bottom: 0;
}
.historical-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 18px;
}
.historical-feature-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 650;
}
.historical-feature .historical-feature-note {
  font-size: 11px;
  margin-bottom: 0;
  color: #535d4c;
}
@media (max-width: 650px) {
  .historical-feature {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .historical-feature-book {
    min-height: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
  }
  .historical-feature-book strong {
    font-size: 32px;
  }
  .historical-feature-book span {
    font-size: 10px;
  }
  .historical-feature-book em {
    font-size: 14px;
  }
  .historical-feature h2 {
    font-size: 28px;
  }
  .historical-feature blockquote {
    font-size: 19px;
  }
}
@media print {
  .historical-feature {
    break-inside: avoid;
    box-shadow: none;
  }
  .historical-feature details {
    display: block;
  }
  .historical-feature details > * {
    display: block !important;
  }
  .historical-feature-links {
    display: none;
  }
}
