/**
 * Variables
 */
/* --- A. COLORS (The Autumnal Scribe) --- */
:root {
  --color-vellum: #F2E8D5;
  --color-charcoal: #33302E;
  --color-russet: #8B3A2B;
  --color-ochre: #C68E3D;
  --color-pine: #4A5240;
  --color-forest: #2a5c38;
  --color-parchment: #5a4a2a;
}

/* --- B. TYPOGRAPHY --- */
/* --- C. LAYOUT --- */
.publication-layout-vessel header h1 {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #222;
  margin-bottom: 1.5rem;
  text-align: left;
}
.publication-layout-vessel .row {
  background-color: #fff;
  min-height: 600px;
}
.publication-layout-vessel aside {
  background-color: #f8f9fa;
}
@media (min-width: 768px) {
  .publication-layout-vessel aside {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.publication-layout-vessel .pub-cover img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
.publication-layout-vessel .publication-leadin {
  font-style: italic;
  color: #555;
  line-height: 1.6;
}
.publication-layout-vessel .publication-body-main {
  font-family: "Charter", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
}

/*# sourceMappingURL=publication.css.map*/