@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-VariableFont_GRAD,opsz,wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --header-height: 170px;
  --header-main-width: 733px;
  --header-main-height: 170px;
  --header-tab-width: 136px;
  --header-tab-height: 247px;
  --logo-top: 28px;
  --logo-left: 39px;
  --logo-width: 603px;
  --year-top: 45px;
  --year-right: 10px;
  --year-label-size: 1.75rem;
  --year-label-spacing: 0.083rem;
  --year-number-size: 3.25rem;
  --footer-left-width: 238px;
  --footer-left-height: 194px;
  --footer-right-width: 273px;
  --footer-right-height: 260px;
  --footer-height: 100px;
  --footer-text-size: 2.5rem;
  --footer-text-bottom: 25px;
  --venue-left: 36px;
  --dates-right: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f8f8f6;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: #111;
  font-family: "Google Sans", Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  background-image: url("../img/bg.jpg");
  background-image: image-set(
    url("../img/bg.webp") type("image/webp"),
    url("../img/bg.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
}

.edition-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.edition-header,
.edition-footer {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 100%;
  overflow: visible;
  color: #fff;
}

.edition-header {
  height: var(--header-height);
}

.edition-footer {
  height: var(--footer-height);
  margin-top: auto;
}

.edition-header::before,
.edition-header::after,
.edition-footer::before,
.edition-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: #000;
  pointer-events: none;
}

.edition-header::before {
  top: 0;
  left: 0;
  width: var(--header-main-width);
  height: var(--header-main-height);
  clip-path: polygon(0 0, 100% 0, 86.63% 100%, 0 100%);
}

.edition-header::after {
  top: 0;
  right: 0;
  width: var(--header-tab-width);
  height: var(--header-tab-height);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68.81%);
}

.edition-footer::before {
  left: 0;
  bottom: 0;
  width: var(--footer-left-width);
  height: var(--footer-left-height);
  clip-path: polygon(0 0, 100% 71.48%, 61.88% 100%, 0 100%);
}

.edition-footer::after {
  right: 0;
  bottom: 0;
  width: var(--footer-right-width);
  height: var(--footer-right-height);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 60.5%);
}

.edition-logo,
.edition-year,
.edition-venue,
.edition-dates {
  position: absolute;
  z-index: 1;
}

.edition-logo {
  top: var(--logo-top);
  left: var(--logo-left);
  display: block;
  width: var(--logo-width);
  line-height: 0;
}

.edition-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.edition-year {
  top: var(--year-top);
  right: var(--year-right);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  margin: 0;
  color: #fff;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-90deg);
  transform-origin: center;
}

.edition-year strong {
  font-size: var(--year-label-size);
  letter-spacing: var(--year-label-spacing);
  font-weight: 700;
}

.edition-year span {
  font-size: var(--year-number-size);
  font-weight: 400;
}

.edition-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
  width: 100%;
  padding: clamp(2.5rem, 6vw, 7rem) clamp(1rem, 5vw, 6rem);
}

.edition-venue,
.edition-dates {
  margin: 0;
  color: #fff;
  font-size: var(--footer-text-size);
  font-weight: 400;
  line-height: 0.92;
}

.edition-venue span,
.edition-dates span {
  display: block;
}

.edition-venue {
  bottom: var(--footer-text-bottom);
  left: var(--venue-left);
}

.edition-dates {
  right: var(--dates-right);
  bottom: var(--footer-text-bottom);
}

.landing-body .edition-page {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.landing-body .edition-main {
  min-height: 0;
  flex: 1 1 0;
  margin-top: calc(-1 * var(--header-height));
  margin-bottom: calc(-1 * var(--footer-height));
  padding: 0;
}

.landing-body .edition-content {
  width: 100%;
  height: 100%;
}

.landing-sections {
  height: 100%;
  overflow-y: auto;
  outline: none;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.landing-sections::-webkit-scrollbar {
  display: none;
}

.landing-sections--single {
  overflow: hidden;
}

.edition-info-body .edition-main {
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.edition-info-body .edition-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.edition-article {
  width: min(100%, 980px);
  padding: clamp(1.25rem, 3vw, 3rem);
  color: #000;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(6px);
}

.edition-article h1 {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: normal;
}

.edition-article p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.25;
}

.edition-article p + p {
  margin-top: 1rem;
}

.edition-article em {
  font-style: italic;
}

.edition-article strong {
  font-weight: 700;
}

.edition-article p a {
  color: inherit;
  text-decoration: underline;
}

.edition-detail {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.edition-detail > h1,
.edition-detail > .detail-kicker {
  text-align: center;
}

.detail-profile-image {
  width: min(100%, 360px);
  aspect-ratio: 1;
  justify-self: center;
  object-fit: cover;
  background: #fff;
}

.detail-kicker {
  font-weight: 700;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  text-align: center;
}

.detail-meta div {
  min-width: 0;
}

.detail-meta div:only-child {
  grid-column: 1 / -1;
}

.detail-meta dt {
  font-size: 0.85rem;
  font-weight: 700;
}

.detail-meta dd {
  margin: 0.2rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.detail-meta dd span {
  display: block;
}

.detail-meta a {
  color: inherit;
  text-decoration: underline;
}

.detail-action {
  justify-self: center;
  padding: 0.65rem 1rem;
  color: #000;
  border: 2px solid #000;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.detail-action:hover {
  color: #fff;
  background: #000;
}

.detail-section {
  display: grid;
  gap: 0.65rem;
}

.detail-section h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 0.95;
}

.detail-link-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-link-list a {
  color: #000;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-decoration: underline;
}

.event-participant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-participant-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 128px;
  color: #000;
  text-decoration: none;
}

.event-participant-card img,
.event-participant-card span {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: #fff;
}

.event-participant-card img {
  object-fit: cover;
}

.event-participant-card span {
  display: grid;
  place-items: center;
  border: 2px solid #000;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.event-participant-card strong {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-decoration: underline;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.detail-gallery-grid a {
  display: block;
  background: rgba(255, 255, 255, 0.72);
}

.detail-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

@media (max-width: 980px) {
  .detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.landing-panel {
  position: relative;
  display: grid;
  height: 100%;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.landing-hero {
  align-items: center;
  justify-items: center;
  overflow: visible;
}

.landing-headline {
  position: relative;
  z-index: 2;
  container-type: inline-size;
  width: min(96vw, 460px, clamp(300px, calc(47.222dvh + 60px), 460px));
  margin-top: -210px;
}

@media (min-width: 1201px) {
  .landing-headline {
    margin-top: -110px;
  }
}

@media (min-height: 720px) {
  .landing-headline {
    transform: translateY(-50px);
  }
}

.landing-headline img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-intro {
  position: absolute;
  inset: 0;
}

.landing-intro h1 {
  margin: 0;
  color: #000;
  font-size: 11cqw;
  font-weight: 700;
  line-height: 0.9;
}

.landing-intro h1 span {
  position: absolute;
  display: block;
  white-space: nowrap;
}

.landing-intro h1 span:first-child {
  top: 9.5%;
  left: 28.5%;
}

.landing-intro h1 span:last-child {
  top: 45%;
  left: 65%;
}

.landing-actions {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  justify-items: center;
  width: 100vw;
  transform: translateX(-50%);
}

.landing-links {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 34rem);
  padding: 0.6rem 1rem 0.8rem;
}

.landing-links::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(6px);
}

.landing-about-link {
  padding: 0;
  color: #000;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 0.98;
  text-decoration: none;
}

.landing-about-link strong {
  font-weight: 700;
  text-decoration: underline;
}

.landing-about-link:hover,
.programme-list-item:hover .programme-event-link span {
  text-decoration: underline;
}

.landing-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 0.35rem;
  justify-content: center;
  width: calc(100% + 2rem);
}

.landing-socials a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #fff;
  background: #000;
  border-radius: 999px;
}

.landing-socials svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.landing-partners {
  position: absolute;
  bottom: var(--footer-height);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(8, 80px);
  gap: 0.35rem clamp(0.35rem, 1.2vw, 0.65rem);
  justify-content: center;
  width: 100vw;
  padding: 0.5rem 0;
  background: #fff;
  transform: translateX(-50%);
  opacity: 0.9;
}

.landing-partners a {
  display: block;
  width: 100%;
  background: #fff;
  line-height: 0;
}

.landing-partners img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 34px;
  height: 34px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border-right: 5px solid #000;
  border-bottom: 5px solid #000;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 150ms ease;
}

.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.programme-day {
  align-content: center;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(1rem, 2vh, 1.5rem) clamp(0.75rem, 2vw, 1.5rem) 4.5rem;
}

.programme-card {
  width: min(100%, 960px);
  max-height: 100%;
  padding: clamp(1rem, 2.5vw, 1.75rem) clamp(1.75rem, 4vw, 3.5rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.programme-day h2 {
  margin: 0 0 clamp(1rem, 2.5vw, 2rem);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.9;
}

.programme-day h2 span {
  display: block;
  font-size: 0.74em;
  font-weight: 700;
}

.programme-list {
  display: grid;
  gap: 0.5rem;
}

.programme-list-item {
  display: grid;
  grid-template-columns: minmax(7rem, 0.5fr) minmax(0, 1.4fr) minmax(8rem, 0.7fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: baseline;
  padding: 0.7rem 0;
  color: #000;
  border-top: 2px solid #000;
  text-decoration: none;
}

.programme-list-item:last-child {
  border-bottom: 2px solid #000;
}

.programme-event-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.programme-list time {
  font-size: clamp(0.95rem, 1.65vw, 1.25rem);
  font-weight: 700;
}

.programme-list span {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
}

.programme-list small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68em;
  font-weight: 400;
  line-height: 1.05;
}

.programme-list em,
.programme-location-link {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-style: normal;
  text-align: right;
}

.programme-location-link {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 900px) {
  .programme-day--dense {
    width: min(100%, 1180px);
  }

  .programme-day--dense .programme-card {
    width: min(100%, 1120px);
    padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  }

  .programme-day--dense h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
  }

  .programme-day--dense .programme-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem clamp(1rem, 2vw, 1.5rem);
  }

  .programme-day--dense .programme-list-item {
    grid-template-columns: minmax(5.6rem, 0.55fr) minmax(0, 1.35fr);
    gap: 0.45rem 0.75rem;
    align-content: start;
    padding: 0.45rem 0;
  }

  .programme-day--dense .programme-list span {
    font-size: clamp(0.95rem, 1.35vw, 1.18rem);
  }

  .programme-day--dense .programme-list em,
  .programme-day--dense .programme-location-link {
    grid-column: 2;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    text-align: left;
  }
}

@media (max-height: 840px) {
  .programme-day {
    padding-top: 0.75rem;
    padding-bottom: 3.25rem;
  }

  .programme-card {
    padding-block: clamp(0.75rem, 2vh, 1.25rem);
  }

  .programme-day h2 {
    margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
    font-size: clamp(2rem, 4.2vw, 3.7rem);
  }

  .programme-list {
    gap: 0.35rem;
  }

  .programme-list-item {
    padding: 0.5rem 0;
  }

  .programme-list time {
    font-size: clamp(0.9rem, 1.45vw, 1.1rem);
  }

  .programme-list span {
    font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  }

  .programme-list em {
    font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  }
}

@media (max-height: 720px) {
  .programme-day {
    padding-top: 0.5rem;
    padding-bottom: 2.75rem;
  }

  .programme-card {
    padding-block: 0.75rem;
  }

  .programme-day h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 3.6vw, 3rem);
  }

  .programme-list {
    gap: 0.25rem;
  }

  .programme-list-item {
    padding: 0.4rem 0;
  }
}

@media (max-width: 767px) {
  .edition-main {
    padding: 2rem 1rem 2.5rem;
  }

  .landing-body .edition-main {
    padding: 0;
  }

  .programme-day {
    padding: 1rem 0 4.75rem;
  }

  .programme-card {
    padding: 1.1rem 1rem 1.25rem;
  }

  .programme-list-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .programme-list em,
  .programme-location-link {
    text-align: left;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-participant-grid {
    grid-template-columns: 1fr;
  }

  .programme-day--dense {
    padding-top: 0.65rem;
    padding-bottom: 3.35rem;
  }

  .programme-day--dense .programme-card {
    padding: 0.65rem 0.85rem;
  }

  .programme-day--dense h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.55rem, 7.4vw, 2.35rem);
  }

  .programme-day--dense .programme-list {
    gap: 0.1rem;
  }

  .programme-day--dense .programme-list-item {
    padding: 0.27rem 0;
  }

  .programme-day--dense .programme-list time {
    font-size: clamp(0.76rem, 3.2vw, 0.95rem);
  }

  .programme-day--dense .programme-list span {
    font-size: clamp(0.84rem, 3.6vw, 1.05rem);
  }

  .programme-day--dense .programme-list em,
  .programme-day--dense .programme-location-link {
    font-size: clamp(0.72rem, 3vw, 0.88rem);
  }
}

@media (max-width: 600px) {
  .landing-actions {
    top: calc(100% + 10px);
  }

  .landing-links {
    width: min(100%, 20rem);
    padding: 0.5rem 0.65rem 0.65rem;
  }

  .landing-about-link {
    padding-bottom: 0rem;
    font-size: clamp(0.95rem, 4.2vw, 1.25rem);
  }

  .landing-socials {
    gap: 0.5rem;
    margin-top: 0.25rem;
    width: calc(100% + 1.3rem);
  }

  .landing-partners {
    grid-template-columns: repeat(4, 68px);
  }

}

@media (max-width: 1200px) {
  .landing-partners {
    grid-template-columns: repeat(4, 80px);
  }
}

@media (max-width: 550px) {
  .landing-partners {
    bottom: calc(var(--footer-height) + 40px);
    grid-template-columns: repeat(4, 68px);
  }
}

@media (min-width: 441px) {
  .scroll-cue {
    position: fixed;
    bottom: 30px;
    z-index: 20;
  }
}

@media (max-width: 440px) {
  .scroll-cue {
    bottom: calc(var(--footer-height) + 12px);
    width: 26px;
    height: 26px;
    border-width: 4px;
  }
}

@media (max-height: 550px) and (min-aspect-ratio: 4 / 3) and (max-width: 1200px) {
  .landing-body::after {
    content: "Моля, завъртете телефона вертикално.";
    position: fixed;
    inset: 0;
    z-index: 10;
    display: grid;
    place-items: center;
    padding: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 18.89vw;
    --header-main-width: 81.44vw;
    --header-main-height: 18.89vw;
    --header-tab-width: 15.11vw;
    --header-tab-height: 27.44vw;
    --logo-top: 3.11vw;
    --logo-left: 4.33vw;
    --logo-width: 67vw;
    --year-top: 5vw;
    --year-right: 1.11vw;
    --year-label-size: 3.11vw;
    --year-label-spacing: 0.148vw;
    --year-number-size: 5.78vw;
  }
}

@media (max-height: 900px) {
  :root {
    --header-height: min(18.89vw, clamp(118px, calc(28.889dvh - 90px), 170px));
    --header-main-width: min(81.44vw, clamp(509px, calc(124.444dvh - 387px), 733px));
    --header-main-height: min(18.89vw, clamp(118px, calc(28.889dvh - 90px), 170px));
    --header-tab-width: min(15.11vw, clamp(94px, calc(23.333dvh - 74px), 136px));
    --header-tab-height: min(27.44vw, clamp(171px, calc(42.222dvh - 133px), 247px));
    --logo-top: min(3.11vw, clamp(19px, calc(5dvh - 17px), 28px));
    --logo-left: min(4.33vw, clamp(27px, calc(6.667dvh - 21px), 39px));
    --logo-width: min(67vw, clamp(418px, calc(102.778dvh - 322px), 603px));
    --year-top: min(5vw, clamp(31px, calc(7.778dvh - 25px), 45px));
    --year-right: min(1.11vw, clamp(7px, calc(1.667dvh - 5px), 10px));
    --year-label-size: min(3.11vw, clamp(1.22rem, calc(4.711dvh - 14.4px), 1.75rem));
    --year-label-spacing: min(0.148vw, clamp(0.058rem, calc(0.222dvh - 0.672px), 0.083rem));
    --year-number-size: min(5.78vw, clamp(2.26rem, calc(8.8dvh - 27.2px), 3.25rem));
    --footer-left-width: clamp(165px, calc(40.556dvh - 127px), 238px);
    --footer-left-height: clamp(134px, calc(33.333dvh - 106px), 194px);
    --footer-right-width: clamp(189px, calc(46.667dvh - 147px), 273px);
    --footer-right-height: clamp(180px, calc(44.444dvh - 140px), 260px);
    --footer-height: clamp(70px, calc(16.667dvh - 50px), 100px);
    --footer-text-size: clamp(1.72rem, calc(6.933dvh - 22.4px), 2.5rem);
    --footer-text-bottom: clamp(17px, calc(4.444dvh - 15px), 25px);
    --venue-left: clamp(25px, calc(6.111dvh - 19px), 36px);
    --dates-right: clamp(19px, calc(5dvh - 17px), 28px);
  }

}

@media (max-height: 720px) {
  :root {
    --footer-height: 70px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 18.89vw;
    --header-main-width: 81.44vw;
    --header-main-height: 18.89vw;
    --header-tab-width: 15.11vw;
    --header-tab-height: 27.44vw;
    --logo-top: 3.11vw;
    --logo-left: 4.33vw;
    --logo-width: 67vw;
    --year-top: 5vw;
    --year-right: 1.11vw;
    --year-label-size: 3.11vw;
    --year-label-spacing: 0.148vw;
    --year-number-size: 5.78vw;
  }
}

@media (max-width: 900px) {
  :root {
    --footer-left-width: min(clamp(165px, calc(24.333vw + 19px), 238px), clamp(165px, calc(40.556dvh - 127px), 238px));
    --footer-left-height: min(clamp(134px, calc(20vw + 14px), 194px), clamp(134px, calc(33.333dvh - 106px), 194px));
    --footer-right-width: min(clamp(189px, calc(28vw + 21px), 273px), clamp(189px, calc(46.667dvh - 147px), 273px));
    --footer-right-height: min(clamp(180px, calc(26.667vw + 20px), 260px), clamp(180px, calc(44.444dvh - 140px), 260px));
    --footer-text-size: min(clamp(1.72rem, calc(4.16vw + 2.56px), 2.5rem), clamp(1.72rem, calc(6.933dvh - 22.4px), 2.5rem));
    --footer-text-bottom: min(clamp(17px, calc(2.667vw + 1px), 25px), clamp(17px, calc(4.444dvh - 15px), 25px));
    --venue-left: min(clamp(25px, calc(3.667vw + 3px), 36px), clamp(25px, calc(6.111dvh - 19px), 36px));
    --dates-right: min(clamp(19px, calc(3vw + 1px), 28px), clamp(19px, calc(5dvh - 17px), 28px));
  }
}

@media (max-width: 600px) {
  :root {
    --footer-left-width: min(39.67vw, 165px);
    --footer-left-height: min(32.33vw, 134px);
    --footer-right-width: min(45.5vw, 189px);
    --footer-right-height: min(43.33vw, 180px);
    --footer-text-size: min(6.67vw, 1.72rem);
    --footer-text-bottom: min(4.17vw, 17px);
    --venue-left: min(6vw, 25px);
    --dates-right: min(4.67vw, 19px);
  }
}
