.fixed-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 4px solid #000000;
  box-shadow: 4px 4px 0px #000000;
}

.navbar-brand {
  text-decoration: none;
}

.nav-link {
  color: #000000 !important;
  transition: all 0.1s ease;
  font-weight: 700;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link.active {
  color: #90EE90 !important;
  background: #BAFCA2;
  border-radius: 2px;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.article-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E3DFF2;
  z-index: -1;
}
.article-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: 0 0;
  z-index: 0;
  pointer-events: none;
}

.update-post {
  padding: 6rem 1rem 4rem;
  min-height: 100vh;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  border-radius: 4px;
  padding: 4rem;
  overflow: hidden;
  word-wrap: break-word;
}

.post-header {
  margin-bottom: 4rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.post-type-badge {
  background: #90EE90;
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 3px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.post-type-blog .post-type-badge {
  background: #FF69B4;
}

.post-date,
.post-author {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.post-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 2rem 0;
  color: #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.post-excerpt {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin: 2rem 0 3rem;
  font-weight: 400;
  padding: 1.5rem;
  background: #E3DFF2;
  border-left: 5px solid #90EE90;
  border-radius: 2px;
}

.featured-image {
  margin: 3rem -4rem;
  overflow: hidden;
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #000000;
  font-weight: 400;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.post-body > * {
  max-width: 100%;
}

.post-body h2 {
  font-size: 2rem;
  margin: 4rem 0 2rem;
  color: #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #000000;
}

.post-body h3 {
  font-size: 1.5rem;
  margin: 3rem 0 1rem;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
}

.post-body h4 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: #000000;
  font-weight: 700;
}

.post-body p {
  margin: 1.5rem 0;
}

.post-body a {
  color: #90EE90;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: all 0.1s ease;
}
.post-body a:hover {
  color: rgb(54.55828125, 224.30171875, 54.55828125);
  text-decoration-thickness: 3px;
}

.post-body img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0px #000000;
  margin: 3rem 0;
  display: block;
}

.post-body iframe {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0px #000000;
  margin: 3rem 0;
  display: block;
}

.post-body video {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0px #000000;
  margin: 3rem 0;
  display: block;
}

.post-body blockquote {
  border-left: 5px solid #90EE90;
  background: #E3DFF2;
  padding: 1.5rem;
  margin: 3rem 0;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  box-shadow: 2px 2px 0px #000000;
}

.post-body ul,
.post-body ol {
  margin: 2rem 0;
  padding-left: 3rem;
}

.post-body li {
  margin: 1rem 0;
  line-height: 1.8;
}

.post-body code {
  background: #E3DFF2;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  font-size: 0.875rem;
  color: #FF69B4;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.post-body pre {
  background: #000000;
  color: #BAFCA2;
  padding: 2rem;
  border-radius: 2px;
  overflow-x: auto;
  margin: 3rem 0;
  border: 4px solid #000000;
  box-shadow: 4px 4px 0px #000000;
}

.post-body pre code {
  background: none;
  color: inherit;
  padding: 0;
  border: none;
}

.post-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 3px solid #000000;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.post-tags strong {
  margin-right: 0.5rem;
  color: #000000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.tag {
  background: #E3DFF2;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: #000000;
  font-weight: 700;
  border: 3px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  transition: all 0.1s ease;
}
.tag:hover {
  background: #90EE90;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px #000000;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 3px solid #000000;
}

.back-link {
  background-color: #90EE90;
  border: 4px solid #000000;
  color: #000000;
  transition: all 0.1s ease;
  box-shadow: 4px 4px 0px #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
}
.back-link:hover {
  background-color: rgb(100.93546875, 231.40453125, 100.93546875);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}
.back-link:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

@media (max-width: 991.98px) {
  .article-container {
    padding: 3rem;
  }
  .post-title {
    font-size: 2rem;
  }
  .post-body iframe,
  .post-body img,
  .post-body video {
    width: 100%;
    max-width: 100%;
  }
  .featured-image {
    margin: 3rem -3rem;
  }
  .navbar-collapse {
    background: #FFFFFF;
    border: 4px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 0.5rem;
  }
  .nav-item {
    text-align: center;
    padding: 0.5rem 0;
  }
}
@media (max-width: 767.98px) {
  .update-post {
    padding: 5rem 0.5rem 3rem;
  }
  .article-container {
    padding: 2rem;
  }
  .post-title {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }
  .post-excerpt {
    font-size: 1.125rem;
  }
  .post-body {
    font-size: 1rem;
  }
  .post-body h2 {
    font-size: 1.5rem;
  }
  .post-body h3 {
    font-size: 1.25rem;
  }
  .post-body iframe {
    aspect-ratio: 16/9;
    min-height: 200px;
  }
  .post-body img,
  .post-body video {
    margin: 1.5rem 0;
  }
  .featured-image {
    margin: 2rem -2rem;
  }
  .post-meta {
    font-size: 0.75rem;
  }
}

/*# sourceMappingURL=update_post.css.72cf93e56865.map */
