/* Sidebar and header */

.site-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 1000;
  background: var(--color-yellow);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-soft);
}

.site-sidebar__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
}

.topbar {
  position: relative;
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header {
  padding-top: 16px;
}

.topbar__nav,
.menu-toggle {
  position: relative;
  z-index: 2;
  padding: 0;
}

.topbar__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  width: 132px;
  transform: translate(-50%, -50%);
}

.topbar__logo img {
  width: 100%;
  height: auto;
}

.topbar.is-scrolled {
  --topbar-fixed-x: max(var(--container-padding), calc((100vw - var(--site-width)) / 2 + var(--container-padding)));

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1900;
  padding: 9px var(--topbar-fixed-x);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.topbar.is-scrolled .topbar__logo {
  display: block;
}

.topbar__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar__menu > li {
  position: relative;
}

.topbar__menu a {
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.topbar__menu a:hover {
  color: var(--color-yellow);
}

.topbar__menu a.is-current {
  color: var(--color-yellow);
}

.topbar__link--has-submenu {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__link--has-submenu::after,
.topbar__submenu-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.topbar__submenu-toggle {
  display: none;
}

.topbar__item--has-submenu:hover .topbar__link--has-submenu::after,
.topbar__item--has-submenu:focus-within .topbar__link--has-submenu::after {
  transform: translateY(3px) rotate(225deg);
}

.topbar__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  z-index: 20;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.topbar__submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
  z-index: 1;
}

.topbar__submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 27px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-yellow);
  border-left: 2px solid var(--color-yellow);
  background: rgba(0, 0, 0, 0.9);
  transform: rotate(45deg);
  z-index: 2;
}

.topbar__item--has-submenu:hover .topbar__submenu,
.topbar__item--has-submenu:focus-within .topbar__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar__submenu a {
  display: block;
  padding: 7px 0;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--color-text);
}

.menu-toggle__text {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: -3px;
}

.menu-toggle__icon span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--color-yellow);
  border-radius: 2px;
}

/* Mobile menu */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 3000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--color-text-dark);
  color: var(--color-text);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 3100;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.35);
}

.mobile-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.mobile-menu__close {
  font-size: 36px;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu__list a, .mobile-menu__arrow {
  font-size: 24px;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.mobile-menu__list a:hover, .mobile-menu__arrow:hover {
  color: var(--color-yellow);
}

.mobile-menu__list a.is-current,
.mobile-menu__item.is-open > .mobile-menu__row > a {
  color: var(--color-yellow);
}

.mobile-menu__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 10px;
}

.mobile-menu__arrow {
  position: relative;
  width: 38px;
  height: 38px;
}

.mobile-menu__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-65%, -50%) rotate(-45deg);
  transition: transform 0.2s ease;
}

.mobile-menu__item.is-open .mobile-menu__arrow::before {
  transform: translate(-50%, -65%) rotate(45deg);
}

.mobile-menu__submenu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 2px 18px;
}

.mobile-menu__item.is-open .mobile-menu__submenu {
  display: flex;
}

.mobile-menu__submenu a {
  font-size: 18px;
  letter-spacing: 0.06em;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

/* Hero */
.herobig{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: var(--hero-gap);  
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--hero-gap);
}

.hero > * {
  min-width: 0;
}

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__info-image {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.hero__logo {
  display: flex;
  justify-content: center;
}

.hero__logo img {
  display: block;
  height: auto;
}

.hero__label {
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.hero__countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-inline: auto;
  margin-top: 40px;
}

.hero__countdown-title {
  font-size: 27px;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.04em;
  margin-bottom: 13px;
  text-transform: uppercase;
  max-width: 100%;
  text-align: center;
}

.hero__countdown {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 11px 16px;
  text-align: center;
  min-width: 78px;
}

.countdown-label {
  font-size: 11px;
  font-weight: var(--font-heading-weight);
  display: block;
}

.countdown-num {
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 992px) {

  .hero__logo img {
    width: 100%;
  }

  .hero__countdown-title {
    font-size: 27px;
  }

  .hero__countdown {
    gap: 13px;
    flex-wrap: nowrap;
  }

  .countdown-box {
    min-width: 78px;
    padding: 11px 16px;
  }

  .countdown-label {
    font-size: 11px;
  }

  .countdown-num {
    font-size: 43px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr) minmax(0, 1fr);
    gap: 14px;
  }

  .hero__info-image {
    width: min(100%, 220px);
  }

  .hero__countdown-title {
    font-size: 24px;
  }

  .hero__countdown {
    gap: 10px;
  }

  .countdown-box {
    min-width: 67px;
    padding: 10px 13px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .countdown-num {
    font-size: 37px;
  }
}

/* Floating panel */

.floating-panel {
  position: fixed;
  top: 60px;
  left: 10px;
  width: 60px;
  height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 10px;
  background-image: url("../assets/img/ui/floating-panel-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 25px;
  z-index: 2000;
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.65);
}

.floating-panel__top, .floating-panel__middle, .floating-panel__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-panel__top {
  gap: 0;
}

.floating-panel__middle {
  gap: 15px;
}

.floating-panel__middle .panel-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-panel__bottom {
  gap: 0;
  padding-bottom: 15px;
}

.panel-logo {
  width: 48px;
  height: auto;
}

.lang-switch {
  --lang-switch-color: var(--color-black);
  --lang-switch-hover-color: var(--color-white);
  --lang-switch-active-color: var(--color-white);
  --lang-switch-active-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-weight: var(--font-heading-weight);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--lang-switch-color);
}

.lang-switch__link,
.lang-switch a {
  color: var(--lang-switch-color);
  transition: color 0.2s ease, text-shadow 0.2s ease;
  text-decoration: none;
}

.lang-switch__link:hover,
.lang-switch a:hover {
  color: var(--lang-switch-hover-color);
}

/* is-active = demo class; active/langActive/selected = různé CMS varianty */
.lang-switch__link.is-active,
.lang-switch a.active,
.lang-switch a.langActive,
.lang-switch a.selected,
.lang-switch a[aria-current="page"] {
  color: var(--lang-switch-active-color);
  text-shadow: var(--lang-switch-active-shadow);
}

.panel-icon {
  width: 32px;
  height: 32px;
  opacity: 0.9;
  transition: 0.2s;
}

.panel-action:hover .panel-icon,
.panel-action:focus-visible .panel-icon {
  transform: scale(1.15);
}

@media (hover: hover) and (pointer: fine) {

  .floating-panel__middle .panel-action[data-tooltip]::before,
  .floating-panel__middle .panel-action[data-tooltip]::after {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-8px, -50%);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  }

  .floating-panel__middle .panel-action[data-tooltip]::before {
    content: attr(data-tooltip);
    min-width: max-content;
    padding: 7px 10px 6px;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.42);
    color: var(--color-white);
    font-family: var(--font-headline);
    font-size: 15px;
    font-weight: var(--font-heading-weight);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
  }

  .floating-panel__middle .panel-action[data-tooltip]::after {
    content: "";
    left: calc(100% + 6px);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--color-black);
    z-index: 6;
  }

  .floating-panel__middle .panel-action[data-tooltip]:hover::before,
  .floating-panel__middle .panel-action[data-tooltip]:hover::after,
  .floating-panel__middle .panel-action[data-tooltip]:focus-visible::before,
  .floating-panel__middle .panel-action[data-tooltip]:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
  }
}

.panel-player {
  width: 44px;
  color: var(--color-black);
  font-size: 15px;
  font-weight: var(--font-heading-weight);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.panel-player:hover {
  color: var(--color-black);
  transform: scale(1.15);
}

.panel-player.panel-action:hover,
.panel-player.panel-action:focus-visible {
  transform: none;
}

.panel-promo {
  font-weight: var(--font-heading-weight);
  font-size: 21px;
  color: var(--color-panel-blue);
  text-transform: uppercase;
  text-align: center;
  line-height: 21px;
}

.panel-promo a {
  color: var(--color-panel-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.panel-promo a:hover {
  color: var(--color-white);
}

.promo-arrow {
  width: 0;
  height: 0;
  margin-top: 5px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--color-white);
  transition: transform 0.2s ease;
}

/* Audio player */

.audio-player-section {
  padding: 32px 0 48px;
}

.audio-player {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.audio-player__cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.audio-player__eyebrow {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.audio-player__title {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.1;
}

.audio-player__track {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--color-muted);
}

.audio-player__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.audio-btn--play {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-text-dark);
  font-size: 20px;
  font-weight: var(--font-heading-weight);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.audio-player__progress-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.audio-player__time {
  font-size: 12px;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.audio-player__progress {
  width: 100%;
}

.audio-player__seek, .audio-player__volume {
  width: 100%;
  cursor: pointer;
}

.audio-player__volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.audio-player__volume-label {
  font-size: 12px;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.festival-audio {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.78);
  border: 2px solid rgba(255, 212, 0, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.festival-audio__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.festival-audio__label {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  color: var(--color-yellow);
  text-transform: uppercase;
  text-align: center;
}

.festival-audio__title {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-align: center;
}

.festival-audio__bar {
  display: grid;
  grid-template-columns: auto auto minmax(110px, 150px);
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.festival-audio__controls {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.festival-audio__btn, .festival-audio__track {
  border-radius: 6px;
  background: var(--color-yellow);
  color: var(--color-text-dark);
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
}

.festival-audio__btn {
  min-width: 48px;
  padding: 7px 8px;
  font-size: 13px;
}

.festival-audio__btn--play {
  min-width: 64px;
}

.festival-audio__btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.festival-audio__timeline, .festival-audio__volume {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.festival-audio__volume {
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: end;
  margin-top: 0;
  font-size: 12px;
  font-weight: var(--font-heading-weight);
  color: var(--color-yellow);
  text-transform: uppercase;
}

.festival-audio__time {
  min-width: 34px;
  font-size: 13px;
  font-weight: var(--font-heading-weight);
  color: var(--color-yellow);
}

.festival-audio__range {
  width: 100%;
  accent-color: var(--color-yellow);
}

.festival-audio__playlist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 126px;
  margin-top: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.2s ease, margin-top 0.2s ease, opacity 0.2s ease;
}

.festival-audio.is-playlist-open .festival-audio__playlist {
  margin-top: 14px;
  opacity: 1;
  pointer-events: auto;
}

.festival-audio:not(.is-playlist-open) .festival-audio__playlist {
  max-height: 0;
}

.festival-audio__track {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  font-size: 16px;
  text-align: left;
}

.festival-audio__track.is-active {
  background: var(--color-white);
}

.festival-audio__empty {
  margin: 0;
  padding: 10px;
  border: 1px dashed rgba(255, 212, 0, 0.7);
  color: var(--color-yellow);
  font-size: 15px;
  text-transform: uppercase;
}

@media (min-width: 768px) {

  .festival-audio {
    position: fixed;
    left: 75px;
    top: 320px;
    z-index: 2400;
    width: min(620px, calc(100vw - 48px));
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-14px) scale(0.98);
    transform-origin: left center;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.audio-player-open .festival-audio {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .floating-panel.is-audio-playing::before, .floating-panel.is-audio-playing::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 5px solid rgba(255, 252, 127, 0.5);
    border-radius: inherit;
    animation: audioDockPulse 2s ease-out infinite;
    pointer-events: none;
  }

  .floating-panel.is-audio-playing::after {
    animation-delay: 0.7s;
  }
}

@keyframes audioDockPulse {

  from {
    opacity: 0.45;
    transform: scale(0.98);
  }

  to {
    opacity: 0;
    transform: scale(1.08);
  }
}

/* Shared section headings */

.lineup-section {
  padding: 30px 0 50px;
}

.section-heading--ticket {
  text-align: center;
}

.section-heading--ticket p {
  font-size: 30px;
  line-height: 1.3;
  color: var(--color-text);
  text-transform: uppercase;
  font-family: var(--font-headline);
  width: 55%;
  margin: 0 auto;
}

.section-heading__image {
  display: block;
  margin: 0 auto 12px;
  max-width: 100%;
  height: 120px;
}

.section-heading-under__image {
  display: block;
  margin: 40px auto 12px;
  max-width: 100%;
  height: 70px;
}

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

/* Lineup */

.lineup-logos {
  display: grid;
  gap: 18px;
}

.lineup-logos--top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lineup-logos--middle {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lineup-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-align: center;
  transition: transform 0.2s ease;
  will-change: transform;
}

.lineup-logo-card:hover {
  transform: scale(1.08);
}

.lineup-logo-card img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lineup-featured-text {
  margin: 12px auto 24px;
  max-width: 900px;
  text-align: center;
}

.lineup-featured-text p {
  margin: 0 0 10px;
}

.lineup-featured-text a {
  display: inline-block;
  margin: 0 12px 8px;
  font-size: 22px;
  font-weight: var(--font-heading-weight);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.lineup-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.lineup-column {
  text-align: center;
}

.lineup-column a {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: var(--font-heading-weight);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.lineup-column a:hover, .lineup-featured-text a:hover {
  color: var(--color-yellow);
}

/* Tickets and news */

.tickets-news-section {
  padding: 30px 0 50px;
}

.section-cta-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.tickets-cta {
  text-align: center;
  margin-top: 20px;
}

.btn,
.band-detail-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-yellow,
.band-detail-links a {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn-yellow:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--hover-dark:hover,
.band-detail-links a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-large {
  min-height: 48px;
  font-size: 20px;
  padding: 14px 28px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
}

.news-card:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card img {
  width: 100%;
  object-fit: cover;
}

.news-card__content {
  padding: 15px;
  background: rgba(200, 220, 240, 0.7);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__date {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.news-card__title {
  font-size: 24px;
  font-weight: var(--font-heading-weight);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-black);
}

.news-cta {
  text-align: center;
}

.news-listing-section {
  padding: 30px 0 70px;
}

.news-grid--listing {
  margin-bottom: 36px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination__link,
.pagination__dots {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 20px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination__link:hover,
.pagination__link.is-active {
  background: var(--color-white);
  color: var(--color-black);
}

.pagination__dots {
  background: transparent;
  color: var(--color-yellow);
}

/* Bands page */

.page-intro--bands {
  margin-bottom: 24px;
}

.bands-section {
  padding: 20px 0 80px;
}

/* PHP generuje .bandsList wrapper uvnitř .bands-grid — přeskočit ho */
.bands-grid .bandsList {
  display: contents;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.band-card {
  border-radius: var(--radius-sm);
  background: rgba(200, 220, 240, 0.7);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.band-card:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.band-card a {
  display: block;
  height: 100%;
  color: var(--color-black);
}

.band-card__head {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(200, 220, 240, 0.7);
}

.band-card__title {
  min-width: 0;
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.band-card__country {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
}

.band-card img {
  width: 100%;
  aspect-ratio: 310 / 206;
  object-fit: cover;
}

.bands-grid--related {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

.band-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.band-audio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid #000;
}

.band-audio__info {
  min-width: 0;
}

.band-audio__label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.band-audio__title {
  display: block;
  overflow: hidden;
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.band-audio__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.band-audio__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.band-audio__play:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.band-audio__play:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.band-audio__volume {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.band-audio__range {
  accent-color: var(--color-yellow);
  width: 110px;
}

.article-content h3 {
  margin: 10px 0 0;
  font-family: var(--font-headline);
  font-weight: var(--font-heading-weight);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.article-section {
  padding: 30px 0 80px;
}

.article-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
}

.article-back {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
}

.article-back:hover {
  color: var(--color-yellow);
}

.article-header {
  margin-bottom: 22px;
}

.article-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--color-panel-blue);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--font-heading-weight-text);

}
.article-meta a:hover{
  text-decoration: underline;
}
.article-title {
  margin: 0;
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.article-content {
  margin-bottom: 26px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
}

.article-content p {
  margin: 0;
}

.article-grid {
  --article-grid-cols: 1;
  display: grid;
  grid-template-columns: repeat(var(--article-grid-cols), minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.article-grid > * {
  min-width: 0;
}

.article-grid img {
  width: 100%;
  height: auto;
}

.article-grid--1 {
  --article-grid-cols: 1;
}

.article-grid--2 {
  --article-grid-cols: 2;
}

.article-grid--3 {
  --article-grid-cols: 3;
}

.article-grid--4 {
  --article-grid-cols: 4;
}

.article-grid--5 {
  --article-grid-cols: 5;
}

.article-grid--6 {
  --article-grid-cols: 6;
}

.article-grid--compact {
  gap: 14px;
}

.article-grid--loose {
  gap: 34px;
}

.article-grid__span--2 {
  grid-column: span 2;
}

.article-grid__span--3 {
  grid-column: span 3;
}

.article-grid__span--4 {
  grid-column: span 4;
}

.article-grid__span--5 {
  grid-column: span 5;
}

.article-grid__span--6 {
  grid-column: span 6;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.promo-item {
  display: grid;
  gap: 8px;
  align-content: start;
}

.promo-item img {
  width: 100%;
  height: auto;
}

.article-image {
  width: 100%;
  margin-bottom: 26px;
  max-height: 620px;
  object-fit: cover;
}

.article-video {
  aspect-ratio: 16 / 9;
  background: var(--color-black);
}

.article-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.related-news-section {
  padding: 0 0 80px;
}

.news-grid--related {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
}

/* Store */

.store-section {
  padding: 30px 0 50px;
}

.section-heading--store {
  margin-bottom: 26px;
}

.store-slider {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.store-slider__viewport {
  overflow: hidden;
}

.store-grid {
  display: flex;
  gap: 22px;
  transition: transform 0.35s ease;
  will-change: transform;
  padding: 10px;
}

.store-card {
  flex: 0 0 calc((100% - (22px * 3)) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 16px 14px 18px;
  background: var(--color-card-bg);
  border-radius: 12px;
  color: var(--color-text-dark);
  text-align: center;
  box-shadow: var(--shadow-card-small);
  transition: box-shadow 0.2s ease;
}

.store-card:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.store-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  overflow: hidden;
}

.store-card__image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.store-card__title {
  display: block;
  margin-bottom: 6px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.store-card__price {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--color-yellow);
  text-transform: uppercase;
}

.store-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.95);
  color: var(--color-text-dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-slider__arrow:hover {
  transform: translateY(-2px);
}

.store-slider__arrow[disabled] {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.store-slider__arrow span {
  font-size: 26px;
  line-height: 1;
}

.store-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.store-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-slider__dot.is-active {
  background: var(--color-yellow);
  transform: scale(1.15);
}

.store-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.store-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 170px;
  padding: 26px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card-small);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.store-logo-card:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
  transform: translateY(-2px);
}

.store-logo-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.store-cta {
  text-align: center;
}

/* Tickets */

.tickets-store-section {
  padding: 20px 0 70px;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tickets-grid .store-card {
  width: 100%;
}

.ticket-card__button {
  margin-top: 16px;
}

.page-book-store .store-card__title {
  font-size: 24px;
  line-height: 1.08;
}

/* Book */

.book-section {
  padding: 30px 0 50px;
}

.section-heading--book {
  margin-bottom: 24px;
}

.book-gallery {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 24px;
}

.book-gallery__item {
  display: block;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.book-gallery__item img,
.book-gallery__item video {
  display: block;
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.book-gallery__item img {
  height: auto;
}

.book-gallery__video-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 490 / 664;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  background: #000;
  transition: box-shadow 0.2s ease;
}

.book-gallery__item--large:hover .book-gallery__video-wrap {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.book-gallery__video {
  height: 100%;
  object-fit: cover;
  background: #000;
  box-shadow: none;
}

.book-gallery__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(66px, 8vw, 94px);
  height: clamp(66px, 8vw, 94px);
  border: 4px solid rgba(0, 0, 0, 0.78);
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.book-gallery__play span {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #000;
  transform: translate(-50%, -50%);
}

.book-gallery__play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}

.book-gallery__video-wrap.is-playing .book-gallery__play {
  opacity: 0;
  pointer-events: none;
}

.book-gallery__item--large {
  transform: scale(1);
  z-index: 2;
}

.book-intro {
  margin: 0 auto 28px;
  max-width: 980px;
  text-align: center;
}

.book-intro__image {
  display: block;
  margin: 10px auto 10px;
  max-width: 100%;
  height: 80px;
}

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

.book-intro__meta p {
  margin: 0 0 6px;
  font-size: 36px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.book-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.book-card {
  display: block;
  background: var(--color-card-bg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: var(--color-text-dark);
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}

.book-card:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.book-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.book-card__content {
  padding: 18px 16px 20px;
}

.book-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: lowercase;
  color: var(--color-black);
}

.book-card__text {
  font-family: var(--font-body);
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-black);
}

.book-cta {
  text-align: center;
}

/* Charity */

.charity-section {
  padding: 30px 0 50px;
}

.section-heading--charity {
  margin-bottom: 20px;
}

.charity-intro {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.charity-intro__image {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
}

.charity-intro__seo {
  font-size: 30px;
  line-height: 1.3;
  color: var(--color-text);
  text-transform: uppercase;
}

.charity-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.charity-gallery__item {
  display: block;
  min-height: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.charity-gallery__item:first-child {
  aspect-ratio: 16 / 9;
}

.charity-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.charity-cta {
  text-align: center;
}

/* Print */

.print-section {
  padding: 30px 0 50px;
}

.section-heading--print {
  margin-bottom: 20px;
}

.print-intro {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.print-intro__image {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
}

.print-intro__seo {
  font-size: 30px;
  line-height: 1.3;
  color: var(--color-text);
  text-transform: uppercase;
}

.print-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.print-gallery__item {
  display: block;
  min-height: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.print-gallery__item:first-child {
  aspect-ratio: 16 / 9;
}

.print-gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.print-cta {
  text-align: center;
}

/* History */

.history-section {
  padding: 30px 0 50px;
}

.section-heading--history {
  margin-bottom: 24px;
}

.history-visual {
  max-width: 900px;
  margin: 0 auto 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.history-visual img {
  width: 100%;
  display: block;
}

.history-intro {
  text-align: center;
  margin-bottom: 26px;
}

.history-intro__image {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
}

.history-intro__seo {
  font-size: 30px;
  color: var(--color-text);
  text-transform: uppercase;
  line-height: 1.2;
}

.history-cta {
  text-align: center;
}

/* FAQ and testimonials */

.faq-section {
  padding: 30px 0 50px;
}

.testimonials {
  padding: 30px 0 50px;
}

.testimonials__title {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__title img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.testimonials__col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.testimonials__col--offset {
  padding-top: 20px;
}

.testimonial-card {
  background: var(--color-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.testimonial-card__image {
  padding: 16px 16px 0;
}

.testimonial-card__image img {
  width: 100%;
  display: block;
  height: auto;
}

.testimonial-card__content {
  padding: 15px 15px 15px;
}

.testimonial-card__name {
  margin: 0 0 4px;
  font-size: 24px;
  color: var(--color-black);
  line-height: 1;
  font-weight: var(--font-heading-weight);
}

.testimonial-card__band {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: var(--font-heading-weight);
  color: var(--color-link-blue);
}

.testimonial-card__text p {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.45;
}

.section-heading--faq {
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.faq-box {
  border: 3px solid var(--color-faq-blue);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.38);
}

.faq-box__title {
  font-size: 60px;
}

.faq-box__desc {
  font-size: 30px;
  color: var(--color-faq-blue);
  margin-bottom: 10px;
}

.faq-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  flex: 1;
}

.faq-links a {
  display: block;
  font-size: 30px;
  transition: color 0.2s ease;
}

.faq-links a:hover {
  color: var(--color-yellow);
}

.faq-cta {
  text-align: center;
}

/* Footer */

.site-footer {
  padding: 42px 0 36px;
  background-color: var(--color-text-dark);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.site-footer__left {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 18px 28px;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  display: block;
  max-width: 260px;
  height: auto;
}

.site-footer__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px 54px;
}

.site-footer__block {
  width: auto;
  text-align: left;
}

.site-footer__title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-footer__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__text a {
  color: inherit;
}

.site-footer__text a:hover {
  color: var(--color-yellow);
}

.site-footer__copyright {
  margin: 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Scroll top */

.scroll-top,
.festival-app-button {
  position: fixed;
  right: 24px;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.scroll-top {
  bottom: 24px;
}

.festival-app-button {
  bottom: 90px;
}

.scroll-top.is-visible,
.festival-app-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.festival-app-button:hover {
  background: var(--color-white);
}

.festival-app-button img {
  display: block;
  width: 30px;
  height: 30px;
}

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

.newsletter-popup {
  position: fixed;
  right: 24px;
  bottom: 156px;
  z-index: 2500;
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.newsletter-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.newsletter-popup__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.86);
  box-shadow: var(--shadow-soft);
  color: var(--color-white);
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.newsletter-popup__toggle:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.newsletter-popup__icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 17px;
  border: 3px solid var(--color-white);
  border-radius: 2px;
}

.newsletter-popup__icon::before,
.newsletter-popup__icon::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 14px;
  height: 3px;
  background: var(--color-white);
  transform-origin: center;
}

.newsletter-popup__icon::before {
  left: -1px;
  transform: rotate(35deg);
}

.newsletter-popup__icon::after {
  right: -1px;
  transform: rotate(-35deg);
}

.newsletter-popup__toggle:hover .newsletter-popup__icon {
  border-color: var(--color-black);
}

.newsletter-popup__toggle:hover .newsletter-popup__icon::before,
.newsletter-popup__toggle:hover .newsletter-popup__icon::after {
  background: var(--color-black);
}

.newsletter-popup.is-open .newsletter-popup__toggle {
  opacity: 0;
  pointer-events: none;
}

.newsletter-popup__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, calc(100vw - 48px));
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.86);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.newsletter-popup.is-open .newsletter-popup__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.newsletter-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.newsletter-popup__close:hover {
  color: var(--color-yellow);
}

.newsletter-popup__logo {
  display: block;
  width: 82px;
  height: auto;
  margin-bottom: 12px;
}

.newsletter-popup__title {
  margin: 0 0 6px;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-popup__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

.newsletter-popup__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-popup__input {
  min-width: 0;
  height: 42px;
  padding: 9px 11px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-black);
  font: inherit;
}

.newsletter-popup__input:focus {
  border-color: var(--color-yellow);
  outline: 0;
}

.newsletter-popup__button {
  min-height: 42px;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.newsletter-popup__button:hover {
  background: var(--color-white);
}

.scroll-top span {
  width: 15px;
  height: 15px;
  border-top: 4px solid var(--color-black);
  border-left: 4px solid var(--color-black);
  transform: translateY(4px) rotate(45deg);
}

/* Page template */

.site-wrap-page {
  min-height: 100vh;
  background: transparent;
}

.hero--page {
  padding-bottom: 34px;
}

.page-intro {
  text-align: center;
}

.page-intro .festival-audio {
  margin-top: 28px;
}

.page-title {
  margin: 0 auto 10px;
  font-size: 72px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-yellow);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.page-lead {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-headline);
  font-size: 21px;
  line-height: 1.5;
  color: var(--color-text);
  text-transform: uppercase;
}

.page-main {
  padding: 34px 0 70px;
}

.style-section__title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-yellow);
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.guide-section {
  display: grid;
  gap: 18px;
}

.guide-section + .guide-section {
  padding-top: 24px;
  border-top: 3px solid var(--color-yellow);
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.guide-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.guide-stack {
  display: grid;
  gap: 18px;
}

.guide-surface {
  display: grid;
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.78);
  color: var(--color-text);
}

.article-content .news-card__title,
.article-content .band-card__title {
  font-size: 24px;
}

.article-content .faq-box__title {
  font-size: 60px;
}

.article-content .faq-box__desc,
.article-content .faq-links a {
  font-size: 30px;
}

.article-content .store-card__title {
  display: block;
  margin-bottom: 6px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-content .store-card__price {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--color-yellow);
  text-transform: uppercase;
}

.content-card h3,
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: var(--font-heading-weight);
  font-family: var(--font-headline);
}

.article-content h1 {
  font-size: 58px;
}

.article-content h2 {
  font-size: 44px;
  font-weight: var(--font-heading-weight);
}

.content-card h3,
.article-content h3,
.article-card--band h3 {
  font-size: 30px;
  font-weight: var(--font-heading-weight);
}

.article-content h4 {
  font-size: 26px;
}

.article-content h5,
.article-content h6 {
  font-size: 22px;
}

.content-card p,
.article-content p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
}

.content-card a:not(.btn),
.article-content p a:not(.btn),
.content-definition a:not(.btn),
.content-quote a:not(.btn) {
  color: var(--color-yellow);
  font-weight: var(--font-heading-weight);
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-content mark,
.article-content p code,
.article-content li code,
.article-content p kbd,
.article-content li kbd {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--color-yellow);
  color: var(--color-text-dark);
}

.article-content p code,
.article-content li code,
.article-content p kbd,
.article-content li kbd {
  font-family: monospace;
  font-size: 0.9em;
}

.article-content hr {
  width: 100%;
  height: 3px;
  margin: 4px 0;
  border: 0;
  background: var(--color-yellow);
}

.code-sample {
  margin: 0;
  padding: 18px;
  overflow-x: auto;
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius-sm);
  background: var(--color-text-dark);
  color: var(--color-yellow);
  font-family: monospace;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: pre;
}

.content-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
  list-style: disc;
  color: var(--color-text-dark);
}

.content-list li::marker {
  color: var(--color-yellow);
  font-weight: var(--font-heading-weight);
}

.content-list--numbered {
  list-style: decimal;
}

.content-definition {
  display: grid;
  gap: 8px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
}

.content-definition dt {
  font-family: var(--font-headline);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.content-definition dd {
  margin: 0 0 8px;
}

.content-quote {
  margin: 0;
  padding: 18px 20px;
  border-left: 6px solid var(--color-yellow);
  background: rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.45;
}

.content-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-headline);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
}

.notice {
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 3px solid var(--color-text-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.4;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card-small);
}

.notice strong {
  font-family: var(--font-headline);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.notice--info {
  background: var(--color-white);
}

.notice--warning {
  background: var(--color-yellow);
}

.notice--success {
  background: var(--color-card-bg);
  border-color: var(--color-yellow);
}

.site-form {
  display: grid;
  gap: 16px;
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
}

.site-form h3 {
  color: var(--color-black);
  margin-top: 20px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-label {
  font-size: 18px;
  font-weight: var(--font-heading-weight-text);
  line-height: 1;
  color: var(--color-black);
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--color-text-dark);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 16px;
}

.form-control:focus {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

.form-control--textarea {
  min-height: 140px;
  resize: vertical;
}

.form-fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.choice-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.3;
  color: var(--color-text);
  cursor: pointer;
}

.choice-control input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-yellow);
}

p.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.article-content p.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: var(--font-heading-weight);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.article-content p.social-links a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.table-wrap {
  margin-bottom: 18px;
  overflow-x: auto;
  border: 3px solid var(--color-yellow);
  border-radius: var(--radius-sm);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 17px;
  background: var(--color-white);
  color: var(--color-text-dark);
}

.content-table th,
.content-table td {
  padding: 12px 14px;
  border-bottom: 2px solid var(--color-text-dark);
  text-align: left;
}

.content-table th {
  background: var(--color-yellow);
  font-family: var(--font-headline);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.content-table tr:last-child td {
  border-bottom: 0;
}

/* =====================================================
   CMS generuje plain <table> v diskografii bez tříd
   — alias aby vypadala jako .content-table
   ===================================================== */

.band-section table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-white);
  color: var(--color-text-dark);
  border: 3px solid var(--color-yellow);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 8px 0 18px;
}

.band-section table th,
.band-section table td {
  padding: 12px 14px;
  border-bottom: 2px solid var(--color-text-dark);
  text-align: left;
}

.band-section table th {
  background: var(--color-yellow);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
}

.band-section table tr:last-child td {
  border-bottom: 0;
}

.content-card {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin-bottom: 18px;
  padding: 22px;
  border: 3px solid var(--color-yellow);
  background: var(--color-card-bg);
  box-shadow: var(--shadow-card);
  color: var(--color-text-dark);
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.16);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.gallery-year {
  margin-bottom: 34px;
}

.gallery-year:last-child {
  margin-bottom: 0;
}

.gallery-year h2 a:hover{
  text-decoration: underline;
}

.lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lightbox-thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.article-grid .content-card {
  max-width: none;
  margin-bottom: 0;
}

.article-content figure {
  display: grid;
  gap: 10px;
  margin: 0;
}

.article-content figcaption {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.72);
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  background: var(--color-black);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.merch-item {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.merch-item img {
  width: 100%;
  height: auto;
}

.lightbox-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.lightbox-thumb:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  box-shadow: var(--shadow-card);
  object-fit: contain;
}

.lightbox__caption {
  font-size: 22px;
  line-height: 1;
  color: var(--color-yellow);
  text-transform: uppercase;
  text-align: center;
}

.lightbox__close,
.lightbox__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: var(--font-heading-weight);
  line-height: 1;
  box-shadow: var(--shadow-card-small);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: transparent;
  color: var(--color-white);
  box-shadow: none;
  font-size: 36px;
}

.lightbox__arrow {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 0;
}

.lightbox__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: translate(-65%, -50%) rotate(-45deg);
}

.lightbox__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(135deg);
}

.lightbox__arrow:hover {
  background: var(--color-white);
}

.lightbox__close:hover {
  background: transparent;
  color: var(--color-yellow);
}

/* =====================================================
   CMS container article preview — alias na .news-card
   CMS generuje .containerArticlePreview místo .news-card
   ===================================================== */

.containerArticlePreview {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
}

.containerArticlePreview:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.containerArticlePreview .imgThumb {
  line-height: 0;
}

.containerArticlePreview .imgThumb a {
  display: block;
}

.containerArticlePreview .imgThumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.containerArticlePreview .caption {
  padding: 15px;
  background: rgba(200, 220, 240, 0.7);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.containerArticlePreview .caption h3 {
  font-size: 24px;
  font-weight: var(--font-heading-weight);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-black);
  margin: 0 0 8px 0;
}

.containerArticlePreview .caption h3 a {
  color: inherit;
  text-decoration: none;
}

.containerArticlePreview .caption h3 a:hover {
  color: var(--color-yellow);
}

/* Perex a prázdné <p> tagy z CMS skrýt */
.containerArticlePreview .caption p {
  display: none;
}

/* Prázdný <h3> který CMS vloží před první .containerArticlePreview */
.listArticles > h3:empty {
  display: none;
}

/* =====================================================
   CMS generuje .listArticles > .articlePreview
   Aliasy aby vypadaly jako .news-grid > .news-card
   ===================================================== */

.news-grid .listArticles,
.news-grid--listing .listArticles {
  grid-column: 1 / -1;
}

.listArticles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}

@media (max-width: 767px) {
  .listArticles {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .listArticles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.articlePreview {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease;
  background: rgba(200, 220, 240, 0.7);
}

.articlePreview:hover {
  box-shadow: 0 0 0 3px var(--color-yellow), 8px 14px 24px rgba(255, 212, 0, 0.45);
}

.articlePreview .lefto {
  display: block;
}

.articlePreview .lefto a {
  display: block;
}

.articlePreview .lefto img,
.articlePreview img.articleTitleImage {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Pořadí: obrázek (lefto=1) → datum (article-info=2) → titulek (h3=3) */
.articlePreview .lefto       { order: 1; }
.articlePreview .article-info { order: 2; }
.articlePreview h3            { order: 3; }
.articlePreview .articlePerex { order: 4; display: none !important; max-height: 0; overflow: hidden; }

.articlePreview h3 {
  font-size: 20px;
  font-weight: var(--font-heading-weight);
  margin: 0;
  padding: 0 15px 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.articlePreview h3 a {
  color: var(--color-black);
  text-decoration: none;
}

.articlePreview h3 a:hover {
  color: var(--color-yellow);
}

.articlePreview .article-info {
  font-size: 12px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  opacity: 0.6;
  padding: 10px 15px 4px;
  margin: 0;
}

/* ===== Issuu lazy load ===== */
.issuu-lazy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
}

.issuu-lazy__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-yellow);
  color: var(--color-black);
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: var(--font-heading-weight);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.issuu-lazy__btn:hover {
  opacity: 0.85;
}

.issuu-lazy__icon {
  font-size: 18px;
}

/* =====================================================
   Video embed — full width s 16:9 poměrem
   ===================================================== */

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 16px 0;
}

.video-container iframe,
.video-container embed,
.video-container object {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* YouTube iframy přímo v obsahu novinky (bez wrapperu) */
.article-content iframe,
.editor-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  display: block;
  margin: 16px 0;
}

/* =====================================================
   #listArticles — CMS výpis kategorie novinek
   Generováno PHP: <div id=listArticles> + article-preview.html
   ===================================================== */

/* Zrušit content-text styly pro listing stránku */
.article-content:has(#listArticles) {
  max-width: none;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
.article-card:has(#listArticles),
.article-section:has(#listArticles) {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Grid layout */
#listArticles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}

/* Obrázek z PHP — class articleTitleImage */
.news-card .news-card__img-wrap {
  line-height: 0;
}
.news-card .news-card__img-wrap a {
  display: block;
}
.news-card img.articleTitleImage {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Titulek z PHP — <a href="...">text</a> uvnitř h3 */
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  color: var(--color-yellow);
}

/* Clear div z PHP skrýt */
#listArticles .clear {
  display: none;
}

/* Paginace */
#listArticles .pagination {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 20px 0 10px;
  list-style: none;
  margin: 0;
}
#listArticles .pagination a,
#listArticles .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(200, 220, 240, 0.15);
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--font-heading-weight);
  transition: background 0.2s, color 0.2s;
}
#listArticles .pagination a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}
#listArticles .pagination a.active,
#listArticles .pagination strong {
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: bold;
  border-radius: 4px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

@media (max-width: 900px) {
  #listArticles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  #listArticles {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   Mapy / galerie — CMS generuje <p><a><img></a></p>
   Na stránkách page.html (ne v novinkaách/kapelách)
   automaticky zobrazit jako 2-sloupcový grid
   ===================================================== */
.article-card .article-content:has(> p:has(img)) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}

/* Neobrázková content — plná šíře */
.article-card .article-content:has(> p:has(img)) > *:not(p:has(img)) {
  grid-column: 1 / -1;
}

/* Obrázková buňka — bez okrajů, na celou šíři buňky */
.article-card .article-content:has(> p:has(img)) > p:has(img) {
  margin: 0;
}

.article-card .article-content:has(> p:has(img)) > p:has(img) a {
  display: block;
  line-height: 0;
}

.article-card .article-content:has(> p:has(img)) > p:has(img) img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.article-card .article-content:has(> p:has(img)) > p:has(img) a:hover img {
  opacity: 0.85;
}

@media (max-width: 680px) {
  .article-card .article-content:has(> p:has(img)) {
    grid-template-columns: 1fr;
  }
}
