:where(*),
:where(*::before),
:where(*::after) {
  box-sizing: border-box;
  font-family: var(--font-family);
}

:where(html) {
  font-size: 18px;
  line-height: 1.4;
  interpolate-size: allow-keywords;
}

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

:where(img),
:where(picture),
:where(video),
:where(canvas),
:where(svg) {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

:where(input),
:where(button),
:where(textarea),
:where(select) {
  font: inherit;
  padding: 5px 10px;
}

:where(input[type='text']),
:where(input[type='password']),
:where(input[type='email']),
:where(input[type='url']),
:where(input[type='tel']),
:where(input[type='search']),
:where(input[type='number']),
:where(input[type='date']),
:where(input[type='datetime-local']),
:where(input[type='month']),
:where(input[type='time']),
:where(input[type='week']),
:where(textarea, select) {
  width: 100%;
}

:where(input),
:where(textarea),
:where(select) {
  border: 1px solid #d1d5db;
}

:where(textarea) {
  height: 160px;
}

:where(fieldset) {
  border-width: 0;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
}

:where(input[type='submit']) {
  cursor: pointer;
}

:where(input span) {
  margin: 1rem;
  padding: 1rem;
}

:where(p),
:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  overflow-wrap: break-word;
}

:where(a),
:where(a:visited),
:where(a:active),
:where(a:hover) {
  color: #0066ff;
  text-decoration: none;
}

:where(a:hover) {
  text-decoration: underline;
}

:where(button) {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
}

:where(tr) {
  text-align: left;
}

:where(th, td) {
  padding: 5px 10px;
}

:where(section) {
  padding: 24px;
}

@media (max-width: 768px) {
  :where(section) {
    padding: 16px;
  }
}

:root {
  /* Font */
  --font-family: 'Rubik', system-ui, sans-serif;
  --font-monospace: monospace;

  /* Layout */
  /* --header-position: static; */
  /* --header-height: auto; */

  /* Option: Fixed header */
  /* --header-position: fixed; */
  /* --header-height: 50px; */

  --layout-max-width: 100%;
  --header-max-width: 100%;
  --main-max-width: 100%;
  --footer-max-width: 100%;

  /* Option: Max width */
  /* --layout-max-width: 1200px; */
  /* --header-max-width: 1200px; */
  /* --main-max-width: 1200px; */
  /* --footer-max-width: 1200px; */

  /* Components */
  --column-width: 280px;

  /* highlight */
  --hljs-comment: #7a7a7a;
  --hljs-punctuation: #333333;
  --hljs-tag-name: #000000;
  --hljs-keyword: #0040cc;
  --hljs-string: #0066ff;
  --hljs-variable: #2b2b2b;
  --hljs-literal: #004a99;
  --hljs-built_in: #0059ff;
  --hljs-meta: #003366;
  --hljs-meta-string: #0066cc;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #f2f2f2;
  padding: 8px 16px;
}

.announcement-message {
  flex-grow: 1;
}

.announcement-close button {
  font-size: 28px;
  font-weight: 300;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  padding: 0;
}

@media (max-width: 768px) {
  .announcement-message,
  .announcement-link {
    font-size: 16px;
  }
}

.ingress-desktop {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #f2f2f2;
}

.ingress-menu {
  margin-left: auto;
}

.ingress-logo img {
  max-height: 50px;
  max-width: none;
}

.ingress-nav {
  flex-grow: 1;
}

.ingress-nav > ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
}

.ingress-nav a {
  text-decoration: none;
  color: #111111;
}

.ingress-nav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.ingress-nav > ul li {
  position: relative;
}

.ingress-nav ul li {
  white-space: nowrap;
  padding: 0;
}

.toggle li:hover {
  background: #f2f2f2;
  text-decoration: none;
}

.ingress-nav ul li span {
  cursor: pointer;
}

.ingress-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

.ingress-nav-toggler {
  margin-left: 8px;
  display: flex;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.ingress-nav-toggler img {
  transform: rotate(90deg);
  margin-left: 8px;
}

.ingress-nav-toggler.open img {
  transform: rotate(-90deg);
}

.ingress-nav-toggler.open + .ingress-submenu {
  display: block;
  background: #ffffff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
  min-width: 120px;
}

.ingress-lang ul {
  list-style-type: none;
}

.ingress-lang-dropdown,
.ingress-mobile-lang-dropdown {
  position: relative;
}

.ingress-lang-dropdown a,
.ingress-mobile-lang-dropdown a {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8px;
  text-decoration: none;
  color: #111111;
}

.ingress-lang-dropdown a img {
  border-radius: 50%;
  width: 26px;
  height: 26px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.ingress-lang-dropdown span {
  margin-top: 4px;
  font-size: 14px;
}

.ingress-lang-row ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style-type: none;
  padding: 0;
}

.ingress-lang-dropdown ul,
.ingress-mobile-lang-dropdown ul {
  display: none;
  position: absolute;
  top: 45px;
  left: 12px;
  list-style-type: none;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

.ingress-lang-dropdown a.open + ul,
.ingress-mobile-lang-dropdown a.open + ul {
  display: block;
  z-index: 1000;
}

.ingress-menu-toggler {
  display: flex;
  cursor: pointer;
  color: #111111;
  text-decoration: none;
  position: relative;
}

.ingress-menu-toggler span {
  font-size: 18px;
}

.ingress-menu-toggler:hover {
  color: #111111;
  text-decoration: none;
}

.ingress-menu-toggler img {
  transform: rotate(90deg);
  margin-left: 8px;
}

.ingress-menu-toggler.open img {
  transform: rotate(-90deg);
}

.ingress-menu ul {
  display: none;
  position: absolute;
  right: 12px;
  list-style-type: none;
  padding: 8px;
}

.ingress-menu a.open + ul {
  display: block;
  background: #ffffff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
}

.ingress-menu a.open + ul li {
  cursor: pointer;
}

.ingress-menu li {
  display: flex;
}

.ingress-menu li a {
  color: #111111;
  text-decoration: none;
  padding: 6px;
  word-break: break-word;
}

.ingress-menu li:hover {
  background: #f2f2f2;
  text-decoration: none;
}

.ingress-menu li img {
  width: 24px;
  max-width: none;
  margin-right: 8px;
}

.ingress-mobile {
  display: none;
}

.ingress-mobile-toggle {
  display: flex;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}

.ingress-mobile-toggle span {
  font-weight: 500;
}

.ingress-mobile-toggle img {
  transform: rotate(90deg);
  margin-left: 8px;
}

.ingress-mobile-toggle.open img {
  transform: rotate(-90deg);
}

.ingress-mobile-toggle.open + .ingress-mobile-submenu {
  display: block;
  padding-left: 16px;
}

.ingress-mobile-submenu {
  display: none;
}

.ingress-mobile-menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
  padding: 0 20px;
}

.ingress-mobile-menu > div {
  display: flex;
}

.ingress-mobile-menu img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.ingress-mobile-nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 20px;
}

.ingress-mobile-nav a,
.ingress-mobile-menu a,
.ingress-mobile-nav span {
  font-size: 1.5rem;
  text-decoration: none;
}

.ingress-mobile-nav ul {
  list-style-type: none;
  padding-left: 0;
}

.ingress-mobile-nav ul li {
  margin: 16px 0;
}

.ingress-mobile-logo {
  flex: 1;
}

.ingress-mobile-logo img {
  max-height: 50px;
  max-width: none;
}

.ingress-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: white;
}

.ingress-overlay-content {
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.ingress-mobile-top {
  display: flex;
}

.ingress-mobile-search {
  margin: 0 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.ingress-overlay-logo {
  flex: 1;
  padding: 16px;
}

.ingress-overlay-logo img {
  max-height: 50px;
  max-width: none;
}

.ingress-overlay-close {
  cursor: pointer;
  font-size: 2.75rem;
  padding-right: 16px;
}

.ingress-overlay-close a {
  color: #111;
}

.ingress-mobile.open .ingress-mobile-overlay {
  display: block;
  overflow: auto;
}

.ingress-mobile-lang-dropdown a,
.ingress-mobile-search span {
  font-size: 0.75rem;
}

.ingress-mobile-lang-row ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.ingress-lang-row a {
  font-size: 1rem;
  color: #111111;
  text-decoration: none;
}

.ingress-searchbar {
  display: none;
}

.ingress-searchbar form {
  position: relative;
}

.ingress-mobile.searching + .ingress-searchbar {
  display: block;
  width: 100%;
}

.ingress-search button {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.ingress-search input::placeholder {
  padding-left: 12px;
}

.ingress-search input {
  padding: 8px 16px 8px 32px;
}

.ingress-searchbar-mobile input {
  padding: 1rem;
}

.ingress-searchbar-mobile button {
  display: flex;
  position: absolute;
  right: 20px;
  top: 19%;
  transform: translateY(-50%);
}

@media (max-width: 992px) {
  .ingress-desktop {
    display: none;
  }

  .ingress-mobile {
    display: block;
  }

  .ingress-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
  }

  .ingress-mobile-nav li a,
  .ingress-mobile-menu a {
    font-size: 1.25rem;
    color: #111111;
    word-break: break-word;
  }

  .ingress-searchbar input {
    padding: 10px;
    width: 100%;
  }

  .ingress-searchbar button {
    background: transparent;
    position: absolute;
    right: 12px;
    top: 28px;
    transform: translateY(-50%);
  }
}

.credits {
  border-top: 1px solid #d1d5db;
  padding: 24px 0;
  text-align: center;
}

.linkrow .linkrow-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 24px 16px;
}

.newsletter {
  margin: 32px auto;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid #f2f2f2;
  text-align: center;
}

.newsletter-heading {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--layout-color-accent);
}

.newsletter-body {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #555555;
  line-height: 1.4;
}

.newsletter-form input[type='email'] {
  width: 100%;
  max-width: 400px;
  padding: 10px 16px;
  font-size: 1rem;
  border: 1px solid #555555;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

@media (max-width: 768px) {
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0 1rem;
}

.pillar {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  min-width: 200px;
}

.pillar-heading {
  font-weight: bold;
  margin-bottom: 1rem;
}

.pillar-items {
  list-style-type: none;
  padding: 0 5px;
}

.pillar-info {
  padding: 0 5px;
}

.pillar-info p {
  margin: 0;
  padding: 5px 0;
}

.pillar-info img {
  max-height: 50px;
  max-width: none;
}

@media (max-width: 992px) {
  .pillars {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pillar {
    width: 100%;
  }
}

.socialmedia-content {
  display: flex;
  gap: 10px;
  padding: 2rem 0 1rem;
  justify-content: center;
  align-items: center;
}

.socialmedia-icon {
  height: 26px;
  width: 26px;
}

.socialmedia-platform {
  margin-top: 8px;
  color: #111111;
  font-size: 14px;
}

a.socialmedia-link {
  text-decoration: none;
}

.socialmedia-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.article-list img {
  max-width: var(--column-width);
  width: 100%;
  height: auto;
}

.banner {
  background-color: #f2f2f2;
  color: #111111;
  padding: 16px 32px;
}

.banner-content {
  display: flex;
  gap: 16px;
  font-size: 90%;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  gap: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.card-content {
  width: 360px;
  text-align: left;
  padding: 24px;
  border-radius: 0;
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
}

.card-content:hover {
  border: 1px solid #4b5563;
}

.card-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.card-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: #111111;
}

.card-body {
  color: #555555;
  padding: 16px;
}

.card-tag {
  border: 1px solid #d1d5db;
  color: black;
  background: #d1d5db;
  padding: 4px 10px;
  margin-top: 16px;
  font-size: 14px;
  display: inline-block;
  border-radius: 0;
}

.date {
  color: #555555;
}

@media (max-width: 992px) {
  .card {
    max-width: 100%;
    margin: 16px 0;
  }
  .card-body {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .cards {
    display: block;
  }
}

@media (max-width: 600px) {
  .page-component-card {
    display: block;
  }
}

.contact {
  width: 100%;
  max-width: 800px;
  margin: 32px auto;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 992px) {
  .contact {
    padding: 16px;
  }
}

.contact label {
  display: block;
  font-size: 16px;
  color: #333333;
  margin-bottom: 4px;
}

.contact small {
  font-size: 0.75rem;
  color: #555555;
  margin-bottom: 8px;
}

.contact textarea {
  height: 160px;
}

.contact input:not([type='checkbox']):not([type='radio']),
.contact textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2 rgba(79, 70, 229, 0.2);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  font-size: 1rem;
  font-weight: 200;
}

span.required {
  color: #ff0000;
}

.contact .error {
  font-size: 0.75rem;
  color: #ff0000;
  margin-top: 4px;
  display: block;
}

.contact .submit {
  margin-top: 24px;
}

.contact input[type='submit'] {
  width: auto;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 1.25rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.contact input[type='submit']:hover {
  background: #333333;
}

.faq {
  border-radius: 0;
  background-color: transparent;
  text-align: center;
}

.faq-question {
  padding: 16px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  background: #f2f2f2;
}

.faq-parent.open .faq-question {
  background: #f2f2f2;
}

.faq-question .chevron {
  display: flex;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-answer a {
  text-decoration: underline;
}

.faq-item.open .faq-question-toggler {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
  padding: 16px 16px;
  text-align: left;
  margin: 0;
  background: #ffffff;
}

.faq-answer-text ul {
  padding: 0 24px 16px;
}

.faq-answer-text li {
  list-style-position: inherit;
}

.faq-question-toggler {
  margin-left: auto;
}

.gallery {
  position: relative;
}

.gallery-slide {
  background: #000;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
  min-height: 550px;
  object-fit: contain;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  color: #000000;
  background: #ffffff;
  opacity: 0.7;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 16px;
  transition: background 0.6s ease;
}

.gallery-next {
  right: 0;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #d1d5db;
}

.gallery-dots {
  text-align: center;
  position: relative;
  bottom: 26px;
}

.gallery-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  border: 1px solid #fff;
}

.gallery-dot:hover,
.gallery-dot.active {
  background: #111;
}

.googlemap-list {
  margin-top: 16px;
  padding: 0 16px;
}

.googlemap-list li {
  list-style-type: none;
  margin-bottom: 24px;
}

.googlemap-list-name {
  display: flex;
  margin-bottom: 8px;
}

.googlemap-list-address {
  color: #555555;
  font-size: 14px;
  font-weight: 400;
}

.googlemap-list-details {
  margin-top: 10px;
  font-size: 14px;
}

.googlemap-label {
  margin-left: 8px;
}

section:has(.hero) {
  padding: 0;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
  text-align: left;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 32px;
}

.hero-container {
  background: transparent;
}

.hero-container.light {
  color: #ffffff;
}

.hero-container.dark {
  color: #000000;
}

.hero-overlay {
  max-width: 700px;
  background: transparent;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.hero-overlay.dark {
  background: rgba(255, 255, 255, 0.8);
  padding: 32px;
}

.hero-overlay.light {
  background: rgba(0, 0, 0, 0.7);
  padding: 32px;
}

.hero-links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero-bg img {
    height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 16px 0;
  }

  .hero-content p {
    font-size: 1.25rem;
  }

  .hero-overlay.white,
  .hero-overlay.black {
    padding: 0;
  }
}

pre code[class^='language-'],
pre code[class*=' language-'] {
  display: block;
  overflow-x: auto;
  padding: 1em;
  background: #f8fafa;
  color: #000000;
  font-family: var(--font-monospace);
  font-size: 1rem;
}

pre code[class^='language-'] *,
pre code[class*=' language-'] * {
  font-family: var(--font-monospace);
  font-size: 1rem;
}

code[class^='language-'],
code[class*=' language-'] {
  padding: 2px 4px;
}

/* token colors */
.hljs-comment {
  color: var(--hljs-comment);
}

.hljs-punctuation,
.hljs-tag {
  color: var(--hljs-punctuation);
}

.hljs-tag .hljs-attr,
.hljs-tag .hljs-name {
  color: var(--hljs-tag-name);
}

.hljs-attribute,
.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-name,
.hljs-selector-tag,
.hljs-section,
.hljs-title,
.hljs-strong {
  color: var(--hljs-keyword);
  font-weight: 700;
}

.hljs-deletion,
.hljs-number,
.hljs-quote,
.hljs-selector-class,
.hljs-selector-id,
.hljs-string,
.hljs-template-tag,
.hljs-type,
.hljs-section,
.hljs-title {
  color: var(--hljs-string);
}

.hljs-link,
.hljs-operator,
.hljs-regexp,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-symbol,
.hljs-template-variable,
.hljs-variable {
  color: var(--hljs-variable);
}

.hljs-literal {
  color: var(--hljs-literal);
}

.hljs-addition,
.hljs-built_in,
.hljs-bullet,
.hljs-code {
  color: var(--hljs-built_in);
}

.hljs-meta {
  color: var(--hljs-meta);
}

.hljs-meta .hljs-string {
  color: var(--hljs-meta-string);
}

.hljs-emphasis {
  font-style: italic;
}

.infobox {
  padding: 16px 16px 24px;
  max-width: 100%;
  margin: 16px 0;
  background: #f2f2f2;
}

.infobox summary {
  cursor: pointer;
  margin-top: 1rem;
}

.infobox details {
  cursor: pointer;
}

.infobox summary {
  list-style: none;
  display: flex;
}

.infobox details summary > img {
  margin-left: 4px;
}

.infobox summary button {
  pointer-events: none;
}

.infobox details[open] summary button.open {
  display: none;
}

.infobox details:not([open]) summary button.close {
  display: none;
}

/* .infobox details[open] summary > img {
  transform: rotate(-90deg);
} */

.infobox details {
  display: flex;
  flex-direction: column;
}

.infobox summary {
  order: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.infobox details[open] summary {
  order: 1;
  margin-top: 1rem;
}

.infobox .infobox-details {
  order: 0;
}


.navigation-content {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem;
  scroll-snap-type: x mandatory;
}

.navigation-content::-webkit-scrollbar {
  display: none;
}

.navigation-link {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #f2f2f2;
  background: #000000;
  cursor: pointer;
  scroll-snap-align: start;
  color: #f2f2f2;
}

.pricing {
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  padding: 0 1rem;
}

.pricing-plan {
  display: flex;
  flex-direction: column;
  width: 360px;
  text-align: left;
  padding: 24px;
  border: 1px solid #555555;
  border-radius: 0;
  background-color: #ffffff;
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-name {
  font-size: 1.5rem;
  color: #111111;
}

.pricing-badge {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.75rem;
  color: #000000;
  border: 1px solid #d1d5db;
  background: #d1d5db;
  border-radius: 0;
  padding: 4px 8px;
  float: right;
  display: inline;
}

.pricing-info {
  display: inline-block;
  margin: 16px 0 32px;
  color: #555555;
  font-weight: 100;
}

.pricing-price {
  font-weight: bold;
  color: #555555;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 48px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 2px solid #a0a0a0;
  color: #555555;
}

.pricing-button {
  margin-top: auto;
}

@media (max-width: 768px) {
  .pricing-plan {
    display: block;
    width: 100%;
  }
  .pricing-content {
    width: 100%;
  }
}

.quote {
  max-width: 480px;
  margin: 16px 0;
  padding: 16px;
}

.quote blockquote {
  border-left: 2px solid #000000;
  margin: 0;
  padding: 36px 24px 32px;
  font-style: italic;
  font-size: 1.25rem;
  color: #333333;
  position: relative;
  border-radius: 0;
}

.quote blockquote::before {
  content: '“';
  font-size: 4rem;
  color: #111111;
  position: absolute;
  top: calc(-1 * 20px);
  left: 12px;
  opacity: 0.3;
}

.quote-author {
  display: block;
  margin-top: 16px;
  text-align: right;
  font-size: 1rem;
  color: #555555;
  font-weight: bold;
}

.search-form {
  display: flex;
}

.search input[type='text'] {
  background-color: #ffffff;
  border-radius: 0;
  width: 100%;
  max-width: 700px;
  padding: 10px;
  border: 1px solid #555;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search input[type='text']:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.search-button {
  position: relative;
  background: #000000;
  border: none;
  cursor: pointer;
  padding: 12px 10px 16px 24px;
  border: 1px solid #000000;
  margin: 0 0 0 calc(-1 * 2px);
  color: #ffffff;
}

.search-button .search-icon {
  margin-right: 8px;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  top: 4px;
  right: 4px;
}

.search-item-title span {
  color: #555555;
  font-size: 14px;
}

.search-result-item {
  margin-bottom: 1rem;
}

.search-item-desc {
  font-size: 95%;
}

.stats-data {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  padding: 2rem 0;
  border: 1px solid #f2f2f2;
}

.stats dl {
  text-align: center;
}

.stats dt {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}

.stats dd {
  color: #4b5563;
  padding: 0;
  margin: 0;
}

.testimonial {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.testimonial-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-logo {
  display: block;
  margin: 32px auto;
  height: 64px;
}

.testimonial-quote blockquote {
  margin-top: 40px;
  margin: 0;
  text-align: left;
  font-size: 1.5rem;
  color: #000000;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.testimonial figcaption img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonial-author {
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
  color: #000000;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #4b5563;
}

@media (max-width: 992px) {
  .testimonial {
    padding: 0;
  }
  .testimonial-content {
    max-width: 700px;
  }
  .testimonial-quote blockquote {
    font-size: 1.25rem;
  }
}


.video {
  background-color: transparent;
  margin: 1rem 0;
}

.video-title {
  color: #333333;
}

.video-info {
  margin-bottom: 1.5rem;
}

.video-container {
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: 600px;
  display: block;
}

.video-caption {
  padding: 1rem;
  color: #555555;
}

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-top: 4px;
  margin-left: auto;
}

.burger-line {
  width: 27px;
  height: 2px;
  background: #000000;
  margin: 4px 0;
  transition: 0.3s;
}

.burger-text {
  font-size: 0.75rem;
}

.button {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button.primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid transparent;
}

.button.primary:hover {
  background: #222222;
  color: #ffffff;
  border: 1px solid transparent;
}

.button.secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid transparent;
}

.button.secondary:hover {
  background: #f0f0f0;
  color: #000000;
  border: 1px solid transparent;
}

.button.outline-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.button.outline-light:hover {
  border: 1px solid #d1d5db;
}

.button.outline-dark {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.button.outline-dark:hover {
  border: 1px solid #333333;
}

a.button:hover {
  text-decoration: none;
}

.dialog {
  display: grid;
  place-items: center;
  margin-top: 80px;
}

.dialog-content {
  width: 100%;
  max-width: 750px;
  min-height: 400px;
  padding: 1rem 2rem;
}

.dialog-top {
  display: flex;
}

.dialog-top h1 {
  flex-grow: 1;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
}

.dialog-close a {
  font-size: 40px;
  color: black;
  cursor: pointer;
  text-decoration: none;
}

:where(.dialog input, .dialog button, .dialog textarea, .dialog select) {
  width: 100%;
  max-width: 600px;
}

.field {
  margin-bottom: 36px;
}

.field label,
legend {
  margin-bottom: 8px;
}

.field.hidden {
  display: none;
}

.field label {
  display: table;
}

.field label span {
  margin-left: 8px;
}

.field small {
  display: table;
  margin-bottom: 8px;
}

.field em.field-error {
  display: block;
  color: #ff0000;
}

.field-links {
  margin-left: 16px;
}

.flash {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 25px;
  z-index: 9999;
  color: #ffffff;
  background: #111111;
  opacity: 0.9;
}

.flash:has(#flash:empty) {
  display: none;
}

.flash::first-letter {
  text-transform: capitalize;
}


.grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--column-width, 280px), 1fr)
  );
  gap: 20px;
}

.griditem {
  width: 100%;
}


.layout {
  display: grid;
  grid-template-areas:
    'header'
    'main'
    'footer';
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  font-family: var(--font-family, system-ui, sans-serif);
}

/* Page */
.layout header,
.layout main,
.layout footer {
  display: flex;
  justify-content: center;
}

.layout header {
  grid-area: header;
  position: var(--header-position, static);
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height, auto);
}

.layout main {
  grid-area: main;
  margin-top: var(--header-height, 0);
}

.layout footer {
  grid-area: footer;
}

/* Inner */
.layout header > .inner,
.layout main > .inner,
.layout footer > .inner {
  width: 100%;
}

.layout header > .inner {
  max-width: var(--header-max-width, var(--layout-max-width, 100%));
}

.layout main > .inner {
  display: grid;
  max-width: var(--main-max-width, var(--layout-max-width, 100%));
  overflow-x: auto;
  overflow-y: visible;
}

.layout footer > .inner {
  max-width: var(--footer-max-width, var(--layout-max-width, 100%));
}

/* Columns */
.layout main > .inner {
  grid-template-columns: 1fr;
}

.layout main > .inner:where(:has(> nav:not(:empty))) {
  grid-template-columns: var(--column-width, 280px) 1fr;
}

.layout main > .inner:where(:has(> aside:not(:empty))) {
  grid-template-columns: 1fr var(--column-width, 280px);
}

.layout main > .inner:where(:has(> nav:not(:empty)):has(> aside:not(:empty))) {
  grid-template-columns: var(--column-width, 280px) 1fr var(
      --column-width,
      280px
    );
}

/* Prevent content stretch */
.layout main > .inner > * {
  min-width: 0;
  min-height: 0;
}

/* Hide empty slots and columns */
.layout main > .inner > *:empty:not(:has(*)) {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .layout main > .inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .layout main nav {
    grid-row: 1;
  }

  .layout main article {
    grid-row: 2;
  }

  .layout main aside {
    grid-row: 3;
  }
}

.page-section-introtext {
  width: 100%;
}

.page-section-introtext p {
  max-width: 84ch;
}

@media (max-width: 992px) {
  .page-section-introtext p {
    max-width: 100%;
  }
}

.sidebar {
  padding: 8px 16px;
  background: #f8fafa;
}

.sidebar ul {
  padding: 0;
  list-style: none;
}

.sidebar-desktop {
  display: block;
}

.sidebar-mobile {
  display: none;
}

/* Mobile Links */
.sidebar-mobile-links > ul {
  border-radius: 5px;
}

.sidebar-mobile-links > ul li {
  position: relative;
  border-radius: 7px;
  transition: all 0.3s ease;
}

.sidebar-mobile-links > ul > li {
  background: #000;
}

.sidebar-mobile-links > ul > li a {
  color: #fff;
}

.sidebar-mobile-links > ul a {
  display: flex;
  position: relative;
  color: #111111;
  text-decoration: none;
  padding: 3px 6px;
}

.sidebar-mobile-links > ul span {
  flex-grow: 1;
}

.sidebar-mobile-links > ul img[alt='toggle'] {
  transform: rotate(90deg);
  margin-left: 8px;
  filter: invert(1);
}

.sidebar-mobile-links > ul li ul {
  display: none;
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}

.sidebar-mobile-links > ul li ul a {
  color: #000;
}

.sidebar-mobile-links > ul li ul li:hover {
  background: #f5f5f5;
}

.sidebar-mobile-links > ul li a.open + ul {
  display: block;
}

.sidebar-mobile-links > ul li a.open img[alt='toggle'] {
  transform: rotate(-90deg);
}

/* Mobile Groups */
.sidebar-mobile-groups {
  position: relative;
}

.sidebar-mobile-groups-menu {
  display: none;
  position: absolute;
  top: 32px;
  left: -4px;
  background: #fff;
  padding: 12px 150px 12px 28px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  font-size: 95%;
}

.sidebar-mobile-groups menu {
  padding: 0;
  cursor: pointer;
}

.sidebar-mobile-groups menu img {
  position: relative;
  top: 6px;
}

.sidebar-mobile-groups menu.open + .sidebar-mobile-groups-menu {
  display: block;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .sidebar-desktop {
    display: none;
  }

  .sidebar-mobile {
    display: block;
  }
}

