*, *::before, *::after { box-sizing: border-box; } body { line-height: 1.45; -webkit-font-smoothing: antialiased; } img, picture, video, canvas, svg { display: block; height: auto; max-width: 100%; } input, button, textarea, select { font: inherit; margin: 0; } iframe { border: 0; }
sup, sub {line-height: 0;}
:root {
  --basesize: 1.125rem;
  --baseline: calc(1.4* var(--basesize));
  --color: #154351;
  --color: #3f3f3f;
}

body {
  font-family: 'Mona Sans', sans-serif;
  font-size: var(--basesize);
  line-height: var(--baseline);
  margin: var(--baseline);
  color: var(--color);
  font-weight: 300;
}
* {
  font-variation-settings: "wdth" var(--mona-sans-wdth, 90), "wght" var(--mona-sans-wght, 400), "slnt" var(--mona-sans-slnt, 0);
}

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 2em;
}
#header img {
  display: block;
  width: 200px;
}

a {
  color: currentColor;
}
p {
  max-width: 30em;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
hr {
  width: 100%;
  border: none;
  background: none;
  border-bottom: 1px solid #dadada;
  margin: 2em 0;
}

.text {
  text-align: center;
}
.text p a:only-child {text-align: center; display: block; font-weight: 500;}

.last-publications > h2 {
  font-weight: normal;
  font-size: 1em;
  letter-spacing: .1em;
  margin-bottom: 2em;
  color: black;
  text-transform: uppercase;
  text-align: center;
}
strong, b {
  --mona-sans-wght: 600;
}
em, i {
  font-style: normal;
  --mona-sans-slnt: -12;
}
.book  {
  display: grid;
  grid-template-columns: 300px 300px;
  gap: 2em;
  margin-bottom: 2em;
}
details summary { 
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: gray;
  
  text-underline-offset: .15em;
}
.issue .intro {
  font-size: var(--basesize);
  text-wrap: balance;
  text-align: center;
  font-style: italic;
}
.issue .intro ~ * {
  font-size: .75em;
}

summary::marker {
  content: none;
}

.book h1 {
  --mona-sans-wdth: 125;
  --mona-sans-wght: 600;
  font-size: 1.5em;
  margin-bottom: 0;
  line-height: 1.2;
  text-wrap: balance;
}
.book h2 {
  font-size: 1.5em;
  font-weight: normal;
  margin-top: 0;
  line-height: 1.2;
}
.meta p {
  margin: 0;
}
figure {
  margin: 0;
}
figure span {
  background: #f0f0f0;
  margin: 0;
  display: inline-flex;
}
figure img {
  mix-blend-mode: multiply;
  display: block;
}

@media (max-width:680px) {
  .book  {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width:500px) {
  .book  {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .book::after {
    content: "";
    display: block;
    clear: both;
  }
  .cover {
    width: 250px;
    margin: 0 auto;
  }
}