@charset "UTF-8";
/* Main entry point for SCSS, forwarding all modules. */
/* Base styles for global elements and structural components. */
/* Global variables for colors and framework sizes. */
/* Colors */
/* Primary accent color */
/* Hover accent color */
/* Background color */
/* Component background */
/* Secondary component background */
/* Primary text color */
/* Secondary text color */
/* Shadow for depth */
/* Framework sizes */
/* Default content width */
/* Mobile content width */
/* Small screen fluid content width */
/* Large screen content width */
/* Topbar height */
/* Footer height */
/* Mobile footer height */
/* Breakpoint utilities for responsive design. Defines a map of breakpoints and mixins for media queries. */
/* Private map of breakpoint values */
/* Retrieve breakpoint value from map */
/* Mixin for max-width media query (less than) */
/* Mixin for max-width media query (less than or equal) */
/* Mixin for min-width media query (small and up) */
/* Mixin for min-width media query (medium and up) */
/* Mixin for min-width media query (large and up) */
/* Mixin for min-width media query (extra-large and up) */
/* Mixin for min-width media query (extra-extra-large and up) */
/* Mixin for min-width media query (extra-extra-extra-large and up) */
/* Mixin for range-based media query (between min and max) */
/* Base styles for global elements and structural components. */
/* Mixins for reusable style patterns, including responsive content widths and transitions. */
/* Responsive content width with breakpoints */
/* Transition for hover effects */
/* Montserrat font mixins */
/* Montserrat 600 used for bold text */
/* Page wrapper for full-height layout */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Container for main content and side panels */
}
.site-wrapper .content-container {
  width: 100%;
  flex: 1;
  padding-top: calc(60px + 0.5rem);
}
@media all and (min-width: 768px) {
  .site-wrapper .content-container {
    display: grid;
    grid-template-columns: 1fr 45rem 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media all and (min-width: 850px) {
  .site-wrapper .content-container {
    grid-template-columns: 1fr 60rem 1fr;
  }
}
.site-wrapper .content-container {
  /* Main content area */
}
.site-wrapper .content-container .site-main {
  margin: 0 auto;
  max-width: 45rem;
  width: 45rem;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .site-wrapper .content-container .site-main {
    max-width: 32rem;
    width: 32rem;
  }
}
@media all and (max-width: 576px) {
  .site-wrapper .content-container .site-main {
    max-width: 90%;
    width: 90%;
  }
}
@media all and (min-width: 850px) {
  .site-wrapper .content-container .site-main {
    max-width: 60rem;
    width: 60rem;
  }
}
@media all and (min-width: 768px) {
  .site-wrapper .content-container .site-main {
    grid-column: 2;
    margin: 0;
  }
}
.site-wrapper .content-container .site-main {
  /* Page heading */
}
.site-wrapper .content-container .site-main .site-heading {
  max-width: 45rem;
  width: 45rem;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .site-wrapper .content-container .site-main .site-heading {
    max-width: 32rem;
    width: 32rem;
  }
}
@media all and (max-width: 576px) {
  .site-wrapper .content-container .site-main .site-heading {
    max-width: 90%;
    width: 90%;
  }
}
@media all and (min-width: 850px) {
  .site-wrapper .content-container .site-main .site-heading {
    max-width: 60rem;
    width: 60rem;
  }
}
.site-wrapper .content-container .site-main .site-heading h1 {
  border-bottom: 4px ridge #00cc00;
  padding-bottom: 0.5rem;
}
.site-wrapper .content-container .site-main {
  /* Main content */
}
.site-wrapper .content-container .site-main main {
  padding-bottom: 80px;
}
@media all and (max-width: 768px) {
  .site-wrapper .content-container .site-main main {
    padding-bottom: 50px;
  }
}

/* Utility class for hiding elements */
.hidden {
  display: none;
}

/* Dynamic heading margins */
h1 {
  margin-bottom: calc(2vh - 0.2rem); /* Scales margin from 2vh for h1 to smaller for h5 */
}

h2 {
  margin-bottom: calc(2vh - 0.4rem); /* Scales margin from 2vh for h1 to smaller for h5 */
}

h3 {
  margin-bottom: calc(2vh - 0.6rem); /* Scales margin from 2vh for h1 to smaller for h5 */
}

h4 {
  margin-bottom: calc(2vh - 0.8rem); /* Scales margin from 2vh for h1 to smaller for h5 */
}

h5 {
  margin-bottom: calc(2vh - 1rem); /* Scales margin from 2vh for h1 to smaller for h5 */
}

/* Paragraph styling */
p {
  margin-bottom: 1vh; /* Spacing below paragraphs */
}

/* Lists styling */
ul, ol {
  text-align: left;
  padding: 0.25rem 0 0.25rem 1.25rem;
}
ul li, ol li {
  padding: 0.25rem 0;
}

/* CSS reset and global body/html styles for consistent rendering. */
/* Reset default margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML base styles */
html {
  scroll-padding-top: 5rem;
}
@media all and (max-width: 768px) {
  html {
    scroll-padding-top: 4rem;
  }
}

/* Body styles with background and layout */
body {
  background: linear-gradient(to right, rgba(0, 204, 0, 0.1) 0%, transparent 5%), linear-gradient(to left, rgba(0, 204, 0, 0.1) 0%, transparent 5%), black;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography styles for consistent text formatting across the site. */
/* HTML base styles */
html {
  font-size: 100%;
}

/* Body styles with background and layout */
body {
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Page heading */
.site-heading h1 {
  font-size: 2rem;
}

/* Main content text alignment */
main {
  text-align: justify;
}
@media all and (max-width: 768px) {
  main {
    text-align: left;
  }
}

/* Link styling */
a {
  color: #00cc00;
  text-decoration: underline;
  text-decoration-color: #00cc00;
  transition: color 0.3s ease;
}
a:hover {
  color: #33ff33;
  text-decoration-color: #33ff33;
}

/* Emphasis and summary styling */
strong, b, summary {
  color: #00cc00;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* Lists styling */
ul, ol {
  text-align: left;
}

/* Ordered list markers font styling workaround */
ol {
  list-style: none;
  counter-reset: list-counter;
}
ol li {
  counter-increment: list-counter;
}
ol li::before {
  content: counter(list-counter) ". ";
  display: inline-block;
  margin-left: -1.25rem;
  width: 1em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Styling for bibliography */
/* Bibliography wrapper container */
.bib-wrapper {
  margin-top: 0.5rem;
}

/* Referenced bibliography component */
.ref-bib {
  font-size: 1rem;
  list-style: none;
  margin-left: 0.5rem;
}
.ref-bib .bib-marker {
  display: inline-block;
  width: 1.5em;
  margin-left: -1.75rem;
}
.ref-bib .bib-marker .bib-cite-link {
  color: #00cc00;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ref-bib .bib-marker .bib-cite-link:hover {
  color: #33ff33;
}
.ref-bib li::before {
  content: none;
}

/* Chart container styles for embedding Chart.js visualizations */
/* Base chart container */
.chart-container {
  margin: 1.5rem 0;
  padding: 0.5rem 1rem 1rem;
  border: 0.5px solid;
  border-radius: 10px;
}

/* Collapsible box styles for expandable content sections */
/* Base collapsible container */
.collapsible {
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background: #262626;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.4s ease-in-out;
  /* Title section with toggle indicator */
}
.collapsible .title {
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
}
.collapsible .title .toggle-indicator {
  position: absolute;
  right: 0.5rem;
}
.collapsible {
  /* Collapsible content area */
}
.collapsible .content {
  text-align: justify;
  overflow: hidden;
  padding: 0;
}
@media all and (max-width: 768px) {
  .collapsible .content {
    text-align: left;
  }
}
.collapsible {
  /* Open state modifications */
}
.collapsible.open {
  grid-template-rows: auto 1fr;
}
.collapsible.open .content {
  padding: 0 0.5rem 0.5rem;
}
.collapsible {
  /* Close state transition */
}
.collapsible.close .content {
  transition: padding 0s 0.4s;
}

/* Styling for construction notice component */
/* Styling for construction notice component */
.construction {
  text-align: center;
  max-width: 100%;
  margin: 5rem 0 0;
  font-size: 2.75rem;
  /* Construction icon */
}
.construction i {
  color: #00cc00;
}

/* Styles for the post list component */
/* Post item container */
.post-item {
  background: #262626;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}
.post-item h3 {
  margin: 0 0 0.5rem 0;
}
.post-item h3 a {
  color: #00cc00;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-item h3 a:hover {
  color: #33ff33;
}
.post-item p {
  margin: 0 0 0.5rem 0;
}
.post-item small {
  color: #d3d3d3;
}

/* Styling for the post metadata component */
/* Post metadata container */
.post-meta {
  margin-bottom: 0.5rem;
}
.post-meta a {
  color: #ffffff;
  text-decoration-color: #ffffff;
}
.post-meta a:hover {
  color: #d3d3d3;
  text-decoration-color: #d3d3d3;
}

/* Styles for the scroll progress bar displayed below the topbar. */
/* Progress bar container */
.progress-container {
  position: fixed;
  top: 58px;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1000;
}
@media all and (max-width: 768px) {
  .progress-container {
    transition: opacity 0.3s ease-in-out;
  }
  .progress-container.hidden {
    opacity: 0;
    pointer-events: none;
  }
}

/* Progress bar indicator */
.progressbar {
  height: 100%;
  background: linear-gradient(to bottom, #00cc00 50%, transparent 100%);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 50%, calc(100% - 4px) 100%, 0 100%);
  width: 0;
}

/* Styling for post-sharing component */
/* Share wrapper container */
.share-wrapper {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  padding-top: 4px;
  gap: 10px;
  border-top: 3px groove #00cc00;
  /* Share label */
}
.share-wrapper .share-label {
  font-size: 1rem;
}
.share-wrapper {
  /* Share icons container */
}
.share-wrapper .share-icons {
  display: flex;
  gap: 8px;
  padding-top: 4px;
  /* Share buttons and links */
}
.share-wrapper .share-icons .share-btn,
.share-wrapper .share-icons a {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 1.125rem;
  color: #ffffff;
}
.share-wrapper .share-icons .share-btn:hover,
.share-wrapper .share-icons a:hover {
  color: #33ff33;
}
.share-wrapper .share-icons .share-btn,
.share-wrapper .share-icons a {
  /* Tooltip styling */
}
.share-wrapper .share-icons .share-btn[data-tooltip],
.share-wrapper .share-icons a[data-tooltip] {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.share-wrapper .share-icons .share-btn[data-tooltip]:hover::after,
.share-wrapper .share-icons a[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.share-wrapper .share-icons .share-btn,
.share-wrapper .share-icons a {
  /* Copy-link button success state */
}
.share-wrapper .share-icons .share-btn.copied:hover::after,
.share-wrapper .share-icons a.copied:hover::after {
  content: attr(data-tooltip-succeed);
}
.share-wrapper .share-icons {
  /* Disable pointer events on icons */
}
.share-wrapper .share-icons i {
  pointer-events: none;
}

/* Mastodon share component */
.share-mastodon {
  /* See: https://github.com/justinribeiro/share-to-mastodon#properties */
  --wc-stm-font-family: inherit;
  --wc-stm-dialog-background-color: v.$dark-gray-bg;
  --wc-stm-form-button-border: 1px solid v.$text-light;
  --wc-stm-form-submit-background-color: v.$radioactive-green;
  --wc-stm-form-cancel-background-color: v.$radioactive-green;
  --wc-stm-form-button-background-color-hover: v.$lighter-green;
  --wc-stm-form-button-color-hover: v.$text-white;
  font-size: 1rem;
}

/* Styles for the reference sidebar component, displaying citation details. */
/* Sidebar container */
.ref-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: calc((100vw - 45rem) / 2);
  min-width: 15rem;
  background: #1a1a1a;
  padding: 1.5rem 2rem;
  border-left: 1px solid black;
  z-index: 1000;
  white-space: normal;
  font-size: 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  visibility: hidden; /* Hidden by default to prevent slide-in on load */
  overflow-y: auto;
}
@media all and (max-width: 768px) {
  .ref-sidebar {
    width: 100%;
    font-size: 1.25rem;
  }
}
@media all and (min-width: 850px) {
  .ref-sidebar {
    width: calc((100vw - 60rem) / 2 - 1rem);
    min-width: 20rem;
  }
}
.ref-sidebar > p {
  margin-bottom: 20px;
}
.ref-sidebar.collapsed {
  transform: translateX(100%);
}
.ref-sidebar:not(.collapsed) {
  transform: translateX(0);
  visibility: visible;
}

/* Close button */
.ref-sidebar__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #00cc00;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}
.ref-sidebar__close:hover {
  color: #33ff33;
}

/* Sidebar content */
.ref-sidebar__content {
  display: none;
}
.ref-sidebar__content.active {
  display: block;
}

/* Commentary content for references */
.ref-sidebar__commentary {
  margin-top: 20px;
}

/* View in article link */
.view-in-article {
  display: block;
  margin-top: 20px;
  color: #00cc00;
  text-decoration: none;
  transition: color 0.3s ease;
}
.view-in-article:hover {
  color: #33ff33;
}

/* Citation link */
.cite-link {
  text-decoration: none;
}

/* Styles for table elements. */
/* Table container */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 2vw 0;
}
table th, table td {
  border: 1px solid #ffffff;
  padding: 0.5rem 1.5rem;
}
@media all and (max-width: 768px) {
  table th, table td {
    padding: 0.5rem 0.5rem;
  }
}

/* Table header */
th {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* Table cell */
td {
  text-align: left;
}

/* Styles for the footer layout component at the bottom of the page. */
/* Footer container */
.site-bottom {
  background: #1a1a1a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  height: 80px;
  margin: 30vh 0 0 0;
}
@media all and (max-width: 768px) {
  .site-bottom {
    height: 50px;
    font-size: 1rem;
    margin: 25vh 0 0 0;
  }
}
@media all and (max-width: 576px) {
  .site-bottom {
    margin: 20vh 0 0 0;
  }
}
@media all and (min-width: 850px) {
  .site-bottom {
    margin: 35vh 0 0 0;
  }
}
@media all and (min-width: 1200px) {
  .site-bottom {
    margin: 40vh 0 0 0;
  }
}
@media all and (min-width: 1400px) {
  .site-bottom {
    margin: 45vh 0 0 0;
  }
}

/* Footer content */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 45rem;
  width: 45rem;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .site-footer {
    max-width: 32rem;
    width: 32rem;
  }
}
@media all and (max-width: 576px) {
  .site-footer {
    max-width: 90%;
    width: 90%;
  }
}
@media all and (min-width: 850px) {
  .site-footer {
    max-width: 60rem;
    width: 60rem;
  }
}
.site-footer .site-footer__left {
  transform: translateY(0.25rem);
}
.site-footer .site-footer__right img {
  height: 30px;
  margin: 5px 0;
  transition: transform 0.3s ease;
}
.site-footer .site-footer__right img:hover {
  transform: translateY(-3px);
}
@media all and (max-width: 768px) {
  .site-footer .site-footer__right img {
    height: 20px;
    margin: 8px 0;
  }
}

/* Footer background image */
.site-bottom__image {
  position: absolute;
  bottom: 79px;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  height: 35vh;
  background: url("/assets/img/npp.svg") no-repeat bottom center/contain;
  z-index: 0;
}
@media all and (max-width: 768px) {
  .site-bottom__image {
    height: 25vh;
    bottom: 49px;
  }
}
@media all and (max-width: 576px) {
  .site-bottom__image {
    height: 20vh;
  }
}
@media all and (min-width: 850px) {
  .site-bottom__image {
    height: 40vh;
  }
}
@media all and (min-width: 1200px) {
  .site-bottom__image {
    height: 45vh;
  }
}
@media all and (min-width: 1400px) {
  .site-bottom__image {
    height: 50vh;
  }
}

/* Footer gradient overlay */
.site-bottom__gradient {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 12.5vh;
  background: linear-gradient(to top, rgba(0, 204, 0, 0.1) 0%, transparent 100%);
  z-index: -1;
}
@media all and (max-width: 768px) {
  .site-bottom__gradient {
    height: 10vh;
    bottom: 50px;
  }
}
@media all and (max-width: 576px) {
  .site-bottom__gradient {
    height: 7.5vh;
  }
}
@media all and (min-width: 850px) {
  .site-bottom__gradient {
    height: 15vh;
  }
}
@media all and (min-width: 1200px) {
  .site-bottom__gradient {
    height: 17.5vh;
  }
}
@media all and (min-width: 1400px) {
  .site-bottom__gradient {
    height: 20vh;
  }
}

/* Styles for side panels and their content */
/* Shared styles for left and right panels */
@media all and (min-width: 768px) {
  .panel-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
  }
}
@media all and (max-width: 768px) {
  .panel-wrapper {
    display: block;
    max-width: 45rem;
    width: 45rem;
    margin: 0 auto;
  }
}
@media all and (max-width: 768px) and (max-width: 768px) {
  .panel-wrapper {
    max-width: 32rem;
    width: 32rem;
  }
}
@media all and (max-width: 768px) and (max-width: 576px) {
  .panel-wrapper {
    max-width: 90%;
    width: 90%;
  }
}
@media all and (max-width: 768px) and (min-width: 850px) {
  .panel-wrapper {
    max-width: 60rem;
    width: 60rem;
  }
}

/* Left panel positioning in grid layout */
@media all and (min-width: 768px) {
  .left-panel {
    grid-column: 1;
  }
}

/* Right panel positioning in grid layout */
@media all and (min-width: 768px) {
  .right-panel {
    grid-column: 3;
  }
}

/* Heading style for panel sections */
.panel-heading {
  font-size: 1.1rem;
}

/* Container for trending tags section */
.trending-tags {
  padding: 1rem;
}

/* Styles for the top navigation bar layout component. */
/* Topbar container */
.site-topbar {
  background: #1a1a1a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 60px;
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.site-topbar .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 45rem;
  width: 45rem;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .site-topbar .navbar {
    max-width: 32rem;
    width: 32rem;
  }
}
@media all and (max-width: 576px) {
  .site-topbar .navbar {
    max-width: 90%;
    width: 90%;
  }
}
@media all and (min-width: 850px) {
  .site-topbar .navbar {
    max-width: 60rem;
    width: 60rem;
  }
}
.site-topbar .navbar .site-topbar__left img {
  height: 60px;
  margin-top: 5px;
  padding: 5px 0;
}
.site-topbar .navbar .navbar__list {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.site-topbar .navbar .navbar__list .navbar__item {
  font-size: 1.125rem;
  color: #d3d3d3;
}
.site-topbar .navbar .navbar__list .navbar__item .navbar__link {
  color: #00cc00;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-topbar .navbar .navbar__list .navbar__item .navbar__link:hover {
  color: #ffffff;
}
.site-topbar .navbar .navbar__list {
  /* Flag icons by https://flagicons.lipis.dev/ */
}
.site-topbar .navbar .navbar__list .fi {
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block;
  width: 1.333333em;
  line-height: 1em;
}
.site-topbar .navbar .navbar__list .fi:before {
  content: " ";
}
.site-topbar .navbar .navbar__list .fi-cz {
  background-image: url(/assets/img/flags/cz.svg);
}
.site-topbar .navbar .navbar__list .fi-gb {
  background-image: url(/assets/img/flags/gb.svg);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #00cc00;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

/* Menu toggle checkbox */
.menu-toggle {
  display: none;
}

/* Mobile navigation styles */
@media all and (max-width: 768px) {
  .site-topbar .hamburger {
    display: block;
    padding: 0 1rem;
  }
  .site-topbar .navbar .navbar__list {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    background: #1a1a1a;
    z-index: 1000;
    flex-direction: column;
    gap: 0.5rem;
    transition: max-height 0.3s ease-in-out;
  }
  .site-topbar .navbar .navbar__list .navbar__item, .site-topbar .navbar .navbar__list .language-switcher {
    max-width: 45rem;
    width: 45rem;
    margin: 0 auto;
    text-align: left;
  }
}
@media all and (max-width: 768px) and (max-width: 768px) {
  .site-topbar .navbar .navbar__list .navbar__item, .site-topbar .navbar .navbar__list .language-switcher {
    max-width: 32rem;
    width: 32rem;
  }
}
@media all and (max-width: 768px) and (max-width: 576px) {
  .site-topbar .navbar .navbar__list .navbar__item, .site-topbar .navbar .navbar__list .language-switcher {
    max-width: 90%;
    width: 90%;
  }
}
@media all and (max-width: 768px) and (min-width: 850px) {
  .site-topbar .navbar .navbar__list .navbar__item, .site-topbar .navbar .navbar__list .language-switcher {
    max-width: 60rem;
    width: 60rem;
  }
}
@media all and (max-width: 768px) {
  .site-topbar .navbar .navbar__list .navbar__item .navbar__link, .site-topbar .navbar .navbar__list .language-switcher .navbar__link {
    display: block;
  }
  .site-topbar .navbar .menu-toggle:checked ~ .navbar__list {
    max-height: 500px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
  .site-topbar .navbar .menu-toggle:not(:checked) ~ .navbar__list {
    padding: 0;
    transition: max-height 0.3s ease-in-out, padding 0s 0.3s;
  }
}
/* Styles for post-related elements */
/* Container for post tags and sharing links */
.post-tail {
  display: flex;
  align-items: center;
  margin: 2rem 0 2.5rem 0;
}

/* Wrapper for tag links */
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  /* Individual tag link styling */
}
.tags-wrapper .small-tag {
  font-size: 0.85rem;
  text-decoration: none;
  border: 0.8px solid #d3d3d3;
  border-radius: 0.8rem;
  background-color: transparent;
  padding: 0.3rem 0.5rem;
}
.tags-wrapper .small-tag:hover {
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}

/* Styles for individual tag archive pages */
/* Styling for tag count display */
.tag-count {
  color: #d3d3d3;
  margin-left: 0.5ch;
}

/* Container for individual post archive entries */
.post-archive {
  justify-content: space-between;
  margin-top: 0.5rem;
  display: list-item;
  list-style: disc;
  /* Inner wrapper for post title and date */
}
.post-archive .post-archive-inner {
  display: flex;
  justify-content: space-between;
}
.post-archive {
  /* Dotted line filler between title and date */
}
.post-archive .filler {
  flex-grow: 1;
  border-bottom: 3px dotted #d3d3d3;
  margin: 0.25rem 0.4rem;
}

/* Styles for the tags index page */
/* Container for the tags index list */
.tags-index {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: -1rem;
  /* Styling for individual tag items */
}
.tags-index .big-tag {
  font-size: 1.4rem;
  border: 0.8px solid #d3d3d3;
  border-radius: 1rem;
  background-color: transparent;
  padding: 0.5rem 0.7rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.tags-index .big-tag:hover {
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}
.tags-index .big-tag a {
  text-decoration: none;
}

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