/* $font-main: 'Space Grotesk', serif; */
/* $font-main: 'Space Grotesk Fallback', serif; */
/* $font-mono: monospace; */
header:not(.scroll) {
  box-shadow: none;
}

#hero {
  padding: 0 0 2rem 0;
  margin: 0;
  background-color: light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%));
  color: light-dark(hsl(48, 45%, 95%), hsl(48, 45%, 95%));
  box-shadow: 0 1px 5px light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%));
}
#hero > h1 {
  font-family: "DIN Next Slab Black", serif;
  font-weight: 700;
  text-align: center;
  margin: 0 1rem 1.5rem 1rem;
  padding: 1rem 0 0 0;
  line-height: 0.7;
  font-size: min(35vw, 165px);
}
#hero > div {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
#hero > div h2 {
  font-family: "DIN Next Slab Black", serif;
  font-size: 1.9rem;
  margin-bottom: 0.3rem;
}
#hero > div > * {
  margin-bottom: 1rem;
}
#hero > div p,
#hero > div li {
  font-size: 1.2rem;
}
#hero > div ol,
#hero > div ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}
#hero > div .social {
  margin-top: 1.5rem;
}
#hero > div p {
  display: inline-block;
}
#hero > div li img {
  display: inline-block;
  transform: translateY(1px);
}
#hero > div a {
  color: light-dark(hsl(44, 100%, 60%), hsl(152, 96%, 44%));
  transition: color 0.2s ease;
}
#hero > div a:hover {
  color: light-dark(hsl(44, 67%, 45%), hsl(150, 100%, 50%));
}

#sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
#sections > section {
  padding: 14px 0 4rem 0;
  width: 100%;
  z-index: 20;
}
#sections > section:not(:first-child) {
  border-top: 5px solid light-dark(hsl(48, 10%, 82%), hsl(48, 2%, 41%));
}
#sections > section > .header {
  padding: 0;
  margin-bottom: 3rem;
}
#sections > section > .header p {
  font-size: 1.07rem;
}
#sections > section > .header a {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "DIN Next Slab Black", serif;
  text-decoration: none;
  color: light-dark(hsl(48, 1%, 20%), hsl(48, 45%, 95%));
  transition: color 0.2s ease;
}
#sections > section > .header a:hover {
  color: light-dark(hsl(152, 100%, 30%), hsl(150, 100%, 50%));
}

.posts {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
}
.posts > li {
  background: light-dark(hsl(48, 24%, 90%), hsl(48, 1%, 8%));
  color: light-dark(hsl(48, 2%, 25%), hsl(48, 4%, 64%));
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-radius: 0.5rem;
  padding: 0.7rem 1rem 0.9rem 1rem;
  max-width: 280px;
  box-shadow: 0 1px 3px light-dark(hsl(44, 30%, 23%), hsl(111, 10%, 8%));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.posts > li .info *:not(.desc) {
  display: inline-block;
}
.posts > li .info a {
  font-size: 1.25rem;
  font-weight: 600;
  color: light-dark(hsl(48, 2%, 31%), hsl(48, 45%, 95%));
  margin: 0 3px 0 0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.posts > li .info a:hover {
  color: light-dark(hsl(152, 100%, 30%), hsl(150, 100%, 50%));
}
.posts > li .info img {
  width: 22px;
  transform: translateY(1px);
  margin-left: 4px;
}
.posts > li .info > div:not(.lang) img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(26%) saturate(1236%) hue-rotate(267deg) brightness(85%) contrast(92%);
  transform: translateY(3px);
}
.posts > li.highlight {
  z-index: 20;
  box-shadow: 0 0 3px hsl(44, 100%, 60%);
  border: 1px solid hsl(44, 100%, 60%);
}
.posts > li > .quick-links {
  margin-top: auto;
  width: 100%;
}
.posts > li > .quick-links:has(*) {
  margin-top: 1rem;
}
.posts > li > .quick-links a {
  text-decoration: none;
  color: light-dark(hsl(120, 100%, 16%), hsl(152, 96%, 44%));
  transition: color 0.2s ease;
  font-size: 90%;
  margin-right: 1rem;
  white-space: nowrap;
}
.posts > li > .quick-links a:hover {
  color: light-dark(hsl(152, 100%, 30%), hsl(150, 100%, 50%));
}

@media (max-width: 650px) {
  #sections {
    padding: 0 1rem;
  }
  #sections > section {
    padding: 0.5rem 0 1.3rem 0;
  }
  #sections > section > .header {
    margin-bottom: 0.5rem;
  }
  .posts {
    flex-direction: column;
  }
  .posts > li {
    width: 100%;
    max-width: 100%;
  }
}

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