:root {
  --background: 248, 11%, 15%;
  --color: 0, 0%, 100%;
  --accent: 25, 100%, 71%;
  --alpha: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: hsla(var(--background), var(--alpha));
  color: hsla(var(--color), var(--alpha));
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: hsla(var(--accent), var(--alpha));
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  height: auto;
  max-width: 100%;
}

.container {
  max-width: 864px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header {
  margin-bottom: 2rem;
  text-align: center;
}

.header__logo img {
  max-width: 100%;
  height: auto;
}

.navbar {
  margin-top: 1rem;
}

.navbar__toggle {
  display: none;
  background: none;
  border: 1px solid hsla(var(--color), 0.2);
  color: hsla(var(--color), var(--alpha));
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
}

.navbar__menu {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.navbar__menu li a {
  color: hsla(var(--color), 0.7);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar__menu li a:hover {
  color: hsla(var(--accent), var(--alpha));
  text-decoration: none;
}

.content {
  margin-bottom: 2rem;
}

.post__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.post__meta {
  color: hsla(var(--color), 0.5);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.post__meta .post__author {
  margin-left: 0.5rem;
}

.post__tags {
  margin-bottom: 1.5rem;
}

.post__tags .tag-link,
.tag-link {
  display: inline-block;
  background: hsla(var(--accent), 0.15);
  color: hsla(var(--accent), var(--alpha));
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-right: 0.25rem;
}

.post__entry p {
  margin-bottom: 1rem;
}

.post__entry h1,
.post__entry h2,
.post__entry h3,
.post__entry h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.post__entry h1 {
  font-size: 1.4rem;
}

.post__entry h2 {
  font-size: 1.25rem;
}

.post__entry h3 {
  font-size: 1.1rem;
}

.post__entry ul,
.post__entry ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.post__entry ul {
  list-style: disc;
}

.post__entry ol {
  list-style: decimal;
}

.post__entry li {
  list-style: inherit;
  margin-bottom: 0.25rem;
}

.post__entry blockquote {
  border-left: 3px solid hsla(var(--accent), var(--alpha));
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: hsla(var(--color), 0.7);
  background: hsla(var(--background), 0.5);
}

.post__entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.post__entry th,
.post__entry td {
  border: 1px solid hsla(var(--color), 0.2);
  padding: 0.5rem;
  text-align: left;
}

.post__entry th {
  background: hsla(var(--background), 0.8);
  font-weight: bold;
}

.post__entry figure {
  margin: 1rem 0;
}

.post__entry figure img {
  display: block;
  margin: 0 auto;
}

.post__entry hr {
  border: none;
  border-top: 1px solid hsla(var(--color), 0.2);
  margin: 2rem 0;
}

.post__entry del {
  color: hsla(var(--color), 0.5);
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid hsla(var(--color), 0.1);
}

.post-list .post-date {
  color: hsla(var(--color), 0.5);
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.tag-list p {
  margin-bottom: 0.5rem;
}

.footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid hsla(var(--color), 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: hsla(var(--color), 0.5);
}

.footer a {
  color: hsla(var(--color), 0.5);
}

.footer a:hover {
  color: hsla(var(--accent), var(--alpha));
}

/* Cookie Consent Banner */
.pcb__banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsla(var(--background), 0.95);
  border-top: 1px solid hsla(var(--color), 0.2);
  padding: 1rem;
  z-index: 9999;
}

.pcb__banner.is-visible {
  display: block;
}

.pcb__inner {
  max-width: 864px;
  margin: 0 auto;
}

.pcb__title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.pcb__txt {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  color: hsla(var(--color), 0.7);
}

.pcb__buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pcb__btn {
  padding: 0.4rem 0.8rem;
  border: 1px solid hsla(var(--color), 0.3);
  background: transparent;
  color: hsla(var(--color), var(--alpha));
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  border-radius: 3px;
}

.pcb__btn--solid {
  background: hsla(var(--accent), 0.8);
  border-color: hsla(var(--accent), 0.8);
  color: #fff;
}

.pcb__btn--link {
  border: none;
  color: hsla(var(--accent), var(--alpha));
}

.pcb__popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: hsla(var(--background), 0.98);
  border: 1px solid hsla(var(--color), 0.2);
  padding: 1.5rem;
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.pcb__popup.is-visible {
  display: block;
}

.pcb__popup__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pcb__popup__close {
  background: none;
  border: none;
  color: hsla(var(--color), 0.5);
  cursor: pointer;
  font-size: 1.2rem;
}

.pcb__popup__buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.pcb__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.pcb__overlay.is-visible {
  display: block;
}

.pcb__badge {
  display: block;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9997;
}

.pcb__badge.is-visible {
  display: block;
}

.pcb__badge__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(var(--accent), 0.8);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pcb__groups {
  list-style: none;
  padding: 0;
}

.pcb__group {
  margin-bottom: 0.5rem;
}

.pcb__group summary {
  cursor: pointer;
  font-size: 0.85rem;
}

.pcb__popup__switch {
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 42.75em) {
  .navbar__toggle {
    display: block;
  }
  .navbar__menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .navbar__menu.is-visible {
    display: flex;
  }
}

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