/* Main CSS Entry Point */

/* CSS Reset */

/* Modern CSS Reset */

/* Based on modern-normalize and CSS Remedy */

/* Box sizing rules */

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

/* Remove default margin and padding */

* {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make images easier to work with */

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

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove default button styles */

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove list styles on ul, ol elements with a list role */

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Remove default link styles */

a {
  text-decoration: none;
  color: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */

textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */

:target {
  scroll-margin-block: 5ex;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Remove built-in form typography styles */

input,
button,
textarea,
select {
  margin: 0;
}

/* Remove the inner border and padding in Firefox */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Restore the focus styles unset by the previous rule */

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/* Correct the inability to style clickable types in iOS and Safari */

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/* Remove the inner padding in Chrome and Safari on macOS */

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Correct the cursor style of increment and decrement buttons in Safari */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/* Correct the text style of placeholders in Chrome, Edge, and Safari */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/* Remove the default vertical scrollbar in IE 10+ */

textarea {
  overflow: auto;
}

/* Add the correct display in Edge, IE 10+, and Firefox */

details {
  display: block;
}

/* Add the correct display in all browsers */

summary {
  display: list-item;
}

/* Add the correct display in IE 10+ */

template {
  display: none;
}

/* Add the correct display in IE 10 */

[hidden] {
  display: none;
}

/* Prevent horizontal overflow */

html,
body {
  overflow-x: hidden;
}

/* Improve consistency of default fonts */

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
}

/* Monospace font stack */

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
  font-size: 1em;
}

/* Improve table rendering */

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

/* Improve hr rendering */

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* Import fonts */

/* Roboto Font Family - Variable Font */

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Frutiger LT Pro Font Family */

@font-face {
  font-family: 'Frutiger';
  src: url('/assets/fonts/frutiger/FrutigerLTPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Frutiger';
  src: url('/assets/fonts/frutiger/FrutigerLTPro-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Frutiger';
  src: url('/assets/fonts/frutiger/FrutigerLTPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Frutiger';
  src: url('/assets/fonts/frutiger/FrutigerLTPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Calibri Font Family */

@font-face {
  font-family: 'Calibri';
  src: url('/assets/fonts/calibri/Calibri.woff2') format('woff2'),
       url('/assets/fonts/calibri/Calibri.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('/assets/fonts/calibri/Calibri-Bold.woff2') format('woff2'),
       url('/assets/fonts/calibri/Calibri-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('/assets/fonts/calibri/Calibri-BoldItalic.woff2') format('woff2'),
       url('/assets/fonts/calibri/Calibri-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('/assets/fonts/calibri/Calibri-Italic.woff2') format('woff2'),
       url('/assets/fonts/calibri/Calibri-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('/assets/fonts/calibri/Calibri-Light.woff2') format('woff2'),
       url('/assets/fonts/calibri/Calibri-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('calibri/Calibri-LightItalic.woff2') format('woff2'),
       url('calibri/Calibri-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root{--swiper-theme-color:#007aff}

:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}

.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}

.swiper-vertical>.swiper-wrapper{flex-direction:column}

.swiper-wrapper{box-sizing:initial;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}

.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}

.swiper-horizontal{touch-action:pan-y}

.swiper-vertical{touch-action:pan-x}

.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}

.swiper-slide-invisible-blank{visibility:hidden}

.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}

.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}

.swiper-backface-hidden .swiper-slide{backface-visibility:hidden;transform:translateZ(0)}

.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}

.swiper-3d .swiper-wrapper{transform-style:preserve-3d}

.swiper-3d{perspective:1200px;.swiper-cube-shadow,.swiper-slide{transform-style:preserve-3d}}

.swiper-css-mode{>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none;&::-webkit-scrollbar{display:none}}>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}&.swiper-horizontal{>.swiper-wrapper{scroll-snap-type:x mandatory}}&.swiper-vertical{>.swiper-wrapper{scroll-snap-type:y mandatory}}&.swiper-free-mode{>.swiper-wrapper{scroll-snap-type:none}>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}}&.swiper-centered{>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}}&.swiper-centered.swiper-horizontal{>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}}&.swiper-centered.swiper-vertical{>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}}}

.swiper-3d{.swiper-slide-shadow,.swiper-slide-shadow-bottom,.swiper-slide-shadow-left,.swiper-slide-shadow-right,.swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-slide-shadow{background:#00000026}.swiper-slide-shadow-left{background-image:linear-gradient(270deg,#00000080,#0000)}.swiper-slide-shadow-right{background-image:linear-gradient(90deg,#00000080,#0000)}.swiper-slide-shadow-top{background-image:linear-gradient(0deg,#00000080,#0000)}.swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,#00000080,#0000)}}

.swiper-lazy-preloader{border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid #0000;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}

.swiper-watch-progress .swiper-slide-visible,.swiper:not(.swiper-watch-progress){.swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}}

.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}

.swiper-lazy-preloader-black{--swiper-preloader-color:#000}

@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}

.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}

.swiper-virtual.swiper-css-mode{.swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}}

.swiper-virtual.swiper-css-mode.swiper-horizontal{.swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}}

.swiper-virtual.swiper-css-mode.swiper-vertical{.swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}}

:root{--swiper-navigation-size:44px}

.swiper-button-next,.swiper-button-prev{align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:var(--swiper-navigation-size);justify-content:center;position:absolute;width:var(--swiper-navigation-size);z-index:10;&.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}&.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled &{display:none!important}svg{height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center;width:100%;fill:currentColor;pointer-events:none}}

.swiper-button-lock{display:none}

.swiper-button-next,.swiper-button-prev{margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}

.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto;.swiper-navigation-icon{transform:rotate(180deg)}}

.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}

.swiper-horizontal{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{margin-left:0;margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev,&~.swiper-button-next,.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{.swiper-navigation-icon{transform:rotate(180deg)}}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev{.swiper-navigation-icon{transform:rotate(0deg)}}}

.swiper-vertical{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{left:var(--swiper-navigation-top-offset,50%);margin-left:calc(0px - var(--swiper-navigation-size)/2);margin-top:0;right:auto}.swiper-button-prev,~.swiper-button-prev{bottom:auto;top:var(--swiper-navigation-sides-offset,4px);.swiper-navigation-icon{transform:rotate(-90deg)}}.swiper-button-next,~.swiper-button-next{bottom:var(--swiper-navigation-sides-offset,4px);top:auto;.swiper-navigation-icon{transform:rotate(90deg)}}}

.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10;&.swiper-pagination-hidden{opacity:0}&.swiper-pagination-disabled,.swiper-pagination-disabled>&{display:none!important}}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);left:0;top:var(--swiper-pagination-top,auto);width:100%}

.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden;.swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullet-active,.swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullet-active-next-next{transform:scale(.33)}}

.swiper-pagination-bullet{background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));button&{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable &{cursor:pointer}&:only-child{display:none!important}}

.swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:var(--swiper-pagination-bullet-opacity,1)}

.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:var(--swiper-pagination-left,auto);right:var(--swiper-pagination-right,8px);top:50%;transform:translate3d(0,-50%,0);.swiper-pagination-bullet{display:block;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}&.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px;.swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}}}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets{.swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}&.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap;.swiper-pagination-bullet{transition:transform .2s,left .2s}}}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}

.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}

.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,#00000040);position:absolute;.swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.swiper-rtl & .swiper-pagination-progressbar-fill{transform-origin:right top}&.swiper-pagination-horizontal,&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-horizontal>&,.swiper-vertical>&.swiper-pagination-progressbar-opposite{height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0;width:100%}&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,&.swiper-pagination-vertical,.swiper-horizontal>&.swiper-pagination-progressbar-opposite,.swiper-vertical>&{height:100%;left:0;top:0;width:var(--swiper-pagination-progressbar-size,4px)}}

.swiper-pagination-lock{display:none}

.swiper-scrollbar{background:var(--swiper-scrollbar-bg-color,#0000001a);border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;&.swiper-scrollbar-disabled,.swiper-scrollbar-disabled>&{display:none!important}&.swiper-scrollbar-horizontal,.swiper-horizontal>&{bottom:var(--swiper-scrollbar-bottom,4px);height:var(--swiper-scrollbar-size,4px);left:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:var(--swiper-scrollbar-top,auto);width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}&.swiper-scrollbar-vertical,.swiper-vertical>&{height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);left:var(--swiper-scrollbar-left,auto);position:absolute;right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);width:var(--swiper-scrollbar-size,4px);z-index:50}}

.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,#00000080);border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;left:0;position:relative;top:0;width:100%}

.swiper-scrollbar-cursor-drag{cursor:move}

.swiper-scrollbar-lock{display:none}

.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%;>canvas,>img,>svg{max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain}}

.swiper-slide-zoomed{cursor:move;touch-action:none}

.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}

.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}

.swiper-grid>.swiper-wrapper{flex-wrap:wrap}

.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}

.swiper-fade{&.swiper-free-mode{.swiper-slide{transition-timing-function:ease-out}}.swiper-slide{pointer-events:none;transition-property:opacity;.swiper-slide{pointer-events:none}}.swiper-slide-active{pointer-events:auto;& .swiper-slide-active{pointer-events:auto}}}

.swiper.swiper-cube{overflow:visible}

.swiper-cube{.swiper-slide{backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:0 0;visibility:hidden;width:100%;z-index:1;.swiper-slide{pointer-events:none}}&.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}.swiper-slide-active,.swiper-slide-next,.swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0;&:before{background:#000;bottom:0;content:"";filter:blur(50px);left:0;position:absolute;right:0;top:0}}}

.swiper-cube{.swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}}

.swiper-cube{.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-slide-shadow-cube.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}}

.swiper.swiper-flip{overflow:visible}

.swiper-flip{.swiper-slide{backface-visibility:hidden;pointer-events:none;z-index:1;.swiper-slide{pointer-events:none}}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}}

.swiper-flip{.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-slide-shadow-flip.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}}

.swiper-creative{.swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}}

.swiper.swiper-cards{overflow:visible}

.swiper-cards{.swiper-slide{backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}}

/* Import component styles */

/* Component Styles */

/* Import component CSS files */

/* Navigation Component */

/* Content Grid Variable */

:root {
  --content-grid: 
    [full-start] minmax(1rem, 1fr)
    [content-start] minmax(0, 860px) [content-end]
    minmax(1rem, 1fr) [full-end];
  --nav-height: 85px;
  --nav-bg: #ffffff;
  --nav-text: var(--text-color);
  --nav-hover: var(--primary-color);
  --nav-border: var(--border-color);
  --mobile-breakpoint: 768px;
}

/* Content Grid Layout */

.content-grid {
  display: grid;
  grid-template-columns: var(--content-grid);
}

.content-grid > * {
  grid-column: content;
}

/* Main Navigation */

.main-navigation {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  box-shadow: none;
}

/* Navigation Container */

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  position: relative;
}

/* Logo */

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2;
  color: var(--nav-text);
  text-decoration: none;
  transition: color 0.2s ease;
  z-index: 1001;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  font-family: inherit;
}

.nav-logo:hover {
  color: var(--nav-text);
}

/* Removed logo-image styles */

/* Mobile Toggle Button */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--nav-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu */

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

/* Navigation Links */

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link--active {
  color: var(--nav-text);
  background-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--nav-text);
  text-underline-offset: 4px;
}

.nav-link--active {
  font-weight: 400; /* Ensure active link is not bold */
}

/* Dropdown Button */

.nav-link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-icon {
  transition: transform 0.2s ease;
}

.nav-link--dropdown[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid var(--nav-border);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  z-index: 1000;
}

/* Bridge gap between toggle and dropdown to prevent closing on hover */

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
}

.nav-link--dropdown[aria-expanded] + .nav-dropdown {
  transition: all 0.2s ease;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-link--dropdown[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--nav-text);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 1.15rem;
}

.nav-dropdown-link:hover {
  color: var(--primary-dark);
  background-color: #bfdbfe;
}

/* Mobile Styles */

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--nav-bg);
    padding: 1rem;
    transform: translateX(100%);
    overflow-y: auto;
    display: block;
    border-top: 1px solid var(--nav-border);
    box-shadow: inset 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .nav-menu[data-nav-open] {
    transition: transform 0.3s ease;
  }

  .nav-menu[data-nav-open="true"] {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0;
    font-size: 1rem;
  }

  .nav-spacer {
    width: 100%;
    height: 0;
    margin: 1rem 0;
    border: none;
  }

  /* Mobile Dropdown */
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--nav-border);
    margin-left: 1rem;
    margin-top: 0.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }

  .nav-link--dropdown[aria-expanded] + .nav-dropdown {
    transition: max-height 0.3s ease;
  }

  .nav-link--dropdown[aria-expanded="true"] + .nav-dropdown {
    max-height: 500px;
  }

  .nav-dropdown-link {
    padding: 0.75rem 1rem;
  }
}

/* Sidebar Layout (Desktop & Tablet) */

@media (min-width: 768px) {
  .main-navigation {
    position: sticky;
    top: 0;
    height: 100vh;
    border-bottom: none;
    padding: 3rem 0;
    overflow-y: auto;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    padding: 0 3rem;
  }

  .nav-logo {
    margin-bottom: 4rem;
    padding-left: 0;
  }
  
  .logo-image {
    max-width: 100%; 
    height: auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    width: 100%;
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .nav-item {
    width: 100%;
  }

  .nav-spacer {
    height: 0;
    margin: 0;
    border: none;
    visibility: hidden;
  }

  .nav-link {
    display: block;
    padding: 0;
    font-size: 1rem;
    color: var(--nav-text);
    background-color: transparent;
  }
  
  .nav-link:hover,
  .nav-link--active {
    color: var(--nav-text);
    background-color: transparent;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: var(--nav-text);
    text-underline-offset: 4px;
  }
  
  /* Reset dropdowns for sidebar */
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-left: 1rem;
    padding: 0.5rem 0 0 0;
    display: none; 
  }
  
  .nav-item:hover .nav-dropdown,
  .nav-link--dropdown[aria-expanded="true"] + .nav-dropdown {
    display: block;
  }
}

/* Footer Component */

/* Footer Variables */

:root {
  --footer-bg: #dbeafe;
  --footer-text: var(--text-color);
  --footer-heading: var(--text-color);
  --footer-link-hover: var(--primary-color);
  --footer-border: var(--border-color);
}

/* Site Footer */

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

/* Footer Container */

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Footer Main Content */

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* First column takes more space on larger screens */

.footer-column:first-child {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Footer Headings */

.footer-heading {
  color: var(--footer-heading);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Calibri', sans-serif;
}

.footer-column h4.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Footer Description */

.footer-description {
  color: var(--footer-text);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

/* Footer Links */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1.2rem;
}

.footer-links a:hover {
  color: var(--footer-link-hover);
}

/* Footer Social */

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Footer Bottom */

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--footer-border);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Footer Copyright */

.footer-copyright {
  margin: 0;
  font-size: 1.15rem;
  color: var(--footer-text);
}

/* Footer Legal Links */

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 1.15rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--footer-link-hover);
}

/* Mobile Adjustments */

@media (max-width: 767px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column:first-child {
    grid-column: span 1;
  }
}

/* Swiper Gallery Component */

.swiper-gallery {
    padding: 0;
    position: relative;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.swiper-gallery--blog {
    display: grid;
    gap: 1.5rem;
}

.swiper-gallery--blog .swiper-gallery__figure {
    margin-bottom: 4rem;
}

.swiper-gallery__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-gallery__image {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

.swiper-gallery__caption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: center;
    max-width: 860px;
}

.swiper-gallery .swiper {
    position: relative;
}

.swiper-gallery .swiper-wrapper {
    display: flex;
}

.swiper-gallery .swiper-slide {
    flex-shrink: 0;
}

.swiper-gallery--sideSliderSlidedNachRechts .swiper-slide {
    width: auto;
}

.swiper-gallery--sideSliderSlidedNachRechts .swiper-slide-content {
    height: 100%;
}

.swiper-gallery--sideSliderSlidedNachRechts > .swiper > .swiper-wrapper > .swiper-slide > .swiper-slide-content > .swiper-slide-image {
    height: auto;
    max-height: 416px !important;
    width: auto;
}

.swiper-gallery .swiper-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-gallery .swiper-slide-image {
    width: auto;
    height: auto;
    max-width: min(100%, 860px);
    max-height: 645px;
    display: block;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
}

.swiper-gallery--standardMitPfeilenLinksRechts {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-gallery--standardMitPfeilenLinksRechts > .swiper {
    max-height: 645px;
}

.swiper-gallery--standardMitPfeilenLinksRechts > .swiper > .swiper-wrapper {
    max-height: 645px;
}

.swiper-gallery--standardMitPfeilenLinksRechts > .swiper > .swiper-wrapper > .swiper-slide {
    max-height: 645px;
}

.swiper-gallery--standardMitPfeilenLinksRechts > .swiper > .swiper-wrapper > .swiper-slide > .swiper-slide-content {
    height: 100%;
}

/* Navigation Arrows */

.swiper-gallery .swiper-button-prev,
.swiper-gallery .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.13);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    color: #ffffff;
    padding: 0;
    line-height: 0;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
}

/* Remove default Swiper arrows */

.swiper-gallery .swiper-button-prev::after,
.swiper-gallery .swiper-button-next::after {
    content: none;
}

.swiper-gallery .swiper-button-prev:hover,
.swiper-gallery .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.swiper-gallery .swiper-button-prev svg,
.swiper-gallery .swiper-button-next svg {
    fill: transparent;
}

.swiper-gallery .swiper-button-prev {
    left: 1rem;
}

.swiper-gallery .swiper-button-next {
    right: 1rem;
}

.swiper-gallery .swiper-button-prev svg,
.swiper-gallery .swiper-button-next svg {
    width: 24px;
    height: 24px;
    display: flex;
    flex-shrink: 0;
}

/* Mobile adjustments */

@media (max-width: 767px) {
    .swiper-gallery .swiper-button-prev,
    .swiper-gallery .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-gallery .swiper-button-prev {
        left: 0.5rem;
    }

    .swiper-gallery .swiper-button-next {
        right: 0.5rem;
    }
}

/* Lightbox Styles */

.swiper-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.swiper-lightbox.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.swiper-lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    outline: none;
    color: #000000;
}

.swiper-lightbox__close:hover {
    transform: scale(1.1);
}

.swiper-lightbox__container {
    width: 100%;
    height: 100%;
}

.swiper-lightbox .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
}

.swiper-lightbox .swiper-slide-content {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 4rem; /* Ensure space for UI elements */
    box-sizing: border-box;
}

/* More specific selector to override main gallery styles */

.swiper-gallery .swiper-lightbox .swiper-slide-image {
    width: auto;
    height: auto;
    max-width: 1200px;
    max-height: 900px;
    -o-object-fit: contain;
    object-fit: contain;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    margin: 0 auto;
    cursor: default;
}

.swiper-lightbox__caption {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    -moz-user-select: text;
    user-select: text;
    -webkit-user-select: text;
    cursor: auto;
}

.swiper-lightbox .swiper-button-prev,
.swiper-lightbox .swiper-button-next {
    z-index: 10000;
    position: fixed; /* Fix to viewport */
}

.swiper-lightbox .swiper-button-prev {
    left: 2rem;
}

.swiper-lightbox .swiper-button-next {
    right: 2rem;
}

/* Richtext Component */

.richtext {
    padding: 0;
    line-height: 1.7;
    color: var(--text-color);
}

/* Headings */

.richtext h1,
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

.richtext h1 { font-size: 2.5rem; }

.richtext h2 { font-size: 2.125rem; }

.richtext h3 { font-size: 1.75rem; }

.richtext h4 { font-size: 1.5rem; }

.richtext h5 { font-size: 1.375rem; }

.richtext h6 { font-size: 1.25rem; }

/* Paragraphs */

.richtext p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Links */

.richtext a {
    color: black;
    text-decoration: underline;
    font-size: 1rem;
}

/* Lists */

.richtext ul,
.richtext ol {
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.richtext ul {
    list-style-type: none;
}

.richtext ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    font-size: 1.25rem;
}

.richtext ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.richtext ol {
    list-style-type: decimal;
    list-style-position: outside;
}

.richtext ol li {
    margin-bottom: 0.5rem;
    padding-left: 0;
    font-size: 1.25rem;
}

.richtext ol li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

/* Nested lists */

.richtext ul ul,
.richtext ol ol,
.richtext ul ol,
.richtext ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Blockquotes */

.richtext blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--background-blue);
    font-style: italic;
    color: var(--text-muted);
}

.richtext blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */

.richtext code {
    padding: 0.2rem 0.4rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.15rem;
    font-family: 'Courier New', monospace;
    color: var(--primary-dark);
}

.richtext pre {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow-x: auto;
}

.richtext pre code {
    padding: 0;
    background: none;
    border: none;
    color: var(--text-color);
}

/* Horizontal Rule */

.richtext hr {
    margin: 2rem 0;
    border: none;
    border-top: 2px solid var(--border-color);
}

/* Tables */

.richtext table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.richtext th,
.richtext td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.richtext th {
    background-color: var(--background-blue);
    color: var(--primary-dark);
    font-weight: 600;
}

.richtext tr:hover {
    background-color: var(--background-light);
}

/* Strong and Emphasis */

.richtext strong {
    font-weight: 600;
    color: var(--text-color);
}

.richtext em {
    font-style: italic;
}

.text-small {
  font-size: 0.85rem !important;
}

.text-bold {
  font-weight: 700 !important;
}

.text-gray {
  color: #717171 !important;
}

/* combinations (optional, but nice for preview) */

.text-small.text-bold {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

.text-gray.text-small {
  color: #717171 !important;
  font-size: 0.8rem !important;
}

.text-small a {
  font-size: 0.85rem !important;
}

/* Artist Profile styles (BEM) */

.artist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* On wider screens, place media and details side by side */

@media (min-width: 768px) {
  .artist {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
  }
}

.artist__media {
  display: block;
}

.artist__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  background: #f3f4f6;
}

.artist__image--placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  border-radius: 12px;
}

.artist__details {
  display: grid;
  gap: 0.75rem;
}

.artist__name {
  margin: 0;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  line-height: 1.2;
  color: var(--text-color);
}

.artist__instrument {
  margin: 0;
  color: var(--secondary-color);
  font-weight: 600;
}

.artist__description {
  margin-top: 0.5rem;
}

/* Utility: ensure the section behaves nicely in the shared content grid spacing */

.content-grid .artist {
  margin: 0; /* main > * already adds vertical rhythm */
}

/* Audio Player Component (BEM) */

.audio-player {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background-color: var(--background-blue);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.audio-player__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.audio-player__controls {
  display: flex;
  align-items: center;
}

.audio-player__element {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  outline: none;
}

/* Custom audio player styling */

.audio-player__element::-webkit-media-controls-panel {
  background-color: var(--background-color);
  border-radius: 8px;
}

.audio-player__element::-webkit-media-controls-play-button {
  color: var(--primary-color);
}

.audio-player__element::-webkit-media-controls-current-time-display,
.audio-player__element::-webkit-media-controls-time-remaining-display {
  color: var(--primary-color);
  margin: 0 0.5rem;
}

.audio-player__element::-webkit-media-controls-timeline {
  background-color: var(--border-color);
  border-radius: 4px;
  margin: 0 0.25rem;
}

/* Responsive adjustments */

@media (max-width: 767px) {
  .audio-player {
    padding: 1rem;
    margin: 1rem 0;
  }

  .audio-player__title {
    font-size: 1.375rem;
  }
}

/* Ensure component respects content grid spacing */

.content-grid .audio-player:first-child {
  margin-top: 0;
}

.content-grid .audio-player:last-child {
  margin-bottom: 0;
}

/* Image Component (BEM) */

.image {
  padding: 0;
}

.image__element {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.image--full-width .image__element {
  width: 100%;
}

/* Responsive adjustments */

@media (max-width: 767px) {
  .image {
    padding: 0;
  }
}

/* Kacheln Component */

.kacheln-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 7rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .kacheln-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.kachel-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: #f1f5f9; /* Placeholder color if image fails loading */
}

.kachel-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kachel-item:hover .kachel-image {
    transform: scale(1.05);
}

.kachel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-align: center;
}

.kachel-item:hover .kachel-overlay {
    opacity: 1;
}

.kachel-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-color, #0f172a);
    line-height: 1.3;
}

/* Spacing Component */

.spacing {
    width: 100%;
}

.spacing-1 {
    height: 0.5rem;
}

.spacing-2 {
    height: 1rem;
}

.spacing-3 {
    height: 1.5rem;
}

.spacing-4 {
    height: 2rem;
}

.spacing-5 {
    height: 2.5rem;
}

.spacing-6 {
    height: 3rem;
}

.spacing-7 {
    height: 3.5rem;
}

.spacing-8 {
    height: 4rem;
}

.spacing-9 {
    height: 4.5rem;
}

.spacing-10 {
    height: 5rem;
}

.spacing-11 {
    height: 5.5rem;
}

.spacing-12 {
    height: 6rem;
}

.spacing-13 {
    height: 6.5rem;
}

.spacing-14 {
    height: 7rem;
}

.spacing-15 {
    height: 7.5rem;
}

.spacing-16 {
    height: 8rem;
}

.spacing-17 {
    height: 8.5rem;
}

.spacing-18 {
    height: 9rem;
}

.spacing-19 {
    height: 9.5rem;
}

.spacing-20 {
    height: 10rem;
}

/* Import entry type styles */

/* Entry Type Styles */

.about-me-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 7rem;
}

.about-me-grid .inner-content {
    margin-top: 0;
}

.about-me-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-me-images img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-me-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.actual-grid {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 4rem;
    align-items: start;
    margin-top: 7rem;
}

.actual-grid .inner-content {
    margin-top: 0;
}

/* Left Column: Items List */

.actual-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actual-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.actual-item-title {
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    color: var(--text-color);
}

.actual-item-title a {
    color: inherit;
    text-decoration: inherit;
    font-size: inherit;
}

.actual-item-title a:hover {
    color: var(--primary-color);
}

.actual-item-line {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-color);
}

/* Status Styles */

.actual-item--abgelaufen .actual-item-title,
.actual-item--abgelaufen .actual-item-title a,
.actual-item--abgelaufen .actual-item-line {
    color: #717171;
}

/* Right Column: Single Image */

.actual-image-container {
    width: 100%;
}

.actual-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: auto; /* Align to right if smaller */
}

@media (max-width: 768px) {
    .actual-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .actual-image {
        max-width: 100%;
        margin-left: 0;
    }
    
    /* Order: Title, Image, Content? Or Title, Content, Image? 
       Based on About Me, title is outside. 
       Grid inside: Items then Image. 
       On mobile, usually image comes first or last. 
       In "About Me", image was first. 
       Here, image is decorative/sidebar. 
       I'll let it flow naturally: Items first, then Image below. 
       Or maybe reverse? User didn't specify mobile order. 
       I'll keep DOM order: Items (col 1), Image (col 2). 
       Mobile: Items on top, Image below. */
}

/* Base styles */

:root {
  /* Blue Color Palette */
  --primary-color: #2563eb;        /* Rich blue - primary actions, links */
  --primary-dark: #1e40af;         /* Darker blue - hover states */
  --primary-light: #60a5fa;        /* Light blue - accents, highlights */
  
  --secondary-color: #475569;      /* Slate gray-blue - secondary text */
  --secondary-light: #94a3b8;      /* Light slate - muted text */
  
  --accent-color: #0ea5e9;         /* Sky blue - special highlights */
  
  --text-color: #0f172a;           /* Deep blue-black - primary text */
  --text-muted: #334155;           /* Muted blue-gray - secondary text */
  
  --background-color: #ffffff;     /* White - main background */
  --background-light: #ffffff;     /* White - sections */
  --background-blue: #f1f5f9;      /* Very light gray - cards, highlights */
  
  --border-color: #e2e8f0;         /* Light blue-gray - borders */
  --shadow-color: rgba(0, 0, 0, 0.05); /* Neutral shadows */
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
}

#main-content {
  font-size: 1rem;
}

@media (min-width: 768px) {
  body {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-areas: 
      "nav main"
      "nav footer";
    grid-template-rows: 1fr auto;
  }

  .main-navigation {
    grid-area: nav;
  }

  main {
    grid-area: main;
  }

  #main-content {
    margin-top: 2rem;
  }

  .site-footer {
    grid-area: footer;
  }
}

main {
  flex: 1 0 auto;
}

main > * {
  margin: 2rem 0 2rem;
}

h1 {
  font-size: 28px;
  font-weight: 400;
}

.small-title {
  font-size: 22.4px;
  font-weight: 400;
}

.site-footer {
  flex-shrink: 0;
}

.inner-content {
  margin-top: 7rem;
}

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