:root {
  --color-surface: #1a1a1a;
  --color-surface-dim: #111111;
  --color-surface-bright: #333333;
  --color-surface-container-lowest: #0a0a0a;
  --color-surface-container-low: #161616;
  --color-surface-container: #1e1e1e;
  --color-surface-container-high: #282828;
  --color-surface-container-highest: #333333;
  --color-surface-variant: #333333;
  --color-on-surface: #e2e2e2;
  --color-on-surface-variant: #c5c5c5;
  --color-inverse-surface: #e2e2e2;
  --color-inverse-on-surface: #2f2f2f;
  --color-outline: #8e8e8e;
  --color-outline-variant: #444444;
  --color-surface-tint: #b1b1b1;
  --color-background: #111111;
  --color-on-background: #e2e2e2;
  --color-primary: #b1b1b1;
  --color-on-primary: #1a1a1a;
  --color-primary-container: #000000;
  --color-on-primary-container: #707070;
  --color-inverse-primary: #4a4a4a;
  --color-primary-fixed: #d8d8d8;
  --color-primary-fixed-dim: #b1b1b1;
  --color-on-primary-fixed: #000000;
  --color-on-primary-fixed-variant: #313131;
  --color-secondary: #4e4e4e;
  --color-on-secondary: #000000;
  --color-secondary-container: #000000;
  --color-on-secondary-container: #000000;
  --color-secondary-fixed: #757575;
  --color-secondary-fixed-dim: #4e4e4e;
  --color-on-secondary-fixed: #000000;
  --color-on-secondary-fixed-variant: #000000;
  --color-tertiary: #ffbb77;
  --color-on-tertiary: #4d4d00;
  --color-tertiary-container: #303000;
  --color-on-tertiary-container: #cc6600;
  --color-tertiary-fixed: #ffddcc;
  --color-tertiary-fixed-dim: #ffbb77;
  --color-on-tertiary-fixed: #2f2f00;
  --color-on-tertiary-fixed-variant: #6e6e00;
  --color-error: #ffb4ab;
  --color-on-error: #690005;
  --color-error-container: #93000a;
  --color-on-error-container: #ffdad6;
  --color-accent-green: #33cc33;
  --color-accent-green-light: #4ee248;
  --color-accent-green-hover: #75ff68;
  --color-accent-orange: #ff8c00;
  --color-accent-orange-light: #ffb77d;
  --color-text-bright: #ffffff;
  --color-border-subtle: rgba(255, 255, 255, 0.2);
  --color-border-hover: rgba(255, 255, 255, 0.4);
  --color-overlay-light: rgba(255, 255, 255, 0.1);
  --color-border-divider: rgba(255, 255, 255, 0.1);
  --color-divider-accent: rgba(78, 226, 72, 0.5);
  --color-overlay-dark: rgba(0, 0, 0, 0.6);
  --color-overlay-darker: rgba(0, 0, 0, 0.8);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'JetBrains Mono', monospace;
  --size-display-lg: 64px;
  --size-display-sm: 40px;
  --size-headline-lg: 32px;
  --size-headline-lg-mobile: 24px;
  --size-body-lg: 18px;
  --size-body-md: 16px;
  --size-label-md: 14px;
  --size-label-sm: 12px;
  --weight-display-lg: 800;
  --weight-display-sm: 700;
  --weight-headline: 700;
  --weight-body: 400;
  --weight-label: 500;
  --lh-display-lg: 1.1;
  --lh-display-sm: 1.2;
  --lh-headline: 1.3;
  --lh-body: 1.6;
  --lh-label: 1.0;
  --ls-display-lg: -0.02em;
  --ls-display-sm: -0.01em;
  --ls-label-md: 0.05em;
  --ls-label-sm: 0.08em;
  --spacing-base: 8px;
  --spacing-section-gap: 80px;
  --spacing-container-max: 1280px;
  --spacing-gutter: 24px;
  --spacing-margin-mobile: 16px;
  --radius-sm: 0.125rem;
  --radius-default: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
  --navbar-height: 80px;
  --navbar-bg: rgba(0, 0, 0, 0.7);
  --navbar-blur: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body-md);
  font-weight: var(--weight-body);
  line-height: var(--lh-body);
  color: var(--color-on-surface);
  background-color: var(--color-background);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.icon-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: var(--spacing-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-margin-mobile);
  padding-right: var(--spacing-margin-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--spacing-gutter);
    padding-right: var(--spacing-gutter);
  }
}

.display-lg {
  font-family: var(--font-display);
  font-size: var(--size-display-lg);
  font-weight: var(--weight-display-lg);
  line-height: var(--lh-display-lg);
  letter-spacing: var(--ls-display-lg);
}

.display-sm {
  font-family: var(--font-display);
  font-size: var(--size-display-sm);
  font-weight: var(--weight-display-sm);
  line-height: var(--lh-display-sm);
  letter-spacing: var(--ls-display-sm);
}

.headline-lg {
  font-family: var(--font-display);
  font-size: var(--size-headline-lg);
  font-weight: var(--weight-headline);
  line-height: var(--lh-headline);
}

.headline-lg-mobile {
  font-family: var(--font-display);
  font-size: var(--size-headline-lg-mobile);
  font-weight: var(--weight-headline);
  line-height: var(--lh-headline);
}

.body-lg {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  font-weight: var(--weight-body);
  line-height: var(--lh-body);
}

.body-md {
  font-family: var(--font-body);
  font-size: var(--size-body-md);
  font-weight: var(--weight-body);
  line-height: var(--lh-body);
}

.label-md {
  font-family: var(--font-label);
  font-size: var(--size-label-md);
  font-weight: var(--weight-label);
  line-height: var(--lh-label);
  letter-spacing: var(--ls-label-md);
  text-transform: uppercase;
}

.label-sm {
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-weight: var(--weight-label);
  line-height: var(--lh-label);
  letter-spacing: var(--ls-label-sm);
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .display-lg {
    font-size: 40px;
  }
  .display-sm {
    font-size: 28px;
  }
  .headline-lg {
    font-size: var(--size-headline-lg-mobile);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--navbar-height);
  background: var(--navbar-bg);
  backdrop-filter: blur(var(--navbar-blur));
  -webkit-backdrop-filter: blur(var(--navbar-blur));
  border-bottom: 1px solid var(--color-border-divider);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand .brand-logo {
  height: 32px;
  width: auto;
}

.navbar-brand .brand-logo-light {
  display: none;
}

:root[data-theme="light"] .navbar-brand .brand-logo-dark {
  display: none;
}

:root[data-theme="light"] .navbar-brand .brand-logo-light {
  display: block;
}

.navbar-brand .brand-sublabel {
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-weight: var(--weight-label);
  letter-spacing: var(--ls-label-sm);
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin-left: 8px;
}

@media (max-width: 767px) {
  .navbar-brand .brand-sublabel {
    display: none;
  }
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-nav a {
  color: var(--color-on-surface-variant);
  transition: color 0.3s;
}

.navbar-nav a:hover {
  color: var(--color-on-surface);
}

.navbar-nav a.active {
  color: var(--color-secondary);
  font-weight: 700;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 4px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-overlay-light);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-full);
  color: var(--color-on-surface);
  cursor: pointer;
  width: 36px;
  height: 36px;
  transition: border-color 0.3s, color 0.3s;
}

.theme-toggle:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.theme-toggle-icon {
  display: flex;
  font-size: 18px;
}

.theme-toggle-icon-light {
  display: none;
}

:root[data-theme="light"] .theme-toggle-icon-dark {
  display: none;
}

:root[data-theme="light"] .theme-toggle-icon-light {
  display: flex;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface-container-lowest);
  z-index: 49;
  padding: var(--spacing-gutter);
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--color-on-surface);
  font-family: var(--font-display);
  font-size: var(--size-headline-lg-mobile);
  font-weight: var(--weight-headline);
}

.lang-switcher {
  display: flex;
  gap: 12px;
}

.lang-switcher a {
  color: var(--color-on-surface-variant);
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-weight: var(--weight-label);
  text-transform: uppercase;
  letter-spacing: var(--ls-label-sm);
  transition: color 0.3s;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--color-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: var(--weight-display-sm);
  font-size: var(--size-body-lg);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent-green);
  color: var(--color-on-secondary);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-border-subtle);
  color: var(--color-text-bright);
}

.btn-outline:hover {
  background: var(--color-overlay-light);
  border-color: var(--color-border-hover);
}

.btn-sm {
  padding: 8px 24px;
  font-size: var(--size-body-md);
}

main {
  flex-grow: 1;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--navbar-height));
  padding-top: var(--navbar-height);
  padding-bottom: 64px;
  gap: 48px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-on-surface-variant);
  animation: heroScrollHint 2s ease-in-out infinite;
}

.hero-scroll-hint:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.hero-scroll-hint .icon-svg {
  width: 22px;
  height: 22px;
}

@keyframes heroScrollHint {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

.hero-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: var(--weight-display-lg);
  line-height: var(--lh-display-lg);
  letter-spacing: var(--ls-display-lg);
  color: var(--color-text-bright);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 56px;
  }
}

.hero-title .accent {
  color: var(--color-accent-green);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: var(--lh-display-lg);
  letter-spacing: var(--ls-display-lg);
  color: var(--color-on-surface-variant);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 56px;
  }
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
}

.hero-location .divider {
  height: 1px;
  width: 48px;
  background: var(--color-divider-accent);
}

.hero-location .location-text {
  font-family: var(--font-label);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-orange);
}

@media (min-width: 768px) {
  .hero-location .location-text {
    font-size: 24px;
  }
}

.hero-dates {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--color-on-surface);
  opacity: 0.8;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-dates {
    font-size: 28px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions .btn {
    width: auto;
  }
}

.section {
  padding: var(--spacing-section-gap) 0;
}

.section-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-centered .container {
  max-width: 900px;
}

.section-fullwidth {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.section-fullwidth-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.section-fullwidth-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-overlay-dark), var(--color-overlay-darker));
}

.section-fullwidth .container {
  position: relative;
  z-index: 1;
}

.atmospheric-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.glow-green {
  background: var(--color-accent-green-light);
  top: -20%;
  left: -10%;
}

.glow-orange {
  background: var(--color-accent-orange);
  bottom: -20%;
  right: -10%;
}

/* Content sections: about, editions, program */

.about-section,
.editions-section,
.program-section {
  padding-top: calc(var(--spacing-section-gap) * 1.5);
  padding-bottom: 0;
}

.program-section {
  padding-bottom: calc(var(--spacing-section-gap) * 1.5);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-lead {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: var(--size-headline-lg);
  font-weight: var(--weight-headline);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  color: var(--color-text-bright);
}

.section-lead {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
  color: var(--color-on-surface-variant);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  line-height: var(--lh-body);
}

.about-body a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-body a:hover {
  opacity: 0.8;
}

.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
}

.about-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}

.about-media:hover .about-image-frame img {
  transform: scale(1.05);
}

.about-caption {
  margin-top: 16px;
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-style: italic;
  text-align: right;
  color: var(--color-on-surface-variant);
  opacity: 0.7;
}

.editions-photo-credit {
  margin-top: 24px;
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-style: italic;
  text-align: center;
  color: var(--color-on-surface-variant);
  opacity: 0.6;
}

.editions-photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.editions-photo-credit a:hover {
  opacity: 0.8;
}

.editions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .editions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.edition-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface-container-low);
}

.edition-swatch {
  width: 100%;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.edition-card:hover .edition-swatch {
  transform: scale(1.05);
}

.edition-photo {
  width: 100%;
  height: 192px;
  overflow: hidden;
}

.edition-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.edition-card:hover .edition-photo img {
  transform: scale(1.05);
}

.edition-year-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: var(--weight-display-lg);
  opacity: 0.5;
}

.edition-swatch-0 {
  background: linear-gradient(135deg, var(--color-accent-green), var(--color-surface-container-high));
}

.edition-swatch-1 {
  background: linear-gradient(135deg, var(--color-accent-orange), var(--color-surface-container-high));
}

.edition-swatch-2 {
  background: linear-gradient(135deg, var(--color-primary), var(--color-surface-container-high));
}

.edition-swatch-0 .edition-year-mark,
.edition-swatch-1 .edition-year-mark,
.edition-swatch-2 .edition-year-mark {
  color: var(--color-surface);
}

.edition-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.edition-label span {
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-weight: 700;
  color: #ffffff;
}

.program-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 40px;
  background: var(--color-surface-container-low);
  border: 1px solid var(--color-border-subtle);
}

@media (min-width: 768px) {
  .program-card {
    padding: 64px;
  }
}

.program-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-label-sm);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  background: var(--color-overlay-light);
  color: var(--color-secondary);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.country-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-xl);
  transition: border-color 0.3s;
  background: var(--color-overlay-light);
  border: 1px solid var(--color-border-subtle);
}

.country-chip:hover {
  border-color: var(--color-secondary);
}

.country-flag {
  font-size: 28px;
}

.country-name {
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
  font-weight: 700;
  color: var(--color-on-surface);
}

.program-footer {
  text-align: center;
}

.program-footer p {
  font-family: var(--font-body);
  font-size: var(--size-body-md);
  margin-bottom: 24px;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 4px;
  transition: color 0.3s;
  color: var(--color-secondary);
  border-bottom-color: var(--color-border-subtle);
}

.program-link:hover {
  color: var(--color-text-bright);
}

.footer {
  background-color: var(--color-surface-container-lowest);
  position: relative;
  z-index: 2;
}

.footer-inner {
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--size-headline-lg);
  font-weight: var(--weight-headline);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--color-on-surface-variant);
  font-family: var(--font-body);
  font-size: var(--size-body-md);
  max-width: 320px;
}

.footer-heading {
  font-weight: 700;
  color: var(--color-text-bright);
  margin-bottom: 24px;
  font-family: var(--font-label);
  font-size: var(--size-label-md);
  font-weight: var(--weight-label);
  text-transform: uppercase;
  letter-spacing: var(--ls-label-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--color-on-surface-variant);
  font-family: var(--font-label);
  font-size: var(--size-label-md);
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border-divider);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  color: var(--color-on-surface-variant);
  font-family: var(--font-label);
  font-size: var(--size-label-sm);
}

