@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.drop-shadow {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #7a7470;
}

.rounded-s {
  border-radius: 4px;
}

.rounded-m {
  border-radius: 8px;
}

.rounded-l {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 16px;
}

:root {
  /* --- Spacing Scale (8px / 4px Base) --- */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-3xl: 4rem;
  --page-padding: var(--space-md); /* 16px mobile baseline */
}

/*
* Based on: https://www.boag.online/notepad/post/css-reset
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

a {
  color: inherit; /* Übernimmt die Textfarbe des Elternelements */
  text-decoration: inherit; /* Entfernt die standardmässige Unterstreichung */
  cursor: pointer; /* Behält den typischen Klick-Finger bei */
}

/* Verhindert unerwünschte Farbwechsel bei bereits besuchten Links */
a:visited {
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  appearance: none; /* Entfernt plattformspezifische Standard-Styles */
  -webkit-appearance: none;
}

body {
  background-color: #faf8f8;
}

.container {
  max-width: 900px;
  margin: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.container__wide {
  position: relative;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 600px) {
  .content {
    max-width: 500px;
  }
}

.loop {
  margin-block-start: 50px;
  display: grid;
  row-gap: var(--space-xl);
  column-gap: var(--space-lg);
  align-items: center;
}

/* ============================================================
   EDITOR / RICH-TEXT CONTENT STYLES
   ------------------------------------------------------------
   Scope: .editor
   Purpose: Styles for HTML output from Craft CMS Redactor/CKEditor
   fields, plus a small set of reusable "modules" that editors
   can drop into a field via a Redactor button.
   ============================================================ */
.editor {
  color: #1f1c1b;
}
.editor p,
.editor ul,
.editor ol,
.editor blockquote,
.editor figure,
.editor .table-wrapper,
.editor .video-embed,
.editor .download-list {
  margin-top: 0;
  margin-bottom: var(--space-md);
}
.editor p:last-child,
.editor ul:last-child,
.editor ol:last-child,
.editor blockquote:last-child,
.editor figure:last-child,
.editor .table-wrapper:last-child,
.editor .video-embed:last-child,
.editor .download-list:last-child {
  margin-bottom: 0;
}
.editor h1,
.editor h2,
.editor h3,
.editor h4 {
  color: #1f1c1b;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}
.editor h1:first-child,
.editor h2:first-child,
.editor h3:first-child,
.editor h4:first-child {
  margin-top: 0;
}
.editor h1 {
  margin-top: var(--space-xxl);
}
.editor h2 {
  margin-top: var(--space-xl);
}
.editor h3 {
  margin-top: var(--space-lg);
}
.editor h4 {
  margin-top: var(--space-md);
}
.editor .tag {
  margin-bottom: var(--space-sm);
  display: inline-flex;
}
.editor .tag + .tag {
  margin-left: var(--space-xxs);
}
.editor p {
  line-height: 1.6;
}
.editor strong,
.editor b {
  font-weight: 700;
}
.editor em,
.editor i {
  font-style: italic;
}
.editor small {
  color: #7a7470;
}
.editor a:not([class]) {
  color: #1f1c1b;
  font-weight: 600;
  text-underline-offset: 2px;
  text-decoration: underline;
  text-decoration-color: #ffcf03;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.editor a:not([class]):hover, .editor a:not([class]):focus-visible {
  color: #524d4b;
  text-decoration-color: #1f1c1b;
}
.editor a:not([class]):focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}
.editor a:not([class])[target=_blank] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.editor a:not([class])[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.2s ease;
}
.editor a:not([class])[target=_blank]:hover::after, .editor a:not([class])[target=_blank]:focus-visible::after {
  transform: translate(1px, -1px);
}
.editor ul:not([class]),
.editor ol:not([class]) {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.editor ul:not([class]) li,
.editor ol:not([class]) li {
  position: relative;
  line-height: 1.5;
}
.editor ul:not([class]) li {
  padding-left: var(--space-md);
}
.editor ul:not([class]) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background-color: #ffcf03;
  border-radius: 50%;
}
.editor ol:not([class]) {
  counter-reset: editor-ol;
}
.editor ol:not([class]) li {
  padding-left: var(--space-lg);
  counter-increment: editor-ol;
}
.editor ol:not([class]) li::before {
  content: counter(editor-ol) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #1f1c1b;
}
.editor li > ul,
.editor li > ol {
  margin-top: var(--space-xs);
  margin-bottom: 0;
}
.editor blockquote:not([class]) {
  border-left: 3px solid #ffcf03;
  padding: var(--space-xxs) 0 var(--space-xxs) var(--space-md);
  font-style: italic;
  color: #524d4b;
}
.editor hr {
  border: none;
  height: 1px;
  background-color: #d9d6d5;
  margin: var(--space-xl) 0;
}
.editor code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875em;
  background-color: #e5e4e3;
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.editor pre {
  background-color: #262e3c;
  color: #faf8f8;
  padding: var(--space-md);
  border-radius: 8px;
  overflow-x: auto;
}
.editor pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.editor .table-wrapper {
  overflow-x: auto;
  border: 1px solid #d9d6d5;
  border-radius: 8px;
}
.editor table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.editor table th,
.editor table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid #d9d6d5;
}
.editor table thead th {
  background-color: #e5e4e3;
  font-weight: 700;
  white-space: nowrap;
}
.editor table tbody tr:last-child td {
  border-bottom: none;
}
.editor table tbody tr:hover {
  background-color: rgba(31, 28, 27, 0.03);
}
.editor img:not([class]),
.editor figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.editor figure {
  margin: 0;
}
.editor figcaption {
  margin-top: var(--space-xs);
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: #7a7470;
  text-align: center;
}
.editor .align-left {
  float: left;
  margin-right: var(--space-lg);
  margin-bottom: var(--space-sm);
  max-width: 45%;
}
.editor .align-right {
  float: right;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  max-width: 45%;
}
.editor .align-center {
  margin-left: auto;
  margin-right: auto;
}
.editor .align-full {
  width: 100%;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.editor .align-full img {
  border-radius: 0;
}

/* ============================================================
   MODULE COMPONENT OVERRIDES (Insulated from layout inheritance)
   ============================================================ */
/* Download List Module */
.editor .download-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.editor .btn-download {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: rgba(31, 28, 27, 0.05);
  border-radius: 4px;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  color: #1f1c1b;
  transition: background-color 0.2s ease;
}
.editor .btn-download:hover, .editor .btn-download:focus-visible {
  background-color: rgba(31, 28, 27, 0.1);
}
.editor .btn-download:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
}
.editor .btn-download::after {
  content: "↓";
  margin-left: auto;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.editor .btn-download:hover::after {
  transform: translateY(2px);
}

.editor .btn-download-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1c1b;
  color: #ffcf03;
  border-radius: 4px;
  font-family: "Public Sans", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.editor .btn-download-text {
  display: flex;
  flex-direction: column;
}

.editor .btn-download-label {
  font-weight: 700;
  line-height: 1.3;
}

.editor .btn-download-meta {
  font-size: 0.8125rem;
  color: #7a7470;
}

/* Accordion Module */
.editor details.accordion {
  border: 1px solid #d9d6d5;
  border-radius: 4px;
  background-color: #faf8f8;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: var(--space-xs);
}
.editor details.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-md);
  font-weight: 700;
  position: relative;
  padding-right: var(--space-xl);
  transition: background-color 0.15s ease;
}
.editor details.accordion summary::-webkit-details-marker {
  display: none;
}
.editor details.accordion summary:hover {
  background-color: rgba(31, 28, 27, 0.03);
}
.editor details.accordion summary:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: -2px;
}
.editor details.accordion summary::after {
  content: "";
  position: absolute;
  right: var(--space-md);
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #1f1c1b;
  border-bottom: 1.5px solid #1f1c1b;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}
.editor details.accordion[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}
.editor details.accordion[open] summary {
  border-bottom: 1px solid #d9d6d5;
}

.editor .accordion-content {
  padding: var(--space-md);
}
.editor .accordion-content > * {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}
.editor .accordion-content > *:last-child {
  margin-bottom: 0;
}

/* Call to Action (CTA) Box Module */
.editor .cta-box {
  background-color: #262e3c;
  color: #faf8f8;
  border-radius: 8px;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
@media (min-width: 700px) {
  .editor .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }
}
.editor .cta-box .cta-box-content h3,
.editor .cta-box .cta-box-content h2 {
  color: #ffcf03;
  margin: 0 0 var(--space-xxs) 0;
}
.editor .cta-box .cta-box-content p {
  color: #d9d6d5;
  margin: 0;
}

.editor .cta-box-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: #ffcf03;
  color: #1f1c1b;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px 10px 24px;
  border-radius: 100px;
  border: 1px solid #524d4b;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.editor .cta-box-button::after {
  content: "->";
}
.editor .cta-box-button:hover, .editor .cta-box-button:focus-visible {
  background-color: rgb(232, 188, 0);
  transform: translateX(2px);
}
.editor .cta-box-button:focus-visible {
  outline: 2px solid #faf8f8;
  outline-offset: 2px;
}

/* Callout / Notice Box Module */
.editor .callout {
  border-radius: 4px;
  border-left: 4px solid #7a7470;
  background-color: #e5e4e3;
  padding: var(--space-md);
}
.editor .callout p {
  margin: 0;
}
.editor .callout p + p {
  margin-top: var(--space-xs);
}

.editor .callout--info {
  border-left-color: #6a7da0;
  background-color: rgba(106, 125, 160, 0.1);
}

.editor .callout--warning {
  border-left-color: #ffcf03;
  background-color: rgba(255, 207, 3, 0.15);
}

.editor .callout--success {
  border-left-color: #3a8a5a;
  background-color: rgba(58, 138, 90, 0.1);
}

.editor .callout--error {
  border-left-color: #ef2917;
  background-color: rgba(239, 41, 23, 0.08);
}

/* Pull-Quote Module (Standalone Block Variant) */
.editor blockquote.pull-quote {
  border: none;
  border-top: 2px solid #1f1c1b;
  border-bottom: 2px solid #1f1c1b;
  padding: var(--space-xl) 0;
  margin-block: var(--space-xl);
  text-align: center;
  font-style: normal;
  color: #1f1c1b;
}
.editor blockquote.pull-quote p {
  font-family: "Public Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: inherit;
  margin: 0;
}
.editor blockquote.pull-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7a7470;
}
.editor blockquote.pull-quote cite::before {
  content: "— ";
}

/* Responsive Video Embed Module */
.editor .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1f1c1b;
  margin-bottom: var(--space-lg);
}
.editor .video-embed iframe,
.editor .video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Multi-Column Layout Module */
.editor .editor-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.editor .editor-columns > * {
  margin: 0;
}

@media (min-width: 700px) {
  .editor .editor-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .editor .editor-columns--thirds {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Job Detail Extensions */
.job-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  font-weight: 600;
  color: #7a7470;
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: color 0.2s ease;
}
.job-back-link:hover, .job-back-link:focus-visible {
  color: #1f1c1b;
}
.job-back-link:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.job-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.job-meta-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background-color: #ffcf03;
  color: #1f1c1b;
}

.job-meta-badge--muted {
  background-color: #e5e4e3;
  color: #7a7470;
  font-weight: 600;
}

html {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Public Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1,
.heading-1 {
  font-size: 2.296rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 600px) {
  h1,
  .heading-1 {
    font-size: 2.602rem;
  }
}
@media (min-width: 1200px) {
  h1,
  .heading-1 {
    font-size: 3.074rem;
  }
}

h2,
.heading-2,
.editor h1 {
  font-size: 1.215rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 600px) {
  h2,
  .heading-2,
  .editor h1 {
    font-size: 1.424rem;
  }
}
@media (min-width: 1200px) {
  h2,
  .heading-2,
  .editor h1 {
    font-size: 2.304rem;
    font-weight: 700;
  }
}

h3,
.heading-3,
.editor h2 {
  font-size: 1.138rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 600px) {
  h3,
  .heading-3,
  .editor h2 {
    font-size: 1.266rem;
  }
}
@media (min-width: 1200px) {
  h3,
  .heading-3,
  .editor h2 {
    font-size: 1.728rem;
    font-weight: 700;
  }
}

h4,
.heading-4,
.editor h3,
.editor h4,
.editor h5 {
  font-size: 1.067rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 600px) {
  h4,
  .heading-4,
  .editor h3,
  .editor h4,
  .editor h5 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  h4,
  .heading-4,
  .editor h3,
  .editor h4,
  .editor h5 {
    font-size: 1.35rem;
    font-weight: 700;
  }
}

p,
.paragraph {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

small,
label,
.text-small,
textarea,
input {
  font-family: "Inter", sans-serif;
  font-size: 0.878rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (min-width: 600px) {
  small,
  label,
  .text-small,
  textarea,
  input {
    font-size: 0.889rem;
  }
}
@media (min-width: 1200px) {
  small,
  label,
  .text-small,
  textarea,
  input {
    font-size: 0.875rem;
  }
}

.label {
  font-family: "Inter", sans-serif;
  font-size: 0.878rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .label {
    font-size: 0.79rem;
  }
}
@media (min-width: 1200px) {
  .label {
    font-size: 0.79rem;
  }
}

figcaption,
.caption {
  font-family: "Inter", sans-serif;
  font-size: 0.878rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (min-width: 600px) {
  figcaption,
  .caption {
    font-size: 0.79rem;
  }
}
@media (min-width: 1200px) {
  figcaption,
  .caption {
    font-size: 0.75rem;
  }
}

.contact.page-content .container {
  flex-wrap: wrap;
  display: flex;
  gap: var(--space-lg);
  flex-direction: column;
}
@media (min-width: 900px) {
  .contact.page-content .container {
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.site-header {
  background-color: rgba(250, 248, 248, 0.72);
  height: 75px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #7a7470;
  display: flex;
  align-items: center;
  z-index: 999;
}
.site-header .header-actions > button ::after {
  content: unset;
}
.site-header .container__wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1001;
}
.is-scrolled .site-header .logo {
  transform: translateY(calc(-50% + 10px));
}
.site-header .logo svg {
  height: 70px;
  width: auto;
}
.site-header .logo #logo-text {
  transition: opacity 0.2s ease;
}
.is-scrolled .site-header .logo #logo-text {
  opacity: 0;
  pointer-events: none;
}
.site-header .nav-link {
  text-decoration: none;
  color: #524d4b;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.site-header .nav-link:hover {
  color: #1f1c1b;
}
.site-header .nav-link:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 3px;
  border-radius: 4px;
}
.site-header .nav-link.is-active {
  color: #1f1c1b;
  font-weight: 700;
}
.site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .primary-nav {
  margin-left: auto;
  visibility: hidden;
}
.site-header .primary-nav .menu-primary {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.site-header .primary-nav .menu-primary .nav-link {
  padding-bottom: 6px;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-left: var(--space-lg);
}
.site-header .search-toggle,
.site-header .nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.site-header .search-toggle:hover,
.site-header .nav-toggle:hover {
  background-color: #faf8f8;
  border-color: #7a7470;
}
.site-header .search-toggle:focus-visible,
.site-header .nav-toggle:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
}
.site-header .search-toggle {
  width: 36px;
}
.site-header .search-toggle svg {
  color: #1f1c1b;
  transition: color 0.2s ease;
}
body.nav-menu-open .site-header .search-toggle svg {
  color: #ffffff;
}
body.nav-menu-open .site-header .search-toggle,
body.nav-menu-open .site-header .menu-primary {
  display: none;
}
body.nav-menu-open .site-header .logo {
  transform: translateY(calc(-50% + 10px));
}
body.nav-menu-open .site-header .logo .change-color {
  fill: white;
}
body.nav-menu-open .site-header .logo .change-stroke {
  fill: none;
  stroke: white;
  stroke-width: 0.75px; /* Controls how thick the outline is */
}
body.nav-menu-open .site-header .logo #logo-text {
  opacity: 0;
  pointer-events: none;
}
body.nav-menu-open .site-header .search-toggle:hover,
body.nav-menu-open .site-header .nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.site-header .nav-toggle {
  width: auto;
  min-width: 36px;
  gap: var(--space-xs);
  padding-inline: var(--space-xs);
}
.site-header .hamburger {
  position: relative;
  width: 18px;
  height: 13px;
  flex-shrink: 0;
}
.site-header .hamburger .hamburger-line {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background-color: #1f1c1b;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
}
.site-header .hamburger .hamburger-line:nth-child(1) {
  top: 0;
}
.site-header .hamburger .hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.site-header .hamburger .hamburger-line:nth-child(3) {
  bottom: 0;
}
.site-header .nav-toggle-label {
  display: none;
  color: #1f1c1b;
  transition: color 0.2s ease;
}
.site-header .nav-toggle.is-active .hamburger-line {
  background-color: #ffffff;
}
.site-header .nav-toggle.is-active .nav-toggle-label {
  color: #ffffff;
}
.site-header .nav-toggle.is-active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-header .nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .nav-toggle.is-active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.site-header .search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 998;
  background-color: rgba(250, 248, 248, 0.72);
  border-bottom: 1px solid #7a7470;
  display: flex;
  align-items: center;
}
.site-header .search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header .search-panel .container {
  padding-block: var(--space-md);
  display: block;
}
.site-header .search-panel .search-form {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.site-header .search-panel .form-group {
  flex: 1;
  margin: 0;
}
.site-header .search-panel input[type=search] {
  width: 100%;
  height: 42px;
  padding: 0 var(--space-md);
  border: 1px solid #7a7470;
  border-radius: 100px;
  background-color: #faf8f8;
  color: #1f1c1b;
  font-size: 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.site-header .search-panel input[type=search]::placeholder {
  color: #7a7470;
}
.site-header .search-panel input[type=search]:focus {
  outline: none;
  border-color: #ffcf03;
  box-shadow: 0 0 0 3px rgba(255, 207, 3, 0.3);
  background-color: #ffffff;
}
.site-header .search-panel .search-close {
  flex-shrink: 0;
  width: 36px;
}

.nav-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: #262e3c;
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.nav-panel {
  color: #faf8f8;
}

.nav-panel-inner {
  min-height: 100%;
  padding: calc(75px + var(--space-xl)) var(--page-padding) var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xxl);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .nav-panel-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3xl);
    padding-top: calc(75px + var(--space-3xl));
  }
}
.nav-overlay-list {
  flex: 1;
  min-width: 0;
}

.nav-overlay-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 207, 3, 0.18);
}
.nav-overlay-item:first-child {
  border-top: 1px solid rgba(255, 207, 3, 0.18);
}

.nav-overlay-link {
  display: inline-block;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav-overlay-link:hover {
  color: #ffcf03;
}
.nav-overlay-link:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 4px;
  border-radius: 2px;
}

@media (min-width: 600px) {
  .nav-overlay-link {
    font-size: 2.25rem;
  }
}
.nav-overlay-item.is-active .nav-overlay-link {
  color: #ffcf03;
}

.nav-overlay-sublist {
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.nav-overlay-sublink {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: var(--space-xxs) 0;
  transition: color 0.2s ease;
}
.nav-overlay-sublink:hover {
  color: #ffffff;
}
.nav-overlay-sublink:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}
.nav-overlay-sublink.is-active {
  color: #ffcf03;
  font-weight: 700;
}

.nav-overlay-aside {
  flex-shrink: 0;
  width: 100%;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 207, 3, 0.18);
}

@media (min-width: 900px) {
  .nav-overlay-aside {
    width: 280px;
    padding-top: 0;
    padding-left: var(--space-xxl);
    border-top: none;
    border-left: 1px solid rgba(255, 207, 3, 0.18);
  }
}
.nav-overlay-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffcf03;
  margin-bottom: var(--space-sm);
}

.nav-overlay-address {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.nav-overlay-phone {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: color 0.2s ease;
}
.nav-overlay-phone:hover, .nav-overlay-phone:focus-visible {
  color: #ffcf03;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .nav-panel {
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transform: none;
  }
}
/* ============================================================
   Mobile layout (< $breakpoint-desktop)
   ============================================================ */
@media (max-width: 991px) {
  body.nav-menu-open {
    overflow: hidden;
  }
  .site-header .search-panel .search-form {
    flex-wrap: wrap;
  }
  .site-header .search-panel .search-form .form-group {
    flex-basis: 100%;
  }
}
/* ============================================================
   Desktop layout (>= $breakpoint-desktop)
   ============================================================ */
@media (min-width: 992px) {
  .site-header .primary-nav {
    visibility: visible;
  }
  .site-header .nav-toggle {
    min-width: 84px;
    justify-content: center;
    padding-inline: var(--space-sm);
  }
  .site-header .nav-toggle .nav-toggle-label {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    white-space: nowrap;
  }
}
.footer-main {
  background-color: #262e3c;
  color: #faf8f8;
}
.footer-main a {
  transition: opacity 0.2s ease-in-out;
}
.footer-main a:hover {
  opacity: 0.8;
}
.footer-main hr {
  border: none;
  height: 1px;
  background-color: rgba(82, 77, 75, 0.4);
  margin: 1px 0;
}
.footer-main .container__wide {
  padding-top: 50px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.footer-main__brand {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 50px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer-main__brand {
    flex-direction: row;
  }
}
.footer-main__logo .logo {
  height: 50px;
}
.footer-main__description {
  max-width: 350px;
}
.footer-main__nav-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 50px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer-main__nav-group {
    flex-direction: row;
  }
}
.footer-main__nav-list ul {
  line-height: 1.4;
}
.footer-main__nav-title {
  font-weight: bold;
}
.footer-main__contact-group {
  background-color: #485670;
}
.footer-main__contact-group .container__wide {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 50px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer-main__contact-group .container__wide {
    flex-direction: row;
  }
}
.footer-main__contact-group .container__wide {
  justify-content: space-between;
}
.footer-main__address {
  font-style: normal;
  line-height: 1.4;
}
.footer-main__address-title {
  font-weight: bold;
}
.footer-main__meta {
  background-color: #1f1c1b;
  color: #c1c9d7;
}
.footer-main__meta .container__wide {
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 150px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer-main__meta .container__wide {
    flex-direction: row;
  }
}
.footer-main__meta-links ul {
  font-weight: normal;
}
@media (min-width: 1200px) {
  .footer-main__meta-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.page-header {
  padding-top: 150px;
  margin: 0 auto;
  isolation: isolate;
}
.page-header p {
  color: #524d4b;
}
.page-header .wrapper {
  padding-bottom: 50px;
}
.page-header .breadcrumb-item.is-active {
  position: relative;
  color: #1f1c1b;
  font-weight: 600;
  cursor: default;
  background-color: transparent;
  padding: 0 4px;
}
.page-header .breadcrumb-item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 35%;
  z-index: -1;
  background-color: #ffcf03;
  border-radius: 2px;
}
.page-header.has-bg {
  aspect-ratio: 6/1;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-direction: row;
  align-items: end;
  display: flex;
  justify-content: center;
  background-color: rgba(38, 46, 60, 0.8);
  z-index: 1;
  position: relative;
  color: #faf8f8 !important;
}
.page-header.has-bg p {
  color: #faf8f8 !important;
}
.page-header.has-bg .breadcrumb {
  display: none;
}
.page-header.has-bg .container {
  margin: unset;
  width: 100%;
}

.page-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 6/1;
  height: auto;
  object-fit: cover;
  z-index: -2;
}

.page-content {
  background-color: #e5e4e3;
  border-top: 1px solid #d9d6d5;
}
.page-content .container,
.page-content .container__wide {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* ============================================================
   JOB LIST
   ------------------------------------------------------------
   Simple stacked list of job cards, each fully clickable
   (stretched-link pattern — same technique as your existing
   .documents-block / .news-card) linking to a job detail page.

   Markup shape (rendered by partials/job-list.twig):

   <div class="job-list">
     <article class="job-card">
       <div class="job-card-content"> ... </div>
       <span class="job-card-cta">Stelle ansehen</span>
       <a class="job-card-link" href="..."></a>
     </article>
   </div>
   ============================================================ */
.job-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-xl);
}

.job-list-empty {
  color: #7a7470;
  padding: var(--space-lg) 0;
}

.job-card {
  position: relative;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid #d9d6d5;
  transition: padding-left 0.2s ease;
}
.job-card:first-child {
  border-top: 1px solid #d9d6d5;
}
.job-card:hover, .job-card:focus-within {
  padding-left: var(--space-sm);
}
.job-card:hover .job-card-cta, .job-card:focus-within .job-card-cta {
  color: #1f1c1b;
}
.job-card:hover .job-card-cta::after, .job-card:focus-within .job-card-cta::after {
  transform: translateX(4px);
}

.job-card-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.job-card-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.job-card-title {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1f1c1b;
}

.job-card-pensum {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 10px;
  border-radius: 100px;
  background-color: #ffcf03;
  color: #1f1c1b;
}

.job-card-meta {
  margin-top: var(--space-xxs);
  font-size: 0.875rem;
  color: #7a7470;
}

.job-card-meta-sep {
  margin: 0 var(--space-xxs);
}

.job-card-excerpt {
  margin-top: var(--space-sm);
  color: #524d4b;
  line-height: 1.5;
}

.job-card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
  margin-top: var(--space-md);
  font-weight: 700;
  color: #7a7470;
  transition: color 0.2s ease;
}
.job-card-cta::after {
  content: "->";
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.job-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.job-card-link:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: -2px;
  border-radius: 4px;
}

.news-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.project-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.history-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .history-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.history-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  flex: 1;
}
@media (min-width: 900px) {
  .history-card {
    min-height: 100%;
    aspect-ratio: 3/2;
  }
}
.history-card-content {
  position: relative;
  z-index: 1;
  background-color: rgba(38, 46, 60, 0.8);
  padding: 25px;
  display: flex;
  height: 100%;
  justify-content: end;
  flex-direction: column;
}
.history-card-content h3 {
  color: #faf8f8;
}
.history-card-content p {
  color: #d9d6d5;
}
.history-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.history-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.history-card:hover .history-card-image img {
  transform: scale(1.1);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .project-card {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-xl);
  }
}
.project-card .project-card-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #e5e4e3;
  flex-shrink: 0;
  aspect-ratio: 16/10;
}
.project-card .project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 600px) {
  .project-card .project-card-image {
    width: 200px;
  }
}
@media (min-width: 900px) {
  .project-card .project-card-image {
    width: 260px;
  }
}
.project-card .project-card-content {
  flex: 1;
}
.project-card .project-card-content p {
  margin-bottom: var(--space-md);
}

@media (min-width: 900px) {
  .project-card-featured .project-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    align-items: center;
  }
}
.project-card-featured .project-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.news-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  flex: 1;
  color: #faf8f8;
}
.news-card h3 {
  font-weight: bold;
}
@media (min-width: 900px) {
  .news-card {
    min-height: 100%;
    aspect-ratio: 3/2;
  }
}
.news-card .news-card-content {
  position: relative;
  z-index: 1;
  background-color: rgba(38, 46, 60, 0.8);
  padding: 25px;
  display: flex;
  height: 100%;
  justify-content: end;
  flex-direction: column;
}
.news-card .news-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.news-card .news-card-label {
  color: #ffcf03;
}
.news-card .news-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-featured {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
  grid-column: 1/-1;
}
@media (min-width: 900px) {
  .news-card-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xxl);
  }
}
.news-card-featured .news-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.news-card-featured button {
  margin-block-start: 12px;
}

/* ============================================================
   TEAM ACCORDION
   ------------------------------------------------------------
   Nested org-chart accordion (department > sub-department >
   contacts / staff). Built with native <details>/<summary> so
   arbitrary nesting works without JS, mirroring the chevron
   pattern used by .editor details.accordion.

   Markup shape (rendered by partials/team-accordion.twig):

   <div class="team-accordion">
     <details class="team-accordion-item team-accordion-item--level-1" open>
       <summary class="team-accordion-header">
         <span class="team-accordion-title">Department</span>
       </summary>
       <div class="team-accordion-body">
         <div class="team-grid team-grid--contacts"> ... </div>
         <div class="team-grid team-grid--staff"> ... </div>
         <div class="team-accordion-children">
           <details class="team-accordion-item team-accordion-item--level-2">...</details>
         </div>
       </div>
     </details>
   </div>
   ============================================================ */
.team-accordion {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-xl);
}

.team-accordion-item {
  border-bottom: 1px solid #d9d6d5;
}
.team-accordion-item:first-child {
  border-top: 1px solid #d9d6d5;
}

.team-accordion-header {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  position: relative;
  transition: background-color 0.15s ease;
}
.team-accordion-header::-webkit-details-marker {
  display: none;
}
.team-accordion-header:hover {
  color: #1f1c1b;
}
.team-accordion-header:focus-visible {
  outline: 1px solid #ffcf03;
  outline-offset: 1px;
  border-radius: 1px;
}
.team-accordion-header::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #1f1c1b;
  border-bottom: 1.5px solid #1f1c1b;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.team-accordion-item[open] > .team-accordion-header::after {
  transform: rotate(225deg);
}

.team-accordion-title {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1f1c1b;
}

.team-accordion-body {
  padding-bottom: var(--space-lg);
}
.team-accordion-body > * + * {
  margin-top: var(--space-lg);
}

.team-accordion-children {
  border-left: 1px solid #d9d6d5;
  padding-left: var(--space-lg);
}

.team-accordion-item--level-2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.team-accordion-item--level-2:first-child {
  border-top: none;
}
.team-accordion-item--level-2 > .team-accordion-header {
  padding: var(--space-sm) 0;
}
.team-accordion-item--level-2 .team-accordion-title {
  font-size: 1rem;
  font-weight: 600;
}

.team-accordion-item--level-3 .team-accordion-title {
  font-size: 0.9375rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .team-grid--contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .team-grid--contacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 600px) {
  .team-grid--staff {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md) var(--space-lg);
  }
}
@media (min-width: 900px) {
  .team-grid--staff {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .team-grid--staff {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.team-card {
  display: flex;
  flex-direction: column;
}

.team-card-image {
  aspect-ratio: 16/9;
  background-color: #e5e4e3;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: var(--space-sm);
}

.team-card-name {
  font-weight: 700;
  color: #1f1c1b;
  line-height: 1.3;
}

.team-card-role {
  font-size: 0.875rem;
  color: #524d4b;
  line-height: 1.4;
  margin-bottom: var(--space-xs);
}

.team-card-contact {
  font-size: 0.875rem;
  line-height: 1.5;
}
.team-card-contact a {
  color: #7a7470;
  text-decoration: none;
  transition: color 0.15s ease;
}
.team-card-contact a:hover, .team-card-contact a:focus-visible {
  color: #1f1c1b;
  text-decoration: underline;
  text-decoration-color: #ffcf03;
}
.team-card-contact a:focus-visible {
  outline: 1px solid #ffcf03;
  outline-offset: 1px;
  border-radius: 1px;
}

.team-grid--staff .team-card {
  padding-left: var(--space-sm);
  border-left: 1px solid #d9d6d5;
}

/* ============================================================
   LOCATION TABS
   ------------------------------------------------------------
   CSS-only tab switcher (hidden radio inputs + :checked
   sibling selectors). No JavaScript required.

   Markup order from partials/location-tabs.twig, all as direct
   children of .location-tabs:
     1. .location-tab-input  (hidden radios, one per location)
     2. .location-tabs-nav   (visible label "buttons")
     3. .location-tab-panel  (one per location, only the active
                              one is displayed)

   The @for loop below generates the "when input N is checked,
   highlight label N and show panel N" rules for up to 8 tabs.
   Raise the loop limit if you ever have more locations.
   ============================================================ */
.location-tabs {
  margin-top: var(--space-xl);
}

.location-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.location-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  border-bottom: 1px solid #d9d6d5;
  margin-bottom: var(--space-xl);
}

@media (max-width: 1190px) {
  .location-tabs-nav {
    flex-direction: column;
    gap: 2px;
    border-bottom: none;
    margin-bottom: var(--space-lg);
  }
  .location-tab-label {
    width: 100%;
    background-color: #e5e4e3;
    border-radius: 8px;
    padding: var(--space-md);
    box-sizing: border-box;
  }
  .location-tab-label::after {
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
  }
}
.location-tab-label {
  cursor: pointer;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #7a7470;
  padding: var(--space-sm) var(--space-md);
  position: relative;
  transition: color 0.2s ease;
}
@media (max-width: 599px) {
  .location-tab-label {
    scroll-snap-align: start;
  }
}
.location-tab-label::after {
  content: "";
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  bottom: -1px;
  height: 2px;
  background-color: transparent;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
.location-tab-label:hover {
  color: #1f1c1b;
}

.location-tab-panel {
  display: none;
}
.location-tab-panel > * + * {
  margin-top: var(--space-lg);
}

.location-tabs input.location-tab-input:nth-of-type(1):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(1) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(1):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(1)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(1):checked ~ .location-tab-panel:nth-of-type(1) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(1):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(1) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(2):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(2) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(2):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(2)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(2):checked ~ .location-tab-panel:nth-of-type(2) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(2):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(2) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(3):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(3) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(3):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(3)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(3):checked ~ .location-tab-panel:nth-of-type(3) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(3):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(3) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(4):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(4) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(4):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(4)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(4):checked ~ .location-tab-panel:nth-of-type(4) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(4):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(4) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(5):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(5) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(5):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(5)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(5):checked ~ .location-tab-panel:nth-of-type(5) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(5):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(5) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(6):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(6) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(6):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(6)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(6):checked ~ .location-tab-panel:nth-of-type(6) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(6):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(6) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(7):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(7) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(7):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(7)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(7):checked ~ .location-tab-panel:nth-of-type(7) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(7):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(7) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-tabs input.location-tab-input:nth-of-type(8):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(8) {
  color: #1f1c1b;
}
.location-tabs input.location-tab-input:nth-of-type(8):checked ~ .location-tabs-nav .location-tab-label:nth-of-type(8)::after {
  background-color: #ffcf03;
}
.location-tabs input.location-tab-input:nth-of-type(8):checked ~ .location-tab-panel:nth-of-type(8) {
  display: block;
}
.location-tabs input.location-tab-input:nth-of-type(8):focus-visible ~ .location-tabs-nav .location-tab-label:nth-of-type(8) {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-description {
  max-width: 72ch;
  line-height: 1.6;
  color: #1f1c1b;
}

.location-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background-color: #e5e4e3;
  border-radius: 8px;
  padding: var(--space-lg);
}

@media (min-width: 600px) {
  .location-meta {
    flex-direction: row;
  }
}
.location-meta-block {
  flex: 1;
}
.location-meta-block p {
  line-height: 1.5;
}
.location-meta-block p + p {
  margin-top: var(--space-sm);
}
.location-meta-block strong {
  color: #1f1c1b;
}
.location-meta-block a {
  color: #524d4b;
  text-decoration: underline;
  text-decoration-color: #ffcf03;
  text-underline-offset: 2px;
}
.location-meta-block a:hover, .location-meta-block a:focus-visible {
  color: #1f1c1b;
}
.location-meta-block a:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 2px;
  border-radius: 2px;
}

.location-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e5e4e3;
}

@media (min-width: 600px) {
  .location-map {
    aspect-ratio: 16/9;
  }
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mini-title {
  border-top: 1px solid;
  border-color: #d9d6d5;
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
}

.facts {
  display: none;
}
@media (min-width: 900px) {
  .facts {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: end;
  }
}
.facts .fact {
  text-align: center;
}
.facts .fact .number {
  display: block;
  color: #ffcf03;
}
.facts .fact .data {
  display: block;
}

button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
button a,
button span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: bold !important;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
button a:focus-visible,
button span:focus-visible {
  outline: 2px solid #ffcf03;
  outline-offset: 3px;
}
button a::after,
button span::after {
  content: "->";
  display: inline-block;
  word-break: break-word;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
button.style-1 a, button.style-1 span, button.style-2 a, button.style-2 span, button.style-3 a, button.style-3 span {
  border-radius: 100px;
  padding: 10px 18px 10px 24px;
}
button.style-1 a, button.style-1 span {
  background-color: #1f1c1b;
  color: #faf8f8;
  border: 1px solid #1f1c1b;
}
button.style-1 a:hover, button.style-1 a:focus, button.style-1 span:hover, button.style-1 span:focus {
  background-color: rgb(58.2586206897, 52.6206896552, 50.7413793103);
  border-color: rgb(58.2586206897, 52.6206896552, 50.7413793103);
}
button.style-2 a, button.style-2 span {
  background-color: #ffcf03;
  color: #1f1c1b;
  border: 1px solid #524d4b;
}
button.style-2 a:hover, button.style-2 a:focus, button.style-2 span:hover, button.style-2 span:focus {
  background-color: rgb(232.5, 188.2142857143, 0);
  border-color: rgb(55.3630573248, 51.9872611465, 50.6369426752);
}
button.style-3 a, button.style-3 span {
  background-color: transparent;
  color: #faf8f8;
  border: 1px solid #faf8f8;
}
button.style-3 a:hover, button.style-3 a:focus, button.style-3 span:hover, button.style-3 span:focus {
  background-color: #faf8f8;
  color: #1f1c1b;
}
button:hover span::after,
button:hover a::after, button:focus-within span::after,
button:focus-within a::after {
  transform: translateX(4px);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-block-start: 25px;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  align-items: center;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item {
  color: #7a7470;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}
.breadcrumb .breadcrumb-item:hover {
  color: #1f1c1b;
}
.breadcrumb .breadcrumb-separator {
  color: #d9d6d5;
  margin: 0 10px;
  user-select: none;
}

section {
  position: relative;
}
section .container {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 950px;
  margin: auto;
}

section.about {
  background-color: #ffcf03;
}
@media (min-width: 900px) {
  section.about .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    align-items: center;
  }
}
section.about .container img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-block: 20px;
}

section.documents {
  background-color: #ffcf03;
}
section.documents .mini-title {
  border-color: #7a7470;
}
section.documents .documents-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 900px) {
  section.documents .documents-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
section.documents .documents-list .documents-block {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  flex: 1;
  background-color: rgba(31, 28, 27, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  transition: background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
section.documents .documents-list .documents-block::after {
  content: "->";
  display: inline-block;
  word-break: break-word;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
section.documents .documents-list .documents-block:hover, section.documents .documents-list .documents-block:focus-within {
  background-color: rgba(31, 28, 27, 0.1);
}
section.documents .documents-list .documents-block:hover::after, section.documents .documents-list .documents-block:focus-within::after {
  transform: translateX(4px);
}
section.documents .documents-list .documents-block .documents-block-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}
section.documents .documents-list .documents-block .documents-block-content .icon {
  background-color: #1f1c1b;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.documents .documents-list .documents-block .documents-block-content .icon i {
  color: #ffcf03;
}
section.documents .documents-list .documents-block .documents-block-content h3 {
  font-weight: bold;
}
section.documents .documents-list .documents-block .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

section.hero {
  position: relative;
  color: #faf8f8;
  background: linear-gradient(rgba(31, 28, 27, 0.64) 0%, rgba(31, 28, 27, 0.64) 32%, rgba(31, 28, 27, 0.64) 58%, rgba(31, 28, 27, 0.9) 100%);
}
section.hero .container {
  padding-top: 200px;
  padding-bottom: 0;
}
section.hero .container span.paragraph,
section.hero .container h1 {
  color: #ffcf03;
}
@media (max-width: 768px) {
  section.hero .container {
    padding-top: 100px;
  }
}
section.hero .background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}
section.hero .background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
section.hero .quick-nav {
  padding-top: 50px;
  padding-bottom: 20px;
}
section.hero .quick-nav nav ul {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  section.hero .quick-nav nav ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
section.hero .quick-nav-item {
  position: relative;
  padding: 16px 12px;
}
@media (min-width: 768px) {
  section.hero .quick-nav-item {
    padding: 32px 24px;
  }
}
section.hero .quick-nav-item {
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  margin: 5px;
}
section.hero .quick-nav-item .card-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
section.hero .quick-nav-item .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
  position: relative;
}
section.hero .quick-nav-item .paragraph {
  font-weight: bold;
  margin: 0;
  display: inline-block;
  transform: translateY(12px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
}
section.hero .quick-nav-item .nav-action {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
section.hero .quick-nav-item .nav-label {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
section.hero .quick-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background-color: #ffcf03;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
section.hero .quick-nav-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
section.hero .quick-nav-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}
section.hero .quick-nav-item:hover .paragraph {
  color: #ffcf03;
  transform: translateY(0);
}
section.hero .quick-nav-item:hover .nav-label {
  opacity: 1;
  transform: translateY(0);
}
section.hero .quick-nav .divider {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  margin: 0;
}
@media (max-width: 768px) {
  section.hero .quick-nav .divider {
    width: 100%;
    height: 1px;
    margin: 4px 0;
  }
}

section.history {
  background-color: #faf8f8;
}

section.jobs {
  background-color: #e5e4e3;
}
@media (min-width: 900px) {
  section.jobs .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    align-items: center;
  }
}
section.jobs .container img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-block: 20px;
}

section.news {
  background-color: #faf8f8;
}

section.projects {
  background-color: rgba(38, 46, 60, 0.8);
  color: #faf8f8;
}
section.projects h2 {
  color: #ffcf03;
}

section.traffic {
  background-color: #e5e4e3;
}

.contact-form {
  background: #faf8f8;
  padding: 35px;
  flex: 1;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: unset;
}
@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
    gap: var(--space-md);
  }
  .form-row .form-group {
    flex: 1;
  }
}

.form-group {
  margin-block: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d9d6d5;
  box-sizing: border-box;
  background: white;
}

textarea {
  resize: vertical;
  height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-block: 20px;
}

.checkbox-group input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #d9d6d5;
  background: white;
  border-radius: 3px;
  display: grid;
  place-content: center;
}

.checkbox-group input[type=checkbox]:checked {
  background: #007bff;
  border-color: #007bff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox-group input[type=checkbox]:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.checkbox-group label {
  font-weight: normal;
  cursor: pointer;
  line-height: 1.2;
}

.required {
  color: #ef2917;
}

.contact-info {
  background: #faf8f8;
  padding: 35px;
  flex: 1;
  height: fit-content;
}
@media (min-width: 900px) {
  .contact-info {
    max-width: 300px;
  }
}
.contact-info .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
  margin-block: 20px;
}
.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.contact-info .contact-item .align-top {
  align-items: flex-start;
}
.contact-info .contact-item .align-top .contact-icon {
  margin-top: 2px;
}
.contact-info .contact-icon {
  flex-shrink: 0;
  stroke: #7a7470;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xxl);
  margin-bottom: var(--space-lg);
}

.pagination-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--space-xs);
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--space-xl);
  height: var(--space-xl);
  padding: 0 var(--space-xs);
  border: 1px solid #d9d6d5;
  border-radius: 8px;
  text-decoration: none;
  color: #1f1c1b;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: #faf8f8;
}
.pagination-link:hover:not(.disabled):not(.is-active) {
  background-color: #faf8f8;
  border-color: #8f9db7;
  color: #262e3c;
}
.pagination-link.is-active {
  background-color: #ffcf03;
  color: #1f1c1b;
  border-color: #ffcf03;
  cursor: default;
}
.pagination-link.disabled {
  color: #7a7470;
  background-color: #d9d6d5;
  border-color: #d9d6d5;
  cursor: not-allowed;
  pointer-events: none;
}

.newsletter-signup {
  background-color: #ffffff;
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
@media (min-width: 900px) {
  .newsletter-signup {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    gap: var(--space-xl);
  }
}

@media (min-width: 900px) {
  .newsletter-content {
    max-width: 45%;
  }
}
.newsletter-content h3 {
  color: #1f1c1b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: var(--space-xxs);
  letter-spacing: -0.01em;
}
.newsletter-content p {
  color: #524d4b;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.newsletter-action-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}
@media (min-width: 900px) {
  .newsletter-action-column {
    max-width: 50%;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}
@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
    align-items: center;
  }
}
.newsletter-form .form-group {
  flex: 1;
  width: 100%;
}
.newsletter-form .form-group input {
  width: 100%;
  height: 42px;
  padding: 0 var(--space-sm);
  border: 1px solid #d9d6d5;
  border-radius: 6px;
  background-color: #ffffff;
  color: #1f1c1b;
  font-size: 0.875rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.newsletter-form .form-group input::placeholder {
  color: #7a7470;
}
.newsletter-form .form-group input:focus {
  outline: none;
  border-color: #6a7da0;
}
.newsletter-form .newsletter-submit {
  appearance: none;
  background: none;
  margin: 0;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 var(--space-lg);
  background-color: #1f1c1b;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid #1f1c1b;
  border-radius: 6px;
  transition: background-color 0.15s ease, transform 0.1s ease;
  width: 100%;
}
@media (min-width: 600px) {
  .newsletter-form .newsletter-submit {
    width: auto;
  }
}
.newsletter-form .newsletter-submit span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xxs);
}
.newsletter-form .newsletter-submit span::after {
  content: "→";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease;
}
.newsletter-form .newsletter-submit:hover {
  background-color: #524d4b;
  border-color: #524d4b;
}
.newsletter-form .newsletter-submit:hover span::after {
  transform: translateX(3px);
}
.newsletter-form .newsletter-submit:active {
  transform: scale(0.98);
}

.privacy-notice {
  font-size: 0.75rem;
  color: #7a7470;
  line-height: 1.4;
  margin: 0;
  max-width: 400px;
}

.documents-layout-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .documents-layout-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-xxl);
    align-items: flex-start;
    margin-top: var(--space-md);
  }
}

.sidebar-nav-column {
  width: 100%;
}

.quick-access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  background-color: #faf8f8;
  padding: var(--space-sm);
  border-radius: 6px;
  border: 1px solid #d9d6d5;
}
@media (min-width: 768px) {
  .quick-access-list {
    flex-direction: column;
    background-color: transparent;
    border: none;
    border-left: 3px solid #d9d6d5;
    padding: 0 0 0 var(--space-md);
    border-radius: 0;
    gap: var(--space-xs);
  }
}

.quick-access-link {
  display: block;
  color: #524d4b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media (min-width: 768px) {
  .quick-access-link {
    padding: var(--space-xs) var(--space-sm);
  }
}
.quick-access-link:hover, .quick-access-link.is-active {
  color: #1f1c1b;
  background-color: rgba(31, 28, 27, 0.05);
}
@media (min-width: 768px) {
  .quick-access-link:hover, .quick-access-link.is-active {
    background-color: rgba(255, 207, 3, 0.12);
    padding-left: var(--space-md);
  }
}
.quick-access-link.is-active {
  background-color: #ffcf03;
  color: #1f1c1b;
}
@media (min-width: 768px) {
  .quick-access-link.is-active {
    background-color: rgba(255, 207, 3, 0.15);
    font-weight: 700;
  }
}

.documents-sections-wrapper {
  width: 100%;
}
.documents-sections-wrapper .document-group {
  background-color: #faf8f8;
  padding: var(--space-lg);
  border-radius: 6px;
  border: 1px solid #d9d6d5;
}
@media (min-width: 768px) {
  .documents-sections-wrapper .document-group {
    padding: var(--space-xl);
  }
}

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