@charset "UTF-8";
@font-face {
  font-family: "Aujournuit Variable";
  src: url("../fonts/Aujournuit-VariableVF.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Aujournuit Variable", serif;
  font-size: 3rem;
  font-weight: normal;
  font-variation-settings: "wdth" 4.5;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: "Aujournuit Variable", serif;
  font-size: 2.5rem;
  font-variation-settings: "wdth" 4.5;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

h2.densed {
  font-family: "Aujournuit Variable", serif;
  font-size: 2.5rem;
  font-variation-settings: "wdth" 3;
  font-weight: normal;
}

h3 {
  font-family: "Aujournuit Variable", serif;
  font-size: 2rem;
  font-variation-settings: "wdth" 3;
  font-weight: normal;
  margin-top: -0.25rem;
}

p {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-size: 1.063rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.text-body {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-size: 1.063rem;
  text-align: justify;
}

figure {
  margin-bottom: 2rem;
}

figcaption {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-size: 1.063rem;
  text-align: justify;
  font-style: italic;
}

a {
  color: black;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.link-underline {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  list-style-position: inside;
  list-style-type: "– ";
}

li {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-size: 1.063rem;
  text-align: justify;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 400px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}
.nav-container {
  display: flex;
  justify-content: space-between;
  background-color: rgba(240, 240, 240, 0.75);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #4C4C4C;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-inline: max(1rem, 50% - 400px);
  z-index: 2;
  padding-block: 0.5rem;
  writing-mode: horizontal-tb;
  font-family: "Aujournuit Variable", serif;
  font-size: 2rem;
  font-variation-settings: "wdth" 3;
  font-weight: normal;
}
.nav-container a:hover {
  font-style: italic;
}
.nav-container .current {
  font-style: italic;
}
.nav-container .nav-name {
  overflow: clip;
  white-space: nowrap;
  padding-right: 0.5rem;
}
.nav-container .nav-items {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.footer {
  margin-top: auto;
  padding-inline: max(1rem, 50% - 400px);
  padding-block: 1rem;
  writing-mode: horizontal-tb;
  border-top: 1px solid #4C4C4C;
}
.footer .footer-items {
  display: flex;
  justify-content: space-between;
}

.post-title {
  margin-bottom: 0.5rem;
}

.post-image-grid-2x {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.25rem;
}

.post-image-grid-3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.25rem;
}

.post-container {
  display: flex;
  flex-direction: column;
}
.post-container:last-child {
  border-bottom: 1px solid #4C4C4C;
}
.post-container .post-item {
  display: grid;
  grid-template-rows: 10rem;
  grid-template-columns: auto 10rem;
  grid-template-areas: "text image";
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid #4C4C4C;
}
@media (max-width: 576px) {
  .post-container .post-item {
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-template-areas: "image" "text";
    gap: 0.5rem;
  }
}
.post-container .post-item .post-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}
.post-container .post-item .post-text .post-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.post-container .post-item .post-text .post-details {
  display: flex;
  justify-content: space-between;
}
.post-container .post-item .post-image {
  grid-area: image;
}

blockquote {
  margin-block: 1.5rem;
  margin-left: 0.5rem;
  color: #2C2C2C;
  font-family: "Caudex", serif;
  font-weight: 400;
  font-size: 1.063rem;
  text-align: justify;
}
blockquote .quote-quote {
  quotes: "“" "”" "‘" "’";
  text-align: justify;
  text-align-last: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  text-indent: -0.5rem;
}
blockquote .quote-quote::before {
  content: open-quote;
}
blockquote .quote-quote::after {
  content: close-quote;
}
blockquote .quote-credit {
  text-align: right;
  font-style: italic;
}

.home-collection-container {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home-collection-container .home-collection {
  padding-inline: 1.3rem;
  padding-block: 1rem;
  border: 1px solid #4C4C4C;
  border-radius: 4px;
}

.list-container {
  display: grid;
  row-gap: 1rem;
  grid-template-columns: repeat(auto-fit, 186px);
  justify-content: space-around;
  margin-bottom: 2rem;
}

.list-heading {
  font-family: "Caudex", serif;
  font-weight: 400;
  font-size: 1.063rem;
  text-align: justify;
}

.add-margin-bottom {
  margin-bottom: 2rem;
}

body {
  min-height: 100vh;
  padding-top: 4.25rem;
  display: flex;
  flex-direction: column;
  background: #F0F0F0;
}
body .main-container {
  display: flex;
  flex-direction: column;
  padding-inline: max(1rem, 50% - 400px);
  padding-bottom: 1rem;
}

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