/* ===== FONTS ===== */
@font-face {
  font-family: "TT Firs Neue";
  src: url("assets/fonts/TTFirsNeue/TT_Firs_Neue_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("assets/fonts/TTFirsNeue/TT_Firs_Neue_Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("assets/fonts/TTFirsNeue/TT_Firs_Neue_DemiBold.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("assets/fonts/TTFirsNeue/TT_Firs_Neue_Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== BASE ===== */

.glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

:root {
  --family-body: "Inter", sans-serif;
  --type-size-sm: 14px;
  --type-height-sm: 20px;
  --background-bg-primary: #1b1d24;
  --states-primary-ghost: transparent;
  --background-component-hovered: #2a2d35;
  --link: #6ea8fe;
  --text-f: #dbe2e9;
  --bg: #15171e;
  --bg-card: #1a1d20;
  --bg-card-hover: #343a40;
  --border: #343a40;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-secondary: rgba(255, 255, 255, 0.5);
  --blue: #0d6efd;
  --blue-border: #7bb0ff;
  --header-bg: #15171ee6;
  --background-bg-header: #15171ee6;
  --header-active-bg: #1f2129;
  --header-track-bg: #1b1d24;
  --text-fixed-inverted: #ffffff;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "TT Firs Neue", sans-serif;
  --font-accent: "Caveat", cursive;
  --header-height: 65px;
  --border-alpha-light: rgba(255, 255, 255, 0.08);
  --border-button-secondary: transparent;
  --border-button-secondary-hover: transparent;
  --states-primary-secondary: #1f2129;
  --states-primary-secondary-hover: #495057;
  --states-primary-secondary-pressed: #343a40;
  --semantic-neutral-alpha-3: #1b1d24;
  --background-input-active: #1a1d20;
  --shadows-drop-1: #21252908;
  --shadows-drop-2: #2125290a;
  --shadows-drop-3: #21252914;
  --icon-primary: #ffffff;
  --icon-secondary: rgba(255, 255, 255, 0.7);
  --text-primary: #ffffff;
  --blue-hover: #3b82f6;
  --white: #ffffff;
  --slider-overlay: rgba(0, 0, 0, 0.65);
  --slider-promo-1: #1a1a2e;
  --slider-promo-2: #16213e;
  --slider-promo-3: #0f3460;
  --card-overlay-solid: rgba(0, 6, 45, 1);
  --card-overlay-mid: rgba(0, 6, 45, 0.8);
  --card-overlay-transparent: rgba(0, 6, 45, 0);
  --slider-dot-bg: rgba(255, 255, 255, 0.4);
  --slider-meta: rgba(255, 255, 255, 0.85);
  --slider-label: rgba(255, 255, 255, 0.7);
  --slider-subtitle: rgba(255, 255, 255, 0.75);
  --slider-stat-label: rgba(255, 255, 255, 0.6);
  --focus-ring-blue: rgba(13, 109, 253, 0.247);
  --focus-ring-outer: rgba(240, 242, 245, 1);
  --light-text-secondary: rgba(0, 0, 0, 0.5);
  --light-month-label: rgba(0, 0, 0, 0.3);
  --participate-gradient-start: rgba(13, 110, 253, 0.1);
  --participate-gradient-mid: rgba(13, 110, 253, 0.04);
  --participate-badge-bg: rgba(13, 110, 253, 0.1);
  --participate-badge-border: rgba(13, 110, 253, 0.25);
  --participate-hover-border: rgba(13, 110, 253, 0.4);
  --grid-line: rgba(0, 0, 0, 0.06);

  --card-bg: #15171e;
}

[data-theme="light"] {
  --background-bg-primary: #ffffff;
  --states-primary-ghost: transparent;
  --background-component-hovered: #f0f0f5;
  --link: #0d6efd;
  --card-bg: #f0f2f5b3;
  --text-f: #212529;
  --bg: #e9ecef;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f5;
  --border: #dee2e6;
  --text: #242424;
  --text-muted: #828992;
  --header-bg: #e9ecefe6;
  --background-bg-header: #e9ecefe6;
  --header-active-bg: #ffffff;
  --header-track-bg: #e2e5e8;
  --text-fixed-inverted: #ffffff;
  --border-alpha-light: rgba(0, 0, 0, 0.08);
  --border-button-secondary: #dee2e6;
  --border-button-secondary-hover: #dee2e6;
  --states-primary-secondary: #ffffff;
  --states-primary-secondary-hover: #ffffff;
  --states-primary-secondary-pressed: #ffffff;
  --semantic-neutral-alpha-3: #fff;
  --background-input-active: #ffffff;
  --shadows-drop-1: #21252908;
  --shadows-drop-2: #2125290a;
  --shadows-drop-3: #21252914;
  --icon-primary: #242424;
  --icon-secondary: #212529a3;
  --text-primary: #212529;
  --text-secondary: #6c757d;
}

[data-theme="light"] .events-tabs,
[data-theme="light"] .event-card--placeholder {
  border-color: var(--border);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100vw;
}

*,
*::before,
*::after {
  transition: none;
}
a {
  color: var(--link);
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: #0d6efd4d;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  /* padding: 0 0 0 10px; */
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* ===== HEADER ===== */
/* Mirrors reference (donatov.blog) header 1:1.
   Reference theme switch: `.dark` class on <html>. Events uses [data-theme="dark"|"light"] on <html>.
   Events default :root = dark. [data-theme="light"] overrides to light. */

.logo__img {
  max-height: 32px;
  height: 100%;
}

.dark-only {
  display: flex;
}
.light-only {
  display: none;
}
[data-theme="light"] .dark-only {
  display: none;
}
[data-theme="light"] .light-only {
  display: flex;
}

/* Theme switch sun position. Default (dark) = moved left to reveal moon. Light = at rest. */
.theme-switch__sun {
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translateX(-30px);
}
[data-theme="light"] .theme-switch__sun {
  transform: translateX(0);
}

/* Dark-state filters (default in events) */
.btn-secondary.btn-left::before,
.btn-secondary.btn-right::after {
  filter: brightness(0) invert(1);
}
.btn-secondary.btn-left:disabled:before,
.btn-secondary.btn-right:disabled:after {
  filter: none;
}
.search-button img,
.search-button__clear img {
  filter: brightness(0) invert(100%) sepia(0%) saturate(7500%) hue-rotate(23deg)
    brightness(118%) contrast(118%);
}
[data-theme="light"] .btn-secondary.btn-left::before,
[data-theme="light"] .btn-secondary.btn-right::after {
  filter: none;
}
[data-theme="light"] .search-button img,
[data-theme="light"] .search-button__clear img {
  filter: none;
}

.theme-switch {
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  line-height: 0;
}
#theme-switch {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  display: flex;
  align-items: center;
}
#theme-switch svg {
  display: block;
}

.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.gap-8 {
  gap: 7px;
}

a.btn {
  text-decoration: none;
}

/* ----- Header shell ----- */
.header {
  border-bottom: 1px solid var(--border-alpha-light);
  background: var(--background-bg-header);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo__link {
  display: inline-flex;
  padding: 16px;
  width: 100%;
  justify-content: center;
}

/* ----- Buttons (header-scoped) ----- */
.btn {
  font-family: inherit;
  border: none;
  background: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;

  font-family: var(--family-body);
  font-size: var(--type-size-sm);
  font-style: normal;
  font-weight: 500;
  line-height: var(--type-height-sm);
}

.btn-secondary {
  border: 1px solid var(--border-button-secondary);
  background: var(--states-primary-secondary);
  color: var(--text-primary);
}
.btn-secondary:hover:not(:disabled),
.btn-secondary:focus {
  border: 1px solid var(--border-button-secondary-hover);
  background: var(--states-primary-secondary-hover);
  box-shadow:
    0 9px 45px 0 var(--shadows-drop-1),
    0 2px 6px 0 var(--shadows-drop-2);
}
.btn-secondary:active {
  border: 1px solid var(--border-button-secondary-hover);
  background: var(--states-primary-secondary-pressed);
}
.btn-secondary:focus-visible {
  box-shadow:
    0 0 0 3px var(--focus-ring-blue),
    0 0 0 1px var(--focus-ring-outer);
}

.btn-pill {
  border-radius: 9999px;
}

.btn-s {
  padding: 6px 14px;
  gap: 2px;
}
.btn-s.btn-left {
  padding-left: 10px;
}
.btn-s.btn-right {
  padding-right: 10px;
  padding-left: 14px;
}

.btn-left::before,
.btn-right::after {
  content: "";
  width: 16px;
  height: 16px;
}

.btn-secondary.btn-left::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10.4714 2.86192C10.7317 3.12227 10.7317 3.54438 10.4714 3.80473L6.2761 7.99999L10.4714 12.1953C10.7317 12.4556 10.7317 12.8777 10.4714 13.1381C10.211 13.3984 9.7889 13.3984 9.52855 13.1381L4.86189 8.47139C4.60154 8.21104 4.60154 7.78893 4.86189 7.52858L9.52855 2.86192C9.7889 2.60157 10.211 2.60157 10.4714 2.86192Z' fill='%23212529'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.btn-secondary.btn-right::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.52864 2.86192C5.26829 3.12227 5.26829 3.54438 5.52864 3.80473L9.7239 7.99999L5.52864 12.1953C5.26829 12.4556 5.26829 12.8777 5.52864 13.1381C5.78899 13.3984 6.2111 13.3984 6.47145 13.1381L11.1381 8.47139C11.3985 8.21104 11.3985 7.78893 11.1381 7.52858L6.47145 2.86192C6.2111 2.60157 5.78899 2.60157 5.52864 2.86192Z' fill='%23212529'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ----- Header grid ----- */
.header-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
}
.header-content--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.header-content .btn,
.header-content .search-button,
.header-content .search-button__clear,
.header-content #theme-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
}

/* ----- Search ----- */
.main-search {
  background: none;
  border: none;
  height: 100%;
  padding: 8px;
  width: 0;
  padding-right: 0;
  margin-left: 30px;
  transition:
    width 0.3s ease,
    border-color 0.3s ease,
    margin 0.3s ease,
    opacity 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;

  color: var(--text-primary);

  font-family: var(--family-body);
  font-size: var(--type-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: var(--type-height-sm);
}
.main-search:focus {
  outline: none;
}
.main-search.expanded {
  width: 280px;
  opacity: 1;
}

.search-content {
  position: relative;
  height: 34px;
  width: 34px;
}

.search-wrapper {
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: absolute;
  border: 1px solid transparent;
  right: 0;
}
.search-wrapper:has(.main-search.expanded) {
  background: var(--background-input-active);
}

.search-button {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 0;
  bottom: 0;
}
.search-wrapper:has(.main-search.expanded) .search-button {
  right: auto;
}
.search-button__clear {
  position: absolute;
  right: 2px;
  top: 0;
  bottom: 0;
}
.search-wrapper:has(.main-search.expanded) .search-button__clear {
  visibility: visible;
  opacity: 1;
  pointer-events: unset;
}

.search-suggestions {
  position: absolute;
  top: 80%;
  right: 0;
  left: 0;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background: var(--background-bg-primary);
  padding: 4px;
  box-shadow: 0 0.5px 1px 0 var(--shadows-drop-3);
}
.search-suggestions.active {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 8px);
}
.search-wrapper:not(:has(.main-search.expanded)) .search-suggestions {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.search-result {
  border-radius: 4px;
  background: var(--states-primary-ghost);
  padding: 8px;
  text-decoration: none;
}
.search-result:hover {
  background: var(--background-component-hovered);
}
.search-result__title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);

  font-family: var(--family-body);
  font-size: var(--type-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: var(--type-height-sm);
}

/* ----- Responsive ----- */
@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 991px) {
  .pc-only {
    display: none;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
  }
  .logo__link {
    padding-left: 0;
  }
  .header .container,
  .header-content {
    height: 100%;
  }
  .header-actions {
    width: 100%;
  }
  .header-content .logo {
    position: absolute;
  }
  .header-content .logo .logo__img {
    max-width: 100%;
    height: auto;
  }
  /* Worker page: keep logo centered even in mobile-like viewport */
  .header-content--centered {
    justify-content: center;
  }
  .header-content--centered .logo {
    position: static;
  }
  .search-wrapper:has(.main-search.expanded),
  .search-content:has(.main-search.expanded) {
    width: 100%;
  }
  .main-search.expanded {
    width: 100vw;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .header-content .logo {
    max-width: 190px;
  }
  .header-content .logo .logo__img {
    max-width: 100%;
    height: auto;
  }
}

/* ===== SLIDER ===== */
.slider-section {
  padding: 24px 0 16px;
  overflow: hidden;
}

.slider {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  height: 440px;
}

.slider__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.slider__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    var(--slider-overlay) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}

.slider__content {
  position: relative;
  z-index: 1;
  padding: 40px 48px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider__title {
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--white);
}

.slider__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--slider-meta);
  margin-bottom: 22px;
}

.slider__meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.slider__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.slider__price {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.slider__dots.swiper-pagination {
  position: absolute !important;
  bottom: 16px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transform: none !important;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slider-dot-bg);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    opacity 0.3s,
    transform 0.3s;
}

.slider__dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--white);
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
}

.slider__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}
.slider__arrow--prev {
  left: 8px;
}
.slider__arrow--next {
  right: 8px;
}
.slider__arrow--prev svg {
  transform: scaleX(-1);
}

.slider__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slider-label);
  margin-bottom: 8px;
}

.slider__subtitle {
  font-size: 14px;
  color: var(--slider-subtitle);
  line-height: 1.5;
  max-width: 380px;
  margin-bottom: 18px;
}

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

.slider__cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
}

.slider__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.slider__cta-btn:hover {
  opacity: 0.7;
}

.slider__slide--promo .slider__promo-bg,
.slider__slide--stats .slider__stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--slider-promo-1) 0%,
    var(--slider-promo-2) 50%,
    var(--slider-promo-3) 100%
  );
}

.slider__content--stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.slider__content--stats .slider__title {
  font-size: 28px;
  margin-bottom: 10px;
}

.slider__content--stats .slider__subtitle {
  margin-bottom: 0;
}

.slider__stats-grid {
  display: flex;
  gap: 32px;
  margin-top: 18px;
}

.slider__stat {
  text-align: center;
}

.slider__stat-num {
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
}

.slider__stat-label {
  font-size: 14px;
  color: var(--slider-stat-label);
  margin-top: 4px;
}

.calendar-section {
  padding: 2rem 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.tab-toggle-mobile {
  display: none;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .events-tabs {
    display: none !important;
  }
  .tab-toggle-mobile {
    display: inline-flex;
  }
  .calendar-section {
    padding: 2rem 0 0 0;
  }
}

.calendar-title {
  font-family: "TT Firs Neue", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.calendar-title .cal-title__date {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .calendar-title .cal-title__date {
    display: block;
  }
}

.calendar-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.cal-filter {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--semantic-neutral-alpha-3);
  border: 1px solid transparent;
  color: var(--text-f);
  border-radius: 50rem;
  padding: 0.4rem 1rem;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
}
.cal-filter:hover {
  opacity: 1;
  border-color: rgba(13, 110, 253, 0.5);
  color: var(--blue);
}
.cal-filter.active {
  opacity: 1;
  border-color: var(--blue);
  color: var(--blue);
}

.calendar-filters-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.75rem;
  flex-wrap: nowrap;
  width: 100%;
}
.calendar-filters-row > .calendar-filters {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.calendar-filters-row > .calendar-filters::-webkit-scrollbar {
  display: none;
}
.calendar-filters-row > .calendar-filters .cal-filter {
  flex: 0 0 auto;
}
.calendar-filters-row > .events-tabs {
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: auto;
}

.calendar-strip-wrapper {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.calendar-strip-wrapper::before,
.calendar-strip-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.15s ease-out;
}
.calendar-strip-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.calendar-strip-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.calendar-strip-wrapper.at-start::before {
  opacity: 0;
}
.calendar-strip-wrapper.at-end::after {
  opacity: 0;
}

.calendar-swiper {
  overflow: hidden;
  width: 100%;
}
.calendar-swiper .swiper-wrapper {
  align-items: flex-end;
}

.cal-control {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 5;
}
.cal-control--left {
  left: 12px;
}
.cal-control--right {
  right: 12px;
  justify-content: flex-end;
}
.cal-control__icon {
  min-width: 23px;
  max-width: 23px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 41px;
  background: var(--bg);
  position: relative;
}
.cal-control__icon::after {
  content: "";
  width: 12px;
  height: 22px;
  display: block;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggb3BhY2l0eT0iLjgiIGQ9Ik0xIDIxbDEwLTEwTDEgMSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==")
    0 0 / 12px 22px no-repeat;
}
.cal-control--left .cal-control__icon::after {
  transform: scaleX(-1);
}
[data-theme="dark"] .cal-control__icon::after,
:root .cal-control__icon::after {
  filter: invert(1);
}
[data-theme="light"] .cal-control__icon::after {
  filter: none;
}

.cal-month-label--sticky {
  position: absolute;
  top: 0;
  left: 55px;
  font-size: 10px;
  line-height: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cal-month-label--sticky.visible {
  opacity: 1;
}
.cal-control[disabled] {
  opacity: 0;
  pointer-events: none;
}
.calendar-swiper .swiper-slide {
  width: auto;
}
.swiper-slide--day {
  width: 52px !important;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 3px;
}
.cal-month-label {
  display: block;
  font-size: 10px;
  line-height: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 4px;
  min-height: 14px;
}
.swiper-slide--month-start {
  margin-left: 24px;
}
.swiper-slide--month-start .cal-day.range-mid {
  margin-left: -27px;
  padding-left: 27px;
  width: calc(100% + 30px);
}
.swiper-slide--month-start .cal-day.range-end {
  margin-left: -27px;
  padding-left: 27px;
  width: calc(100% + 27px);
}

.swiper-slide--month {
  display: none;
}

.cal-month-label {
  display: block;
  font-size: 10px;
  line-height: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 4px;
}
.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  flex-shrink: 0;
  padding: 7px 0;
  border-radius: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: none;
  position: relative;
  color: var(--text);
}

.cal-day:hover {
  background: rgba(13, 110, 253, 0.08);
}
[data-theme="light"] .cal-day:hover {
  background: rgba(13, 110, 253, 0.08);
}
.cal-day.today .cal-day__date {
}
.cal-day.today .cal-day__weekday {
}
.cal-day.selected {
  background: rgba(13, 110, 253, 0.1);
  border: none;
}
.cal-day.range-start,
.cal-day.range-end,
.cal-day.range-mid {
  background: rgba(13, 110, 253, 0.1);
}
[data-theme="light"] .cal-day.selected,
[data-theme="light"] .cal-day.range-start,
[data-theme="light"] .cal-day.range-end,
[data-theme="light"] .cal-day.range-mid {
  background: rgba(13, 110, 253, 0.1);
}

.cal-day.range-mid {
  border-radius: 0;
  margin: 0 -3px;
  padding-left: 3px;
  padding-right: 3px;
  width: calc(100% + 6px);
}
.cal-day.range-start {
  border-radius: 20px 0 0 20px;
  margin-right: -3px;
  padding-right: 3px;
  width: calc(100% + 3px);
}
.cal-day.range-end {
  border-radius: 0 20px 20px 0;
  margin-left: -3px;
  padding-left: 3px;
  width: calc(100% + 3px);
}
.cal-day.range-start.range-end {
  border-radius: 20px;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.cal-day.selected .cal-day__date,
.cal-day.range-start .cal-day__date,
.cal-day.range-end .cal-day__date,
.cal-day.range-mid .cal-day__date {
  color: var(--blue);
}
.cal-day.selected .cal-day__weekday,
.cal-day.range-start .cal-day__weekday,
.cal-day.range-end .cal-day__weekday,
.cal-day.range-mid .cal-day__weekday {
  color: rgba(13, 110, 253, 0.55);
}
.cal-day.selected .cal-day__weekday.weekend,
.cal-day.range-start .cal-day__weekday.weekend,
.cal-day.range-end .cal-day__weekday.weekend,
.cal-day.range-mid .cal-day__weekday.weekend {
  color: rgba(13, 110, 253, 0.55);
}

.cal-day__weekday {
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  transition: none;
}
[data-theme="light"] .cal-day__weekday {
  color: var(--light-text-secondary);
}
.cal-day__weekday.weekend {
  font-weight: 700;
  color: var(--text-muted);
}
[data-theme="light"] .cal-day__weekday.weekend {
  color: var(--light-text-secondary);
}
.cal-day__date {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  transition: none;
}

[data-theme="light"] .cal-month-label {
  color: var(--light-month-label);
}

.swiper-slide--other {
  width: auto !important;
  display: flex;
  align-items: flex-end;
  padding-left: 0;
  margin-left: 24px;
  margin-right: 0;
}
.cal-other-date {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(13, 110, 253, 0.08);
  border: none;
  border-radius: 20px;
  padding: 0 16px;
  margin-bottom: 8px;
  cursor: pointer;
  white-space: normal;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  height: 50px;
}
.cal-other-date:hover {
  background: rgba(13, 110, 253, 0.15);
}

.date-picker-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: none;
  display: none;
  width: 260px;
}
.date-picker-dropdown.active {
  display: block;
}
.date-picker__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.date-picker__nav-title {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.date-picker__nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.date-picker__nav-btn:hover:not(:disabled) {
  color: var(--text);
}
.date-picker__nav-btn:disabled {
  opacity: 0.2;
  cursor: default;
}
.date-picker__months {
  display: block;
}
.dp-month__title {
  display: none;
}
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-day {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;

  margin: 0 auto;
}
.dp-day--header {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: default;
  font-weight: 500;
}
.dp-day--empty {
  cursor: default;
}
.dp-day--past {
  color: var(--text-muted);
  opacity: 0.4;
  pointer-events: none;
}
.dp-day--today {
  color: inherit;
  font-weight: inherit;
}
.dp-day--weekend:not(.dp-day--header):not(.dp-day--past) {
  color: var(--blue);
}
.dp-day:not(.dp-day--header):not(.dp-day--empty):not(.dp-day--past):hover {
  background: color-mix(in srgb, var(--blue) 12%, transparent);
}
.dp-day--selected {
  background: color-mix(in srgb, var(--blue) 10%, transparent) !important;
  color: var(--text) !important;
}
.dp-day--range-start,
.dp-day--range-end {
  background: var(--blue) !important;
  color: var(--white) !important;
}
.dp-day--range-mid {
  border-radius: 0;
}
.dp-day--range-start {
  border-radius: 6px 0 0 6px;
}
.dp-day--range-end {
  border-radius: 0 6px 6px 0;
}
.dp-day--range-start.dp-day--range-end {
  border-radius: 6px;
}

.date-picker__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.date-picker__quick-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
  text-align: center;
}
.date-picker__quick-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.date-picker__quick-btn--cancel {
  border-color: transparent;
  color: var(--text-muted);
}
.date-picker__quick-btn--cancel:hover {
  color: var(--text);
  border-color: transparent;
}

/* ===== EVENTS TABS ===== */
.events-section {
  padding: 2rem 0 40px;
}

.events-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.events-category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--semantic-neutral-alpha-3);
  border: 1px solid transparent;
  color: var(--text-f);
  border-radius: 50rem;
  padding: 0.45rem 1.1rem;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
}

.category-btn:hover {
  border-color: rgba(13, 110, 253, 0.5);
  color: var(--blue);
}

.category-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.events-sort-dropdown {
  position: relative;
  margin-left: auto;
}

.sort-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--semantic-neutral-alpha-3);
  border: 1px solid transparent;
  color: var(--text-f);
  border-radius: 50rem;
  padding: 0.45rem 1.1rem;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
}

.sort-dropdown__toggle:hover {
  border-color: rgba(13, 110, 253, 0.5);
  color: var(--blue);
}

.sort-dropdown__toggle.open {
  border-color: var(--blue);
  color: var(--blue);
}

.sort-dropdown__icon {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.sort-dropdown__toggle.open .sort-dropdown__icon {
  transform: rotate(180deg);
}

.sort-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 50;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
}

.sort-dropdown__menu.open {
  display: block;
}

.sort-dropdown__menu--split {
  min-width: 380px;
  padding: 0;
  overflow: hidden;
}

.sort-dropdown__menu--split.open {
  display: flex;
}

.sort-dropdown__column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.sort-dropdown__column--right {
  border-left: 1px solid var(--border);
  flex: 0 0 180px;
}

.sort-dropdown__section-title {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 10px 8px;
}

.sort-dropdown__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 320px;
  overflow-y: auto;
}

@media (max-width: 540px) {
  .sort-dropdown__menu--split {
    flex-direction: column;
    min-width: 240px;
  }
  .sort-dropdown__column--right {
    border-left: none;
    border-top: 1px solid var(--border);
    flex: 1 1 auto;
  }
}

.sort-dropdown__item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font);
  color: var(--text-f);
  border-radius: 8px;
  cursor: pointer;
  transition: none;
}

.sort-dropdown__item:hover {
  background: var(--background-component-hovered);
}

.sort-dropdown__item.active {
  color: var(--blue);
  font-weight: 500;
}

.events-tabs {
  background: var(--semantic-neutral-alpha-3);
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 4px;
  width: 265px;
  margin: 0;
  display: flex;
}

.ev-tab {
  flex: 1;
  height: 36px;
  border: none;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
}

.ev-tab.active {
  background: var(--blue);
  /* border: 1px solid var(--blue-border); */
  color: var(--white);
  font-weight: 500;
  box-shadow: 0 0.5px 1px rgba(33, 37, 41, 0.08);
}
.archive-years {
  gap: 0.5rem;
  flex: 1 1 0;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  margin-right: auto;
}
.archive-years[style*="display: none"] {
  display: none !important;
}
.archive-years:not([style*="display: none"]) {
  display: flex;
}
.archive-years::-webkit-scrollbar {
  display: none;
}
.archive-years .archive-year {
  flex: 0 0 auto;
}

.archive-year {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--semantic-neutral-alpha-3);
  border: 1px solid transparent;
  color: var(--text-f);
  border-radius: 50rem;
  padding: 0.4rem 1rem;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s,
    transform 0.2s;
}

.archive-year:hover {
  opacity: 1;
  border-color: rgba(13, 110, 253, 0.5);
  color: var(--blue);
}

.archive-year.active {
  opacity: 1;
  border-color: var(--blue);
  color: var(--blue);
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.event-card {
  flex: 0 1 calc(50% - 10px);
  min-width: 300px;
  max-width: calc(50% - 10px);
  height: 360px;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card:hover {
  box-shadow:
    0 16px 48px var(--shadows-drop-3),
    0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.event-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card:hover .event-card__bg {
  transform: scale(1.06);
}

.event-card__blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  -webkit-mask-image: radial-gradient(
    ellipse 120% 120% at 0% 100%,
    black 0%,
    black 30%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse 120% 120% at 0% 100%,
    black 0%,
    black 30%,
    transparent 70%
  );
  pointer-events: none;
  transition:
    backdrop-filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-backdrop-filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.event-card:hover .event-card__blur {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -webkit-mask-image: none;
  mask-image: none;
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 12% 86%,
    var(--card-overlay-solid) 0%,
    var(--card-overlay-mid) 41%,
    var(--card-overlay-transparent) 100%
  );
  pointer-events: none;
}

.event-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.event-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: var(--white);
  max-width: none;
  margin-bottom: 12px;
}

.event-card__date {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}

.event-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0 18px;
  height: 40px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  width: fit-content;
}

.event-card__countdown {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #60a5fa;
  border-radius: 999px;
  padding: 0 10px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
}

.event-card--placeholder {
  background: var(--semantic-neutral-alpha-3);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card--placeholder:hover {
  box-shadow: none;
}
.event-card--placeholder__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  gap: 12px;
}
.event-card--placeholder__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--text);
}
.event-card--placeholder__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.event-card--placeholder__link {
  margin-top: 8px;
}

/* ===== INFINITE SCROLL LOADER ===== */
.events-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 16px;
}
.events-loader__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin-loader 0.7s linear infinite;
}
@keyframes spin-loader {
  to {
    transform: rotate(360deg);
  }
}

/* ===== CARD APPEAR ANIMATION ===== */
.event-card,
.event-card--placeholder {
  opacity: 0;
  transform: translateY(24px);
  animation: card-appear 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes card-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-brand__label {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 26px;
  color: var(--blue);
  line-height: 1;
}

.footer-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}
.footer-legal a:hover {
  color: var(--text);
}

/* ===== NO EVENTS ===== */
.no-events {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.no-events__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.no-events__text {
  font-size: 1rem;
  font-weight: 500;
}

/* ===== CALENDAR SELECTED ===== */

/* ===== HEADER HELPERS ===== */
.header-left {
  display: flex;
  align-items: center;
}

.header-actions-inner {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .slider {
    height: 300px;
  }
  .slider__content {
    padding: 24px 56px;
  }
  .events-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .events-toolbar .events-sort-dropdown {
    order: -1;
    margin-left: 0;
    align-self: flex-start;
  }
  .event-card {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    height: 280px;
  }
  .event-card__title {
    font-size: 18px;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .footer-copy {
    position: static;
    transform: none;
  }
  .footer-legal {
    margin-left: 0;
  }
  .header-brand {
    position: static;
    transform: none;
    margin-left: auto;
  }
}
