@charset "UTF-8";
.post-navigation {
  background-color: #0f0f0f;
  border-bottom: 1.5px solid #424242;
  padding: 1rem 0;
  margin-bottom: 2rem;
  position: relative;
  width: 100vw;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Poppins", sans;
  text-decoration: none;
  color: #dadada;
  transition: color 0.3s ease;
}
.nav-brand a:hover {
  color: #cfbbf6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #9966ff;
  font-weight: 500;
  font-family: "Libertinus Sans", "EB Garamond", sans-serif;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #cfbbf6;
}
.nav-link:visited {
  color: #9966ff;
}
.nav-link.dropdown-toggle {
  cursor: pointer;
}
.nav-link.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.8rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0f0f0f;
  border: 1.5px solid #424242;
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 130px;
  display: none;
  z-index: 1000;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #9966ff;
  text-decoration: none;
  font-family: "Libertinus Sans", "EB Garamond", sans-serif;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #424242;
  color: #cfbbf6;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .nav-brand a {
    font-size: 1.25rem;
  }
  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0.5rem;
    background: transparent;
  }
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}
form {
  align-items: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

input {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
  height: 20%;
  margin: 0.7rem;
  padding: 1rem;
  color: var(--text-color);
  border: 1.5px solid var(--margin-color);
  outline: none;
  background-color: var(--widget-bg-color);
  font-family: "Poppins", sans;
  font-size: 1rem;
}

textarea {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
  height: 35%;
  margin: 0.7rem;
  padding: 1rem;
  color: var(--text-color);
  border: 1.5px solid var(--margin-color);
  outline: none;
  background-color: var(--widget-bg-color);
  font-family: "Poppins", sans;
  font-size: 0.75rem;
}

form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
  height: 20%;
  margin: 0.7rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-color);
  border: 1.5px solid var(--margin-color);
  outline: none;
  background-color: var(--bg-color);
  font-family: "Poppins", sans;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

form button:hover {
  color: var(--bg-color);
  border-color: var(--text-color);
  background-color: var(--text-color);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.footer {
  bottom: 0;
  display: grid;
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 5rem;
  text-align: center;
  color: var(--text-color);
  border-top: 1.5px solid var(--margin-color);
  background-color: var(--widget-bg-color);
  font-family: "Poppins", sans;
  gap: 1vw;
  grid-template-columns: 1fr 1fr;
}

.footer h2 {
  padding-top: 0;
  padding-left: 5vw;
  text-align: left;
  font-size: 2rem;
}

.footer p {
  margin: 0;
  padding-right: 5vw;
  padding-left: 5vw;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: justify;
  font-size: 1.2rem;
  line-height: normal;
}

.footer-icon-container {
  display: flex;
  align-items: flex-end;
  justify-content: left;
  height: max-content;
  margin: 0;
  padding: 0;
  padding-right: 5vw;
  padding-left: 4.7vw;
}

.footer-icon {
  padding: 5px;
  color: var(--icon-color);
  font-size: 1.5rem;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-icon:hover {
  color: var(--icon-hover-color);
}

.footer-form-container {
  display: flex;
  height: 100%;
}

:root {
  --bg-color: #0f0f0f;
  --widget-bg-color: #0f0f0f;
  --wall-bg-color: #dadada;
  --title-color: #dadada;
  --text-color: #dadada;
  --lighter-text-color: #dadada;
  --margin-color: #424242;
  --icon-color: rgba(218, 218, 218, 0.5);
  --icon-hover-color: #cfbbf6;
}

.posts-list .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.posts-list .post-card {
  background: #0f0f0f;
  border: 1.5px solid #424242;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease-out;
}
.posts-list .post-card:hover {
  transform: translateY(-5px);
}
.posts-list .post-card .post-title {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
}
.posts-list .post-card .post-title a {
  color: #dadada;
  text-decoration: none;
}
.posts-list .post-card .post-title a:hover {
  color: #cfbbf6;
}
.posts-list .post-card .post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(218, 218, 218, 0.7);
}
.posts-list .post-card .post-meta .post-date {
  font-weight: 500;
}
.posts-list .post-card .post-meta .post-categories .category {
  background: rgba(183, 147, 255, 0.1);
  color: #b793ff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}
.posts-list .post-card .post-description,
.posts-list .post-card .post-excerpt {
  color: rgba(218, 218, 218, 0.8);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.posts-list .post-card .read-more {
  color: #b793ff;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.posts-list .post-card .read-more:hover {
  color: #cfbbf6;
  text-decoration: underline;
}

@media (min-width: 800px) {
  .posts-list .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .posts-list .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
body {
  font-family: "Libertinus Sans", "EB Garamond", sans-serif;
  color: #dadada;
  line-height: 1.6;
  margin: 0;
  background-color: #0f0f0f;
}

main {
  padding: 0 20vw;
}

@media (max-width: 600px) {
  main {
    padding: 0 7vw;
  }
}
h1 {
  color: #dadada;
  text-align: center;
  font-size: clamp(2rem, 5vw, 6rem);
  font-family: "Poppins", sans;
  line-height: 1;
  padding: 1rem;
  margin: 5vh 0 0 0;
}

h2 {
  color: #dadada;
  text-align: left;
  font-size: clamp(1.7rem, 3vw, 4rem);
  font-family: "Poppins", sans;
  line-height: 1;
  padding: 1rem 0 0 0;
  margin: 0;
}

h3 {
  color: #dadada;
  text-align: left;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-family: "Poppins", sans;
  line-height: 1;
  padding: 1rem 0 0 0;
  margin: 0;
}

h4 {
  color: #dadada;
  text-align: left;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-family: "Poppins", sans;
  line-height: 1;
  padding: 1rem 0 0 0;
  margin: 0;
}

p {
  text-align: justify;
  font-family: "Libertinus Sans", "EB Garamond", sans-serif;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

ul,
ol {
  font-family: "Libertinus Sans", "EB Garamond", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 2rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin: 0.5rem 0;
  text-align: justify;
}

a {
  color: #b793ff;
  text-decoration: none;
}
a:hover {
  color: #cfbbf6;
}
a:visited {
  color: #9966ff;
}

hr {
  height: 1.5px;
  color: #424242;
  background-color: #424242;
  border: none;
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  color: #dadada;
}

.subtitle {
  text-align: center;
  padding: 0 0 3rem 0;
  margin: 0;
}

html,
body {
  overflow-x: hidden; /* Remove horizontal scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

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