/* Bosque River Review — standalone publication library. */
:root {
  --purple: #4f2d7f;
  --lavender: #8e7db3;
  --lilac: #bfb4e0;
  --light-purple: #e9e4f7;
  --gray: #6d6e71;
  --green: #00af86;
  --black: #000;
  --white: #fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--white);
  color: #29262e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
.page-width { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
.page-header { background: var(--purple); color: var(--white); border-bottom: 4px solid var(--lilac); }
.heading-row { display: flex; align-items: center; gap: 22px; padding-block: 30px; }
.heading-row > div { flex: 1; min-width: 0; }
.introduction { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); align-items: start; gap: 32px; }
.introduction-copy p:last-child { margin-bottom: 0; }
.river-image { display: block; width: 100%; height: auto; }
@media (max-width: 850px) {
  .heading-row { flex-wrap: wrap; }
  .introduction { grid-template-columns: 1fr; gap: 20px; }
}
.publication-mark {
  display: block; flex: 0 0 180px; width: 180px; height: auto;
}
h1 { margin: 0; font: normal clamp(1.8rem, 4vw, 2.5rem)/1.2 Georgia, 'Times New Roman', serif; }
.university-name { margin: 0 0 5px; color: var(--light-purple); font-size: .875rem; }
main { padding-block: 32px 64px; }
h2 { margin: 0 0 10px; color: var(--purple); font-size: 1.5rem; font-weight: 500; line-height: 1.3; }
p { margin: 0 0 16px; }
.welcome { margin-bottom: 12px; }
.site-notice { margin-top: 24px; padding: 18px 22px; background: #f8f7fb; border-left: 3px solid var(--lavender); }
.site-notice h2 { margin-bottom: 8px; color: #40364d; font-size: .875rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.site-notice p { margin: 0; color: #525057; font-size: .875rem; line-height: 1.65; }
.publication-library { display: grid; grid-template-columns: minmax(220px, 340px) minmax(0, 1fr); align-items: start; gap: clamp(32px, 7vw, 90px); margin-top: 36px; }
.cover { margin: 0; padding: 12px; border: 1px solid #dedbe4; background: var(--white); }
.cover img { display: block; width: 100%; height: auto; }
.documents { padding-top: 3px; }
.documents h2 { margin-bottom: 18px; }
.document-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #dedbe4; }
.document-list li { border-bottom: 1px solid #dedbe4; }
.document-list a { display: flex; align-items: center; gap: 12px; min-height: 64px; padding: 14px 12px; color: var(--purple); text-decoration: none; }
.document-list a:hover { background: #f8f7fb; }
.document-list a:hover > span:first-of-type { text-decoration: underline; text-underline-offset: 4px; }
.document-list svg { flex: 0 0 23px; width: 23px; height: 23px; fill: var(--light-purple); stroke: var(--purple); stroke-width: 1.4; stroke-linejoin: round; }
.link-label { margin-left: auto; color: var(--gray); font-size: .875rem; }
a:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 10; padding: 8px 16px; background: var(--white); color: var(--purple); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
@media (max-width: 640px) {
  .page-width { width: calc(100% - 32px); }
  .heading-row { flex-wrap: wrap; gap: 14px; padding-block: 24px; }
  .publication-mark { flex: 0 0 auto; width: 150px; height: auto; }
  main { padding-top: 24px; }
  .site-notice { padding: 16px; }
  .publication-library { grid-template-columns: 1fr; gap: 28px; }
  .cover { width: min(100%, 300px); }
  .documents { grid-row: 1; }
  .document-list a { flex-wrap: wrap; }
  .link-label { font-size: .8125rem; }
}
@media (forced-colors: active) { .site-notice { border: 1px solid CanvasText; } }
@media print {
  .page-width { width: 100%; }
  .page-header { background: none; color: var(--black); }
  .university-name { color: var(--black); }
  .skip-link { display: none; }
  .site-notice, .publication-library { break-inside: avoid; }
}

.cover a { display: block; }
