:root {
  --font-body: "PT Serif", Georgia, "Times New Roman", Times, serif;
  --font-heading: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }

[dir="rtl"] {
  --font-body: "Heebo", "PT Serif", Georgia, "Times New Roman", Times, serif;
  --font-heading: "Alef", "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-ui: "Heebo", "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; }

body {
  font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); }

button,
date,
.footer--text,
.caption,
.read-more,
.top-bar,
.title-bar,
.menu,
.menu-text,
.navigation,
.site-header,
.mobile-toggles {
  font-family: var(--font-ui); }

.header {
  max-width: 100%; }

.header--image {
  padding: 50px 0;
  margin-bottom: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box; }
  .header--image h1,
  .header--image h4 {
    overflow-wrap: break-word;
    padding-inline: 0.5rem; }

.top-bar {
  position: relative;
  padding: 0 1em;
  min-height: 2.8em;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box; }
  .top-bar::before, .top-bar::after {
    content: none;
    display: none; }

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%; }

.mobile-toggles {
  display: contents; }

.mobile-toggles > .lang-toggle-btn {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%); }

.mobile-toggles > .theme-toggle-btn {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%); }

[dir="rtl"] .mobile-toggles > .lang-toggle-btn {
  left: 1em;
  right: auto; }

[dir="rtl"] .mobile-toggles > .theme-toggle-btn {
  right: 1em;
  left: auto; }

.menu-text.is-hidden {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #f0f0f0; }

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
  min-width: 0;
  max-width: 100%; }

.menu > li {
  display: block; }

@media (max-width: 700px) {
  .top-bar {
    position: relative;
    justify-content: center; }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: transparent; }

  .mobile-toggles {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
    margin-bottom: 0.5em;
    background: transparent;
    direction: ltr; }

  .mobile-toggles > .lang-toggle-btn,
  .mobile-toggles > .theme-toggle-btn {
    position: static;
    transform: none; }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent; }

  .menu > li {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0.2em 0; } }
.top-bar {
  transition: transform 0.1s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 9999;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.top-bar.top-bar-fixed {
  position: sticky;
  top: 0;
  left: 0;
  right: 0; }

.top-bar.top-bar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none; }

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em 0.5em;
  font-weight: bold;
  font-size: 1em;
  color: inherit;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  min-width: 2.6em;
  min-height: 2.6em;
  justify-content: center;
  text-align: center;
  user-select: none; }
  .toggle-btn:hover {
    background: #e0e0e066; }

/* Buttons are now in separate containers, no order needed */
body.dark-theme .toggle-btn {
  background: none; }
  body.dark-theme .toggle-btn:hover {
    background: #44474a55; }

.theme-toggle-btn .icon {
  display: none;
  width: 1.5em;
  height: 1.5em; }
.theme-toggle-btn .icon-sun {
  color: #e6b916; }
.theme-toggle-btn .icon-moon {
  color: #8ab4f8; }

body:not(.dark-theme) .icon-sun {
  display: inline; }

body:not(.dark-theme) .icon-moon {
  display: none; }

body.dark-theme .icon-sun {
  display: none; }

body.dark-theme .icon-moon {
  display: inline; }

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  position: relative;
  z-index: 1000; }
  .hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: currentColor;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px; }
  .hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px; }

@media (max-width: 700px) {
  .top-bar {
    position: relative;
    min-height: 2.8em; }

  .hamburger-btn {
    display: block;
    position: absolute;
    inset-inline-start: 1em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002; }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    overflow-x: hidden;
    pointer-events: none;
    padding: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .nav-menu .menu,
    .nav-menu ul {
      background: transparent !important; }

  .nav-menu.open {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
    padding: 1em 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

  .hamburger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px); }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0; }
  .hamburger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px); } }
/* dark-theme.css */
body.dark-theme {
  background: #0f1111;
  color: #e0e0e0; }
  body.dark-theme pre,
  body.dark-theme code,
  body.dark-theme pre code {
    background: #23272a !important;
    color: #e0e0e0 !important; }
    body.dark-theme pre::-webkit-scrollbar,
    body.dark-theme code::-webkit-scrollbar,
    body.dark-theme pre code::-webkit-scrollbar {
      background: #23272a; }
    body.dark-theme pre::-webkit-scrollbar-thumb,
    body.dark-theme code::-webkit-scrollbar-thumb,
    body.dark-theme pre code::-webkit-scrollbar-thumb {
      background: #44474a; }
    body.dark-theme pre::-webkit-scrollbar-thumb:hover,
    body.dark-theme code::-webkit-scrollbar-thumb:hover,
    body.dark-theme pre code::-webkit-scrollbar-thumb:hover {
      background: #66696c; }
  body.dark-theme pre,
  body.dark-theme code,
  body.dark-theme pre code {
    scrollbar-color: #44474a #23272a;
    scrollbar-width: thin; }
  body.dark-theme .notices {
    background: #23272a !important;
    color: #e0e0e0 !important; }
  body.dark-theme table, body.dark-theme thead, body.dark-theme tbody,
  body.dark-theme tfoot, body.dark-theme tr, body.dark-theme th, body.dark-theme td {
    border: none !important; }
  body.dark-theme th, body.dark-theme td {
    background: #23272a;
    color: #e0e0e0; }
  body.dark-theme tr:nth-child(even) td,
  body.dark-theme tr:nth-child(even) th {
    background: #282c2f; }

body.dark-theme .post-list {
  background: #141518;
  color: #e0e0e0; }

body.dark-theme .home-section--alt {
  background: #171c20; }

body.dark-theme .home-post-card {
  background: #1b2228;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35); }
  body.dark-theme .home-post-card__title {
    color: #e0e0e0; }
  body.dark-theme .home-post-card__summary {
    color: #b0b0b0; }
  body.dark-theme .home-post-card__date {
    color: #9aa3ab; }

body.dark-theme .home-section {
  border-top-color: rgba(255, 255, 255, 0.1); }

body.dark-theme .home-section__title,
body.dark-theme .home-about__name,
body.dark-theme .home-book__title {
  color: #f0f3f6; }

body.dark-theme .home-about__description,
body.dark-theme .home-about__summary,
body.dark-theme .home-book__excerpt,
body.dark-theme .home-cta-block__text {
  color: #c1c9d1; }

body.dark-theme .home-cta-block__link {
  color: #00ab6b; }
  body.dark-theme .home-cta-block__link:hover, body.dark-theme .home-cta-block__link:focus {
    color: #00d485; }

body.dark-theme .lecture-row__title {
  color: #e0e0e0; }

body.dark-theme .lecture-row__description {
  color: #c1c9d1; }

body.dark-theme .lecture-row__contact a {
  color: #00ab6b; }
  body.dark-theme .lecture-row__contact a:hover, body.dark-theme .lecture-row__contact a:focus {
    color: #00d485; }

body.dark-theme .lecture-row__image--placeholder {
  background: rgba(255, 255, 255, 0.08); }

body.dark-theme .home-section__cta--secondary {
  color: #00ab6b;
  border-color: #00ab6b; }
  body.dark-theme .home-section__cta--secondary:hover, body.dark-theme .home-section__cta--secondary:focus {
    background: #00ab6b;
    color: #0f1111; }

body.dark-theme .top-bar {
  background: #23272a;
  color: #e0e0e0;
  border-bottom: 1px solid #e0e0e0; }

body.dark-theme .menu {
  background: transparent !important; }
  body.dark-theme .menu a {
    color: #888a8b !important; }
  body.dark-theme .menu .active > a,
  body.dark-theme .menu a.active {
    color: #e0e0e0 !important; }
  body.dark-theme .menu a:hover {
    color: #e0e0e0 !important; }

@media (max-width: 700px) {
  body.dark-theme .nav-menu {
    background: #23272a; } }
body.dark-theme h1.dark {
  color: #e0e0e0; }
  body.dark-theme h1.dark:hover {
    color: #00ab6b; }

body.dark-theme blockquote {
  color: #e0e0e0; }
  body.dark-theme blockquote p {
    color: #e0e0e0; }

body.dark-theme form .form-label,
body.dark-theme form .form-field label,
body.dark-theme form label {
  color: #e0e0e0 !important; }
body.dark-theme form .form-description,
body.dark-theme form .help-text {
  color: #b0b0b0 !important; }
body.dark-theme form input:not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='hidden']),
body.dark-theme form textarea,
body.dark-theme form .form-input {
  color: #e0e0e0 !important;
  background-color: #23272a !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: none !important; }
  body.dark-theme form input:not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='hidden']):focus,
  body.dark-theme form textarea:focus,
  body.dark-theme form .form-input:focus {
    color: #e0e0e0 !important;
    background-color: #23272a !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.15) !important; }
  body.dark-theme form input:not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='hidden'])::placeholder,
  body.dark-theme form textarea::placeholder,
  body.dark-theme form .form-input::placeholder {
    color: #9aa3ab !important; }
  body.dark-theme form input:not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='hidden'])::-webkit-input-placeholder,
  body.dark-theme form textarea::-webkit-input-placeholder,
  body.dark-theme form .form-input::-webkit-input-placeholder {
    color: #9aa3ab !important; }
  body.dark-theme form input:not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='hidden'])::-moz-placeholder,
  body.dark-theme form textarea::-moz-placeholder,
  body.dark-theme form .form-input::-moz-placeholder {
    color: #9aa3ab !important; }
  body.dark-theme form input:not([type='submit']):not([type='reset']):not([type='checkbox']):not([type='radio']):not([type='hidden']):-ms-input-placeholder,
  body.dark-theme form textarea:-ms-input-placeholder,
  body.dark-theme form .form-input:-ms-input-placeholder {
    color: #9aa3ab !important; }

.home-content {
  max-width: 100%;
  min-width: 0; }
  .home-content .row {
    width: 100%;
    max-width: 100%;
    margin: 0; }

.home-sections {
  width: 100%; }

.home-section {
  width: 100%;
  padding: 4.25rem 1.5rem;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.08); }
  .home-section--alt {
    background: #eceff3; }
  .home-section__inner {
    max-width: 900px;
    margin: 0 auto; }
  .home-section__title {
    font-family: var(--font-ui);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: 0.02em;
    color: #1f2730; }
  .home-section__cta-row {
    text-align: center;
    margin-top: 2rem; }
  .home-section__cta {
    display: inline-block;
    padding: 0.65em 1.5em;
    background: #00ab6b;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s ease; }
    .home-section__cta:hover, .home-section__cta:focus {
      background: #008251;
      color: #fff;
      text-decoration: none; }
    .home-section__cta--secondary {
      background: transparent;
      color: #00ab6b;
      border: 2px solid #00ab6b; }
      .home-section__cta--secondary:hover, .home-section__cta--secondary:focus {
        background: #00ab6b;
        color: #fff; }

.home-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  min-width: 0; }
  .home-about__text {
    flex: 1;
    min-width: 0;
    text-align: start; }
  .home-about__avatar {
    flex-shrink: 0; }
    .home-about__avatar img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover; }
  .home-about__name {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #1f2730; }
  .home-about__description {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 1rem;
    color: #344453; }
  .home-about__summary {
    margin: 0 0 1.5rem;
    color: #293540; }

.home-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem; }
  @media (min-width: 640px) {
    .home-blog-grid {
      grid-template-columns: repeat(3, 1fr); } }

.home-post-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease; }
  .home-post-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px); }
  .home-post-card__content {
    display: block;
    padding: 1.25rem;
    height: 100%;
    box-sizing: border-box; }
  .home-post-card__title-link {
    text-decoration: none; }
    .home-post-card__title-link:hover, .home-post-card__title-link:focus {
      text-decoration: none; }
  .home-post-card__title {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #333;
    transition: color 0.2s ease; }
  .home-post-card__title-link:hover .home-post-card__title, .home-post-card__title-link:focus .home-post-card__title {
    color: #00ab6b; }
  .home-post-card__date {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.75rem; }
  .home-post-card__summary {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
    color: #555; }
  .home-post-card__read-more {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: #00ab6b;
    text-decoration: none; }
    .home-post-card__read-more:hover, .home-post-card__read-more:focus {
      text-decoration: underline;
      color: #008251; }

.home-book {
  text-align: center; }
  .home-book__title {
    font-family: var(--font-ui);
    font-size: 1.35rem;
    margin: 0 0 1.25rem;
    color: #1f2730; }
  .home-book__excerpt {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    text-align: start;
    color: #293540; }

.home-cta-block {
  text-align: center; }
  .home-cta-block__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #293540; }
  .home-cta-block__link {
    color: #00ab6b;
    font-weight: 600;
    text-decoration: none; }
    .home-cta-block__link:hover, .home-cta-block__link:focus {
      color: #008251;
      text-decoration: none; }

.home-support__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem; }
  .home-support__actions .home-section__cta--secondary {
    margin: 0; }

.home-support__bmc {
  line-height: 0; }
  .home-support__bmc a {
    display: inline-block;
    line-height: 0;
    text-decoration: none; }
    .home-support__bmc a:hover, .home-support__bmc a:focus {
      text-decoration: none;
      outline: none;
      box-shadow: 0 0 4px 1px rgba(170, 170, 170, 0.53);
      transition: box-shadow 150ms ease-in-out; }
  .home-support__bmc img {
    display: block;
    height: calc(1.3em + 1.2em + 8px);
    width: auto; }

@media (max-width: 639px) {
  .home-about {
    flex-direction: column-reverse;
    text-align: center; }
    .home-about__text {
      text-align: center; }

  .home-book__excerpt {
    text-align: center; } }
.bmc-btn-container {
  text-align: center;
  direction: ltr; }

a.bmc-btn {
  direction: ltr;
  unicode-bidi: isolate; }
  a.bmc-btn:hover, a.bmc-btn:focus, a.bmc-btn:active {
    text-decoration: none;
    color: initial;
    outline: none;
    box-shadow: 0px 0px 4px 1px #aaaaaa88;
    transition: 150ms ease-in-out; }

.row:has(.lectures-page) {
  max-width: 960px; }

.lectures-intro {
  text-align: center;
  margin-bottom: 2.5rem; }
  .lectures-intro > *:last-child {
    margin-bottom: 0; }

.lectures-outro {
  text-align: center;
  margin-top: 2.5rem; }
  .lectures-outro > *:last-child {
    margin-bottom: 0; }

.lectures-list {
  display: flex;
  flex-direction: column;
  gap: 5rem; }

.lecture-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem; }

.lecture-row__media {
  flex: 0 0 25%;
  max-width: 25%; }

.lecture-row__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px; }
  .lecture-row__image--placeholder {
    background: rgba(0, 0, 0, 0.06); }

.lecture-row__body {
  flex: 1 1 auto;
  min-width: 0; }

.lecture-row__title {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  text-align: start; }

.lecture-row__description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: start;
  color: #555; }
  .lecture-row__description > *:first-child {
    margin-top: 0; }
  .lecture-row__description > *:last-child {
    margin-bottom: 0; }

.lecture-row__contact {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  text-align: start; }
  .lecture-row__contact a {
    color: #00ab6b;
    text-decoration: none; }
    .lecture-row__contact a:hover, .lecture-row__contact a:focus {
      text-decoration: underline; }

@media (max-width: 600px) {
  .lecture-row {
    flex-direction: column;
    align-items: center;
    text-align: center; }

  .lecture-row__media {
    flex: 0 0 auto;
    max-width: 40%;
    width: 40%; }

  .lecture-row__title,
  .lecture-row__description,
  .lecture-row__contact {
    text-align: center; } }
.post--body .post-image {
  margin: 1.5em 0;
  text-align: center; }
  .post--body .post-image img {
    display: inline-block;
    margin: 0; }
  .post--body .post-image__caption {
    margin-top: 0.5em;
    font-size: 0.85em;
    color: #6b6b6b;
    text-align: center;
    line-height: 1.4; }

body.dark-theme .post--body .post-image__caption {
  color: #9aa3ab; }

.post--nav {
  border-top: 1px solid #e1e1e1;
  height: auto;
  min-height: 3rem;
  padding: 0.75rem 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; }
  .post--nav .prev,
  .post--nav .next {
    float: none;
    max-width: 48%;
    min-width: 0; }
  .post--nav .next {
    margin-inline-start: auto; }
  .post--nav a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85em;
    max-width: 100%; }
  .post--nav .arrow {
    flex: 0 0 auto; }
  .post--nav .title {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.site-footer {
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
  padding: 3.5rem 2.5rem;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #eceff3;
  overflow-x: clip; }
  .site-footer__inner {
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-width: 0; }
  .site-footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center; }
  .site-footer__name {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2730; }
  .site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; }
  .site-footer__links-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem; }
  .site-footer__support-note {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    line-height: 1.4;
    color: #5a6570; }
  .site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    color: #00ab6b;
    text-decoration: none; }
    .site-footer__link:hover, .site-footer__link:focus {
      color: #008251;
      text-decoration: none; }
  .site-footer__brand-icon {
    display: block;
    width: 1em;
    height: 1em;
    flex-shrink: 0; }
  .site-footer__subscribe {
    margin: 0;
    width: 100%;
    max-width: 420px; }
  .site-footer__subscribe-label {
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2730; }
  .site-footer__languages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 0.65rem; }
  .site-footer__help {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #8a939c;
    cursor: help;
    line-height: 1; }
    .site-footer__help:hover, .site-footer__help:focus {
      color: #00ab6b;
      outline: none; }
      .site-footer__help:hover .site-footer__help-tooltip, .site-footer__help:focus .site-footer__help-tooltip {
        visibility: visible;
        opacity: 1; }
  .site-footer__help-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 10;
    bottom: calc(100% + 0.45rem);
    left: 50%;
    right: auto;
    inset-inline-start: auto;
    transform: translateX(-50%);
    width: max-content;
    max-width: 220px;
    overflow-wrap: break-word;
    padding: 0.5rem 0.65rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: start;
    color: #1f2730;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: opacity 0.15s ease, visibility 0.15s ease;
    pointer-events: none; }
    .site-footer__help-tooltip::after {
      content: "";
      position: absolute;
      top: 100%;
      inset-inline-start: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: #fff; }
  .site-footer__language-option {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    color: #1f2730;
    cursor: pointer; }
    .site-footer__language-option input[type="checkbox"] {
      width: auto;
      height: auto;
      margin: 0;
      accent-color: #00ab6b;
      cursor: pointer; }
  .site-footer__subscribe-row {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    background: #fff; }
    .site-footer__subscribe-row:focus-within {
      border-color: #00ab6b;
      box-shadow: 0 0 0 2px rgba(0, 171, 107, 0.15); }
  .site-footer__subscribe-row input[type="email"] {
    flex: 1;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 0.3em 0.65em;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    line-height: 1.4;
    color: #1f2730;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none; }
    .site-footer__subscribe-row input[type="email"]:focus {
      outline: none;
      border: none;
      box-shadow: none; }
    .site-footer__subscribe-row input[type="email"]::placeholder {
      color: #8a939c; }
  .site-footer__subscribe-status {
    margin: 0.5rem 0 0;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center; }
    .site-footer__subscribe-status--success {
      color: #00925b; }
    .site-footer__subscribe-status--error {
      color: #c0392b; }
  .site-footer__subscribe-row button[type="submit"] {
    flex-shrink: 0;
    height: auto;
    margin: 0;
    padding: 0.5em 0.8em;
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    background: #00ab6b;
    border: none;
    border-inline-start: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap; }
    .site-footer__subscribe-row button[type="submit"]:hover, .site-footer__subscribe-row button[type="submit"]:focus {
      background: #008251;
      outline: none; }

@media (max-width: 699px) {
  .site-footer {
    padding: 2.25rem 1.25rem; }

  .site-footer__links-row {
    gap: 0.65rem 1rem; } }
@media (min-width: 700px) {
  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem; }

  .site-footer__info {
    align-items: flex-start;
    text-align: start;
    min-width: 0; }

  .site-footer__links {
    align-items: flex-start; }

  .site-footer__links-row {
    justify-content: flex-start; }

  .site-footer__support-note {
    text-align: start; }

  .site-footer__subscribe {
    width: auto;
    max-width: 100%;
    min-width: 0; }

  .site-footer__subscribe-label {
    text-align: start; }

  .site-footer__subscribe-status {
    text-align: start; }

  .site-footer__languages {
    justify-content: flex-start; }

  .site-footer__help-tooltip {
    left: auto;
    right: auto;
    inset-inline-start: 0;
    transform: none; }
    .site-footer__help-tooltip::after {
      inset-inline-start: 0.65rem;
      transform: none; } }
body.dark-theme .site-footer {
  background: #171c20;
  border-top-color: rgba(255, 255, 255, 0.1); }
  body.dark-theme .site-footer .site-footer__name,
  body.dark-theme .site-footer .site-footer__subscribe-label {
    color: #f0f3f6; }
  body.dark-theme .site-footer .site-footer__support-note {
    color: #b0b8c0; }
  body.dark-theme .site-footer .site-footer__subscribe-status--success {
    color: #00ab6b; }
  body.dark-theme .site-footer .site-footer__subscribe-status--error {
    color: #f08080; }
  body.dark-theme .site-footer .site-footer__language-option {
    color: #e0e0e0; }
    body.dark-theme .site-footer .site-footer__language-option input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      margin: 0;
      background-color: #23272a;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 2px;
      cursor: pointer; }
      body.dark-theme .site-footer .site-footer__language-option input[type="checkbox"]:checked {
        background-color: #00ab6b;
        border-color: #00ab6b;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5.2L4.2 8.4 11 1.6' stroke='%230f1111' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 0.65rem; }
      body.dark-theme .site-footer .site-footer__language-option input[type="checkbox"]:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 171, 107, 0.35); }
  body.dark-theme .site-footer .site-footer__help {
    color: #9aa3ab; }
    body.dark-theme .site-footer .site-footer__help:hover, body.dark-theme .site-footer .site-footer__help:focus {
      color: #00ab6b; }
  body.dark-theme .site-footer .site-footer__help-tooltip {
    color: #e0e0e0;
    background: #23272a;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35); }
    body.dark-theme .site-footer .site-footer__help-tooltip::after {
      border-top-color: #23272a; }
  body.dark-theme .site-footer .site-footer__link {
    color: #00ab6b; }
    body.dark-theme .site-footer .site-footer__link:hover, body.dark-theme .site-footer .site-footer__link:focus {
      color: #00d485; }
  body.dark-theme .site-footer .site-footer__subscribe-row {
    background: #23272a;
    border-color: rgba(255, 255, 255, 0.25); }
    body.dark-theme .site-footer .site-footer__subscribe-row:focus-within {
      border-color: rgba(255, 255, 255, 0.45);
      box-shadow: 0 0 5px rgba(255, 255, 255, 0.15); }
    body.dark-theme .site-footer .site-footer__subscribe-row input[type="email"] {
      height: auto !important;
      margin: 0 !important;
      color: #e0e0e0 !important;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important; }
      body.dark-theme .site-footer .site-footer__subscribe-row input[type="email"]:focus {
        color: #e0e0e0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important; }
      body.dark-theme .site-footer .site-footer__subscribe-row input[type="email"]::placeholder {
        color: #9aa3ab !important; }
  body.dark-theme .site-footer .site-footer__subscribe-row button[type="submit"] {
    height: auto;
    margin: 0;
    border-inline-start-color: rgba(255, 255, 255, 0.15);
    background: #00ab6b;
    color: #0f1111; }
    body.dark-theme .site-footer .site-footer__subscribe-row button[type="submit"]:hover, body.dark-theme .site-footer .site-footer__subscribe-row button[type="submit"]:focus {
      background: #00d485;
      color: #0f1111; }

html {
  overflow-y: scroll;
  /* Always show vertical scrollbar */
  overflow-x: hidden;
  overflow-x: clip;
  /* Prefer clip so position:sticky on the nav still works */
  max-width: 100%; }

body {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word; }

.content {
  padding: 1em;
  min-width: 0;
  max-width: 100%; }

.post-list, .post-list * {
  text-align: center; }

pre::-webkit-scrollbar,
code::-webkit-scrollbar,
pre code::-webkit-scrollbar {
  height: 8px;
  width: 8px; }
pre::-webkit-scrollbar-thumb,
code::-webkit-scrollbar-thumb,
pre code::-webkit-scrollbar-thumb {
  border-radius: 4px; }

pre,
code,
pre code {
  scrollbar-width: thin; }

p code,
li code {
  padding: 0.2em 0.4em;
  font-size: 0.95em; }

.row {
  width: 100%;
  max-width: 800px; }

.column,
.columns,
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: left;
  min-width: 0;
  max-width: 100%; }

[dir="rtl"] .column,
[dir="rtl"] .columns,
[dir="rtl"] .column:last-child:not(:first-child),
[dir="rtl"] .columns:last-child:not(:first-child) {
  float: right; }

.row.content > * {
  min-width: 0;
  max-width: 100%; }

input,
textarea,
select {
  max-width: 100%; }

.form-field,
.form-data,
.form-input-wrapper,
.form-textarea-wrapper,
.form-wrapper {
  max-width: 100%;
  min-width: 0; }

.post--avatar img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto; }

.content h1 {
  margin-bottom: 0.5em; }

h1, h2, h3, h4, h5, h6 {
  color: inherit; }

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