:root{
  --page-max: 1180px;
  --gutter: 24px;
  --rule: #111;
  --gray: #555;
  --offwhite: #faf8f6;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:#fff;color:#111}
body{font-family:"Lora", Georgia, "Times New Roman", Times, serif; line-height:1.6}

.page{max-width:var(--page-max); margin:0 auto; padding:16px 20px 60px}
.thin-rule{border-top:1px solid #222}
.hairline{border-top:1px solid #333}
.spaced{margin:10px 0}

/* === Skyline (top motto + late edition) === */
.skyline{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap: 12px;
  align-items:start;
  margin: 10px 0 6px;
}
.slogan-box {
  border: 1px solid #000;
  padding: 8px 10px;
}
.slogan {
  text-align: center;
  font-size: 10px;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  line-height: 1.3;
}

.late-box {
  flex: 1; 
  max-width: 260px;
}

.late-title {
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 4px;
  text-align: center;
}

.late-blurb {
  font-size: 10px;
  color: #444;
  line-height: 1.35;
  text-align: justify;
}

.masthead-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 10px 0 6px;
  position: relative;
}
.masthead{
  flex: 0 1 auto; 
  text-align: center; 
  padding:8px 0px 4px; 
  margin-bottom: 15px; 
  letter-spacing: -0.15em; 
  word-spacing: -0.5em;
}
.masthead h1{font-family:"Manufacturing Consent", system-ui; font-size:100px; line-height:.92; margin:0; font-weight:400}
.edition{font-size:12px; text-align:center; color:#333; margin-top:6px}

/* === Folio line (vol/date/price) === */
.folio{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 6px 0;
  font-size: 12px;
  color:#222;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.folio-left{ justify-self:start; white-space: nowrap; }
.folio-center{ justify-self:center; white-space: nowrap; }
.folio-right{ justify-self:end; white-space: nowrap; }

.lead-grid{
    display:grid; 
    grid-template-columns:2.1fr 1.2fr 1.2fr; 
    gap:var(--gutter); 
    padding-top:18px;
    margin-bottom: 30px;
}

.kicker{font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:#333}
.headline-xl{font-family:"Playfair Display", Georgia, serif; font-weight:700; line-height:1.05; font-size:48px; margin:6px 0 8px}
.headline-lg{font-family:"Playfair Display", Georgia, serif; font-weight:700; line-height:1.12; font-size:28px; margin:6px 0 8px}
.headline-md{font-family:"Playfair Display", Georgia, serif; font-weight:700; line-height:1.15; font-size:22px; margin:4px 0 6px}
.byline{font-size:13px; color:#444; margin-bottom:10px}
.summary{font-size:14px; color:#222}

.article{font-size:14px; color:#111}
.dropcap:first-letter{float:left; font-family:"Playfair Display", serif; font-size:64px; line-height:0.8; padding:6px 10px 0 0; font-weight:700}
.cols-2{column-count:2; column-gap:var(--gutter)}
.cols-3{column-count:3; column-gap:var(--gutter)}
.cols-4{column-count:4; column-gap:var(--gutter)}
.article p{margin:0 0 14px}

figure{margin:0}
.photo {
  background: var(--offwhite);
  border: 1px solid #000;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, outline 0.2s ease;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
figcaption{font-size:12px; color:#555; margin-top:6px}

.rail-card{border-top:2px solid #000; padding-top:10px; padding-bottom: 25px;}
.bullet-list{list-style:none; padding:0; margin:0}
.bullet-list li{padding:8px 0; border-bottom:1px solid #e5e5e5}

.mid{display:grid; grid-template-columns:1.2fr 1.2fr 1.2fr; gap:var(--gutter); padding:24px 0; border-top:2px solid #000; border-bottom:1px solid #000}

footer{margin-top:40px; padding-top:16px; border-top:2px solid #000; font-size:13px; color:#444}

a:hover {
  text-decoration: underline;
}
.photo a:hover {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}
.photo a:hover img {
    transform: scale(1.08); 
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .masthead-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .late-box { text-align: center; margin-top: 10px; }
}
@media print{
  body{background:#fff} 
  .page{padding:0}
  footer {display:none}
  .lead-grid{grid-template-columns:2fr 1fr 1fr}
}
