:root {
  --primary: #fefdff;
  --primary-alt: #e4c9ff;
  --primary-alt2: #faf6ff;
  --secondary: #08040b;
  --secondary-alt: #382f3d;
  --secondary-alt2: #bcbcbc;
  --accent: #732e9b;
  --accent-alt: #b270d7;
  --content-width: 1600px;
  --xxl: 200px;
  --xl: 100px;
  --l: 50px;
  --m: 30px;
  --s: 20px;
  --xs: 10px;
  --gutter: 30px;
}
@media (max-width: 875px) {
  :root {
    --xxl: 100px;
    --xl: 50px;
    --l: 25px;
    --m: 15px;
    --s: 10px;
    --xs: 5px;
    --gutter: 15px;
  }
}

header {
  box-shadow: 0px 0px 30px -15px var(--secondary-alt2);
}

#summary {
  position: relative;
  padding: var(--xl) var(--gutter);
  overflow: hidden;
}
#summary .purple-background {
  height: calc(100% - (var(--xl) + var(--m)) * 2);
}
#summary .content-width {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 13fr 19fr;
  max-width: 1100px;
}
#summary .content-width .image-container {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#summary .content-width .image-container .image {
  width: 100%;
  height: 100%;
}
#summary .content-width .image-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--m);
  box-shadow: 0px 0px 30px -25px black;
}
#summary .content-width .image-container .default-image {
  width: auto;
  height: auto;
  max-width: 100%;
}
#summary .content-width .image-container .default-image img {
  width: auto;
  height: auto;
  max-width: 100%;
}
#summary .content-width .excerpt-container {
  width: 100%;
  padding: var(--xl) var(--l);
  display: grid;
  place-items: center;
  min-height: 400px;
}
#summary .content-width .excerpt-container .excerpt-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#summary .content-width .excerpt-container .excerpt-content .excerpt {
  position: relative;
  font-size: 18px;
  color: var(--primary);
}
@media (max-width: 875px) {
  #summary .content-width {
    grid-template-columns: 1fr;
    place-items: center;
  }
  #summary .content-width .excerpt-container,
  #summary .content-width .image-container {
    max-width: 500px;
  }
  #summary .content-width .excerpt-container {
    order: 1;
    padding-bottom: var(--l);
  }
  #summary .content-width .excerpt-container .excerpt-content {
    margin-right: calc(var(--gutter) * 2);
  }
  #summary .content-width .excerpt-container .excerpt-content .excerpt {
    font-size: 13.5px;
  }
  #summary .content-width .image-container {
    order: 2;
  }
}

#post-content {
  padding: var(--m) var(--gutter) var(--xl);
}
#post-content .content-width {
  max-width: 1200px;
}

#image-lightbox {
  position: fixed !important;
  z-index: 999 !important;
  top: 0px !important;
  left: 0px !important;
  width: 100% !important;
  height: 100vh !important;
  height: 100lvh !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#image-lightbox .close {
  position: absolute;
  z-index: 2;
  top: 1em;
  right: 1em;
  font-size: 40px;
  line-height: 0.8em;
  color: var(--primary);
  transition: color 0.3s;
  text-shadow: 0px 0px 10px grey;
  font-family: sans-serif;
}
#image-lightbox .close:hover {
  color: var(--accent-alt);
}
@media (max-width: 600px) {
  #image-lightbox .close {
    font-size: 20px;
  }
}
#image-lightbox img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: calc(100% - var(--gutter) * 2);
  height: auto;
  max-height: 80%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0s, 0.3s;
}
#image-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#image-lightbox.active img {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s;
}/*# sourceMappingURL=news-post.css.map */