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

html {
  background: var(--kleur-achtergrond);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 212, 60, 0.13), transparent 28rem),
    radial-gradient(circle at top right, rgba(53, 96, 169, 0.08), transparent 24rem),
    var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

#app-shell {
  min-height: 100vh;
  padding-bottom: var(--nav-hoogte);
}

main {
  max-width: var(--max-breedte);
  margin: 0 auto;
}

.screen {
  padding: var(--ruimte-m);
  animation: screenIn 160ms ease-out;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOME */

.home-hero {
  text-align: center;
  padding: 28px var(--ruimte-m) 0;
}

.logo-main {
  width: min(420px, 92%);
  height: auto;
  margin-bottom: 10px;
}

.intro-text {
  color: var(--kleur-subtekst);
  font-size: 18px;
  line-height: 1.42;
  max-width: 470px;
  margin: 0 auto;
}

.home-content {
  max-width: var(--content-breedte);
  margin: 0 auto;
}

.hero-image {
  margin: 20px 0 18px;
  width: 100%;
  aspect-ratio: 16 / 6.5;
  border-radius: var(--radius-groot);
  overflow: hidden;
  box-shadow: var(--schaduw-zacht);
  background: var(--kleur-wit);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.home-menu {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius-groot);
  overflow: hidden;
  box-shadow: var(--schaduw-zacht);
  backdrop-filter: blur(10px);
}

.home-menu-item {
  width: 100%;
  background: transparent;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 18px;
  align-items: center;
  padding: 19px 22px;
  text-align: left;
  cursor: pointer;
  color: var(--kleur-tekst);
  border-bottom: 1px solid var(--kleur-lijn);
}

.home-menu-item:last-child {
  border-bottom: 0;
}

.home-menu-item:hover,
.home-menu-item:focus-visible {
  background: rgba(255, 255, 255, 0.78);
}

.home-menu-item:active {
  transform: scale(0.995);
}

.menu-accent {
  width: 8px;
  height: 52px;
  border-radius: 999px;
  background: var(--accent);
}

.accent-blue {
  --accent: var(--kleur-blauw);
  --accent-zacht: rgba(53, 96, 169, 0.12);
}

.accent-purple {
  --accent: var(--kleur-paars);
  --accent-zacht: rgba(104, 49, 134, 0.12);
}

.accent-magenta {
  --accent: var(--kleur-magenta);
  --accent-zacht: rgba(193, 27, 93, 0.12);
}

.accent-orange {
  --accent: var(--kleur-oranje);
  --accent-zacht: rgba(232, 78, 34, 0.12);
}

.accent-grey {
  --accent: var(--kleur-donkergrijs);
  --accent-zacht: rgba(114, 114, 113, 0.12);
}

.menu-title {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
  color: var(--kleur-donkergrijs);
}

.menu-subtitle {
  display: block;
  color: var(--kleur-subtekst);
  line-height: 1.34;
}

.festival-info-button {
  width: 100%;
  margin-top: var(--ruimte-m);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  color: var(--kleur-donkergrijs);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.045);
  font-weight: 800;
  cursor: pointer;
}

.festival-info-button:hover,
.festival-info-button:focus-visible {
  color: var(--kleur-magenta);
  border-color: rgba(193, 27, 93, 0.25);
}

.festival-info-icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
}

.festival-info-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

/* HEADERS */

.app-header {
  display: flex;
  align-items: center;
  gap: var(--ruimte-s);
  margin-bottom: var(--ruimte-l);
}

.app-symbol {
  width: 48px;
  height: 52px;
  flex: 0 0 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.screen-title {
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.screen-subtitle {
  color: var(--kleur-subtekst);
  line-height: 1.45;
  margin-top: 4px;
}

/* FORM */

.search-block {
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  padding: var(--ruimte-s);
  margin-bottom: var(--ruimte-m);
  box-shadow: var(--schaduw-zacht);
}

.search-block label {
  display: block;
  font-weight: 800;
  margin-bottom: var(--ruimte-xs);
}

.search-block input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius-klein);
  background: var(--kleur-zacht);
}

.filter-placeholder {
  display: flex;
  justify-content: space-between;
  gap: var(--ruimte-s);
  align-items: center;
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  padding: 15px 17px;
  margin-bottom: var(--ruimte-m);
  color: var(--kleur-subtekst);
  box-shadow: var(--schaduw-zacht);
}

/* CARDS */

.card-grid,
.map-options {
  display: grid;
  gap: var(--ruimte-s);
}

.info-card,
.map-card,
.empty-state {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
  padding: 20px;
}

.info-card h3,
.map-card h3,
.empty-state h3 {
  font-size: 21px;
  margin: 9px 0 4px;
  letter-spacing: -0.02em;
}

.info-card p,
.map-card p,
.empty-state p {
  color: var(--kleur-subtekst);
  line-height: 1.45;
}

/* Programmalijst — mobile first */

.program-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-zacht);
  backdrop-filter: blur(10px);
}

.program-card {
  width: 100%;
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 13px;
  align-items: stretch;
  padding: 18px 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--kleur-lijn);
  border-radius: 0;
  box-shadow: none;
  color: var(--kleur-tekst);
  text-align: left;
}

.program-card:last-child {
  border-bottom: 0;
}

.program-card-button {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.program-card-button:hover,
.program-card-button:focus-visible {
  background: rgba(255, 255, 255, 0.78);
}

.program-card-button:focus-visible {
  outline: 3px solid var(--accent, var(--kleur-magenta));
  outline-offset: -3px;
}

.program-card-button:active {
  transform: scale(0.995);
}

.program-card-accent {
  width: 7px;
  min-height: 100%;
  border-radius: 999px;
  background: var(--accent, var(--kleur-magenta));
}

.program-card-content {
  min-width: 0;
  display: block;
}

/* Bovenste zone: tekst links, beeld rechts */
.program-card-top {
  display: block;
  margin-bottom: 13px;
}

.program-card-top.has-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, 34%);
  gap: 12px;
  align-items: start;
}

.program-card-heading {
  min-width: 0;
  display: block;
}

.program-card-title {
  display: block;
  max-width: 100%;
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  word-break: normal;
  color: var(--kleur-donkergrijs);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.program-card-category {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.program-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--accent-zacht);
  color: var(--accent, var(--kleur-magenta));
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--kleur-lijn);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--kleur-subtekst);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.program-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--kleur-lijn);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.program-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Omschrijving gebruikt de volledige contentbreedte */
.program-card-description {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  color: var(--kleur-subtekst);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.program-card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -4px 0 13px;
}

/* Drie rustige feitenregels met identieke typografie */
.program-card-facts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  width: 100%;
}

.program-card-fact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  min-width: 0;
  color: var(--kleur-subtekst);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.program-card-fact-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  overflow-wrap: break-word;
}

.program-card-fact-time .program-card-fact-text {
  white-space: nowrap;
}

.program-card .mini-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--accent, var(--kleur-magenta));
}

@media (max-width: 380px) {
  .program-card {
    gap: 11px;
    padding: 16px 13px;
  }

  .program-card-top.has-image {
    grid-template-columns: minmax(0, 1fr) minmax(94px, 33%);
    gap: 10px;
  }

  .program-card-title {
    font-size: 19px;
  }

  .program-card-description {
    font-size: 14px;
  }

  .program-card-fact {
    font-size: 13px;
  }
}

@media (min-width: 720px) {
  .program-card {
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .program-card-accent {
    width: 8px;
  }

  .program-card-top.has-image {
    grid-template-columns: minmax(0, 1fr) minmax(135px, 28%);
    gap: 16px;
  }

  .program-card-title {
    font-size: 21px;
  }
}

.discover-card {
  display: flex;
  align-items: center;
  gap: var(--ruimte-s);
}

.discover-icon {
  width: 42px;
  height: 42px;
  color: var(--kleur-magenta);
  background: rgba(193, 27, 93, 0.10);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}

.discover-icon svg,
.nav-icon svg,
.mini-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.map-card {
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(104, 49, 134, 0.12), rgba(232, 78, 34, 0.10)),
    rgba(255, 255, 255, 0.9);
}

.empty-state {
  text-align: center;
  border-style: dashed;
}


/* NAV */

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--nav-hoogte);
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--kleur-lijn);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 20;
  box-shadow: var(--schaduw-nav);
  backdrop-filter: blur(12px);
}

.nav-item {
  background: transparent;
  color: #77716C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  font-size: 12px;
}

.nav-icon {
  color: currentColor;
  display: grid;
  place-items: center;
}

.nav-item.active {
  color: var(--kleur-magenta);
  font-weight: 800;
}

@media (min-width: 720px) {

  .card-grid,
  .map-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero {
    padding-top: var(--ruimte-xl);
  }
}


.loading-symbol {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 12px;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

@keyframes loadingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.error-state {
  border-color: rgba(232, 78, 34, 0.35);
}



.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--ruimte-m);
  padding: 10px 0;
  background: transparent;
  color: var(--kleur-donkergrijs);
  font-weight: 800;
  cursor: pointer;
}

.back-button:hover,
.back-button:focus-visible {
  color: var(--kleur-magenta);
}

.detail-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius-groot);
  box-shadow: var(--schaduw-zacht);
  padding: 24px;
}

.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--accent, var(--kleur-magenta));
}

.detail-title {
  margin: 12px 0 18px;
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--kleur-donkergrijs);
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.detail-fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--kleur-subtekst);
  line-height: 1.45;
}

.detail-fact-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--accent);
  display: grid;
  place-items: center;
}

.detail-fact-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.detail-section {
  padding-top: 22px;
  border-top: 1px solid var(--kleur-lijn);
}

.detail-section h2 {
  margin-bottom: 12px;
  font-size: 21px;
  color: var(--kleur-donkergrijs);
}

.detail-description {
  color: var(--kleur-subtekst);
  line-height: 1.65;
}

.detail-description p+p {
  margin-top: 12px;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.primary-button,
.secondary-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: var(--radius-klein);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.primary-button {
  background: var(--kleur-magenta);
  color: var(--kleur-wit);
}

.secondary-button {
  background: rgba(114, 114, 113, 0.08);
  color: var(--kleur-donkergrijs);
  border: 1px solid var(--kleur-lijn);
}

.secondary-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}




/* COMPACTE PROGRAMMAKOP — MOBILE FIRST */

.program-screen {
  padding-top: 14px;
}

.program-screen .screen-header {
  margin-bottom: 14px;
}

.program-toolbar {
  margin-bottom: 12px;
}

.program-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--kleur-tekst);
  box-shadow: var(--schaduw-zacht);
}

.program-search input:focus {
  outline: 3px solid rgba(53, 96, 169, 0.18);
  border-color: var(--kleur-blauw);
}

.program-filter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.filter-toggle-button,
.reset-filters-button {
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-toggle-button {
  flex: 1;
  background: rgba(53, 96, 169, 0.12);
  border: 1px solid rgba(53, 96, 169, 0.22);
  color: var(--kleur-blauw);
}

.reset-filters-button {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--kleur-lijn);
  color: var(--kleur-donkergrijs);
}

.program-filter-panel {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.program-filter-panel[hidden] {
  display: none;
}

.program-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 0;
}

.filter-field {
  display: grid;
  grid-template-columns: minmax(118px, 0.85fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--kleur-donkergrijs);
}

.filter-field>span {
  color: var(--kleur-subtekst);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.filter-field select {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 7px 34px 7px 10px;
  color: var(--kleur-tekst);
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-lijn);
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  font-size: 14px;
}

.program-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin: 4px 0 10px;
  color: var(--kleur-subtekst);
  font-size: 14px;
}

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

@media (max-width: 380px) {
  .filter-field {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 8px;
  }

  .filter-field>span {
    font-size: 12px;
  }

  .filter-field select {
    font-size: 13px;
  }
}

@media (min-width: 720px) {
  .program-toolbar {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 10px 14px;
    align-items: center;
  }

  .program-filter-actions {
    margin-top: 0;
  }

  .program-filter-panel {
    grid-column: 1 / -1;
  }

  .program-filters {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .filter-field {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 6px;
  }
}


.accent-yellow {
  --accent: #A67C00;
  --accent-zacht: rgba(255, 212, 60, 0.30);
}

/* T-005 — laatste verfijningen */

/* Filters links, zoeken rechts op één regel */
.program-toolbar-row {
  display: grid;
  grid-template-columns: minmax(105px, 0.34fr) minmax(0, 0.66fr);
  gap: 9px;
  align-items: stretch;
}

.program-toolbar-row .filter-toggle-button,
.program-toolbar-row .program-search,
.program-toolbar-row .program-search input {
  width: 100%;
  min-width: 0;
  height: 42px;
}

.program-toolbar-row .program-search input {
  min-height: 42px;
  padding: 8px 13px;
  border-radius: 11px;
  box-shadow: none;
}

/* Omschrijving even groot als tagtekst, maar niet vet */
.program-card-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

/* Titel van de Programmapagina volgens de huisstijl */
.program-screen .screen-header h1 {
  margin: 0;
  color: var(--kleur-donkergrijs);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 8vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Ondertitel iets rustiger */
.program-screen .screen-header p {
  color: var(--kleur-subtekst);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.program-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--kleur-lijn);
}

.program-card-action {
  appearance: none;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--kleur-donkergrijs);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.program-card-add {
  color: var(--kleur-magenta);
}

.program-card-remove {
  color: var(--kleur-magenta);
}

.program-card-action:disabled {
  color: var(--kleur-magenta);
  cursor: default;
  opacity: 1;
}

.program-card-map {
  color: var(--kleur-subtekst);
}

.program-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-action-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}

.program-action-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.program-conflict {
  margin: 10px 0;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(232, 78, 34, 0.10);
  color: var(--kleur-oranje);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.festival-info-list {
  display: grid;
  gap: 10px;
}

.festival-info-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
}

.festival-info-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--kleur-magenta);
}

.festival-info-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.festival-info-content h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
  color: var(--kleur-donkergrijs);
}

.festival-info-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--kleur-subtekst);
}

.festival-info-hero {
  width: 100%;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
  aspect-ratio: 16 / 6;
}

.festival-info-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.festival-info-card {
  width: 100%;
  appearance: none;
  grid-template-columns: 34px 1fr 18px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.festival-info-title {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--kleur-donkergrijs);
}

.festival-info-text {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--kleur-subtekst);
}

.festival-info-arrow {
  align-self: center;
  color: var(--kleur-magenta);
  font-size: 24px;
  line-height: 1;
}

.festival-info-detail-image {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
  aspect-ratio: 16 / 8;
}

.festival-info-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.festival-info-detail-content {
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
}

.festival-info-detail-content p {
  margin: 0;
  color: var(--kleur-subtekst);
  font-size: 14px;
  line-height: 1.6;
}

/* Compactere homepage op mobiel */

.home-hero {
  padding-bottom: 0;
}

.logo-main {
  margin-bottom: 0;
}

.hero-image {
  margin-top: 14px;
  margin-bottom: 14px;
}

.home-menu-item {
  gap: 14px;
  padding: 15px 18px;
}

.menu-accent {
  height: 44px;
}

.menu-title {
  font-size: 20px;
  margin-bottom: 2px;
}

.menu-subtitle {
  font-size: 14px;
  line-height: 1.3;
}

/* MIJN BRUIST — PERSOONLIJKE AGENDA */

.my-bruist-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(193, 27, 93, 0.10);
  color: var(--kleur-magenta);
  font-size: 14px;
  line-height: 1.2;
}

.my-bruist-summary-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

.my-bruist-summary-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.my-bruist-days {
  display: grid;
  gap: 24px;
}

.my-bruist-day-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.my-bruist-day-title {
  flex: 0 0 auto;
  margin: 0;
  color: var(--kleur-donkergrijs);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
}

.my-bruist-day-line {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(193, 27, 93, 0.22);
}

.my-bruist-agenda {
  display: grid;
  gap: 10px;
}

.my-bruist-card {
  position: relative;
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
}

.my-bruist-card-accent {
  width: 6px;
  min-height: 100%;
  border-radius: 999px;
  background: var(--accent, var(--kleur-magenta));
}

.my-bruist-card-content {
  min-width: 0;
}

.my-bruist-card-time {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: var(--accent, var(--kleur-magenta));
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.my-bruist-card-title {
  margin: 0 0 9px;
  color: var(--kleur-donkergrijs);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.my-bruist-card-category {
  margin-bottom: 10px;
}

.my-bruist-card-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--kleur-subtekst);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.my-bruist-card .mini-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  flex: 0 0 18px;
  place-items: center;
  color: var(--accent, var(--kleur-magenta));
}

.my-bruist-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
  padding-top: 10px;
  border-top: 1px solid var(--kleur-lijn);
}

.my-bruist-card .program-conflict {
  margin: 12px 0 0;
}

.my-bruist-hero {
  width: 100%;
  margin: 4px 0 18px;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 6;
  box-shadow: var(--schaduw-zacht);
}

.my-bruist-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* MIJN BRUIST — COMPACTE KAARTEN */

.my-bruist-list {
  display: grid;
  gap: 10px;
}

.my-bruist-card {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 13px;
  padding: 18px 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--kleur-lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-zacht);
}

.my-bruist-card-accent {
  width: 7px;
  min-height: 100%;
  border-radius: 999px;
  background: var(--accent, var(--kleur-magenta));
}

.my-bruist-card-content {
  min-width: 0;
}

.my-bruist-card-top {
  margin-bottom: 14px;
}

.my-bruist-card-top.has-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 34%);
  gap: 12px;
  align-items: start;
}

.my-bruist-card-title {
  min-width: 0;
  margin: 0;
  color: var(--kleur-donkergrijs);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.my-bruist-card-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--kleur-lijn);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.my-bruist-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.my-bruist-card-facts {
  display: grid;
  gap: 7px;
}

.my-bruist-card-fact {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--kleur-subtekst);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.my-bruist-card .mini-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--accent, var(--kleur-magenta));
}

.my-bruist-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
  padding-top: 10px;
  border-top: 1px solid var(--kleur-lijn);
}

.my-bruist-card .program-conflict {
  margin: 12px 0 0;
}

@media (max-width: 380px) {
  .my-bruist-card {
    gap: 11px;
    padding: 16px 13px;
  }

  .my-bruist-card-top.has-image {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 33%);
    gap: 10px;
  }

  .my-bruist-card-title {
    font-size: 19px;
  }

  .my-bruist-card-fact {
    font-size: 13px;
  }
}

/* FESTIVALINFO — COMPACT OVERZICHT */

.festival-info-list {
  display: grid;
  gap: 8px;
}

.festival-info-card {
  min-height: 0;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 22px;
  box-shadow: none;
}

.festival-info-icon {
  width: 26px;
  height: 26px;
}

.festival-info-icon:empty {
  visibility: hidden;
}

.festival-info-content {
  min-width: 0;
}

.festival-info-title {
  margin-bottom: 2px;
  font-size: 17px;
  line-height: 1.2;
}

.festival-info-text {
  font-size: 13px;
  line-height: 1.35;
}

.festival-info-arrow {
  font-size: 22px;
}

.festival-info-hero {
  margin-bottom: 12px;
}

/* FESTIVALINFO — DETAIL */

.festival-info-detail-screen .back-button {
  margin-bottom: 14px;
}

.festival-info-detail-hero {
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  box-shadow: var(--schaduw-zacht);
}

.festival-info-detail-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.festival-info-detail-heading {
  margin-bottom: 16px;
}

.festival-info-detail-heading h1 {
  margin: 0;
  color: var(--kleur-donkergrijs);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.festival-info-detail-text {
  padding: 4px 0 4px 16px;
  border-left: 5px solid var(--kleur-magenta);
  color: var(--kleur-subtekst);
  font-size: 15px;
  line-height: 1.65;
}

.festival-info-detail-text p {
  margin: 0 0 14px;
}

.festival-info-detail-text p:last-child {
  margin-bottom: 0;
}

/* PROGRAMMA — COMPACTE TOOLBAR */

.program-toolbar {
  margin: 10px 0 16px;
}

.program-search {
  width: 100%;
}

.program-search input {
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--kleur-tekst);
  box-shadow: none;
  font-size: 14px;
}

.program-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.filter-toggle-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(53, 96, 169, 0.22);
  border-radius: 10px;
  background: rgba(53, 96, 169, 0.10);
  color: var(--kleur-blauw);
  font-size: 12px;
  font-weight: 800;
}

.program-result-summary {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--kleur-subtekst);
  font-size: 13px;
  font-weight: 700;
}

.program-reset-button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: var(--kleur-subtekst);
  font-size: 12px;
}

.program-reset-button[hidden] {
  display: none;
}

.program-filter-panel {
  margin-top: 8px;
}

/* PROGRAMMA — COMPACTE KOP EN FILTERS */

.program-screen .app-header {
  margin-bottom: 0;
}

.program-header-count {
  display: inline-block;
  margin-top: 4px;
  padding: 0;
  color: var(--kleur-subtekst);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.program-toolbar {
  margin: 0 0 16px;
}

.program-toolbar-row {
  display: grid;
  grid-template-columns: minmax(105px, 0.32fr) minmax(0, 0.68fr);
  gap: 9px;
  align-items: stretch;
}

.filter-toggle-button {
  width: 100%;
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid rgba(53, 96, 169, 0.24);
  border-radius: 13px;
  background: rgba(53, 96, 169, 0.10);
  color: var(--kleur-blauw);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.program-search {
  min-width: 0;
}

.program-search input {
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--kleur-tekst);
  box-shadow: none;
  font-size: 14px;
}

.program-filter-panel {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.program-filter-panel[hidden] {
  display: none;
}

.program-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.filter-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  min-width: 0;
  min-height: 0;
}

.filter-field:nth-child(3) {
  grid-column: 1 / -1;
}

.filter-field>span {
  color: var(--kleur-subtekst);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.filter-field select {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 6px 30px 6px 9px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 10px;
  background: var(--kleur-wit);
  color: var(--kleur-tekst);
  box-shadow: none;
  font-size: 13px;
}

.program-reset-button {
  display: block;
  width: auto;
  min-height: 30px;
  margin: 10px 0 0 auto;
  padding: 4px 7px;
  border: 0;
  background: transparent;
  color: var(--kleur-magenta);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.program-reset-button[hidden] {
  display: none;
}

@media (max-width: 380px) {
  .program-header-count {
    padding-left: 0;
  }

  .program-toolbar-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .program-filters {
    gap: 8px;
  }

  .filter-field select {
    font-size: 12px;
  }
}

.program-card-more {
  color: var(--kleur-blauw);
  text-decoration: none;
}

/* =========================================================
   PLATTEGROND
   ========================================================= */

.festival-map-switcher {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.28rem;
  margin: 0.45rem 0 0.65rem;
  padding: 0;
  overflow-x: auto;
  background: transparent;
  border-radius: 0;
  scrollbar-width: none;
}

.festival-map-switcher::-webkit-scrollbar {
  display: none;
}

.festival-map-switcher .festival-map-back {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 0.22rem !important;
  min-width: 0 !important;
  min-height: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  padding: 0 0.2rem 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #17212b !important;
  font-family: inherit !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  cursor: pointer;
  white-space: nowrap;
}

.festival-map-back-icon {
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1;
  transform: translateY(-0.02rem);
}

.festival-map-switcher .festival-map-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 28px;
  height: 28px;
  margin: 0;
  padding: 0.2rem 0.48rem;
  border: 1px solid rgba(23, 33, 43, 0.16);
  border-radius: 0.5rem;
  background: #ffffff;
  color: inherit;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.festival-map-switcher .festival-map-switch.is-active {
  border-color: #173b69;
  background: #173b69;
  color: #ffffff;
  box-shadow: none;
}

.festival-map-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.festival-map-heading h2 {
  margin: 0;
  font-size: 1.05rem;
}

.festival-map-count {
  flex: 0 0 auto;
  color: #666666;
  font-size: 0.78rem;
}

.festival-map-scroll {
  width: 100%;
  overflow: auto;
  border-radius: 1rem;
  background: #eeeeee;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.09);
}

.festival-map-canvas {
  position: relative;
  width: 100%;
  min-width: 100%;
}

.festival-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.festival-map-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.festival-map-marker {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.festival-map-marker-dot {
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  border: 0.2rem solid #ffffff;
  border-radius: 50%;
  background: #e23874;
  box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.4);
}

.festival-map-marker-label {
  display: none;
  max-width: 9rem;
  margin-left: 0.35rem;
  padding: 0.25rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.95);
  color: #222222;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
}

.festival-map-marker:hover .festival-map-marker-label,
.festival-map-marker:focus .festival-map-marker-label {
  display: block;
}

.festival-map-empty {
  margin: 1rem 0 0;
  color: #666666;
  font-size: 0.9rem;
  text-align: center;
}

@media (min-width: 700px) {
  .festival-map-marker-label {
    display: block;
  }
}

.festival-map-marker svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke-width: 2;
  pointer-events: none;
}

.program-map-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(23, 33, 43, 0.16);
  border-radius: 10px;
  background: #fff;
  color: #17212b;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.program-map-button:hover {
  background: #f5f3ed;
}

.program-map-button span {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.program-map-button svg {
  width: 100%;
  height: 100%;
}

/* T-007a: compacte PWA-installatiekaart op Home */
.pwa-install-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 2.25rem 0.75rem 0.9rem;
  border: 1px solid rgba(193, 27, 93, 0.18);
  border-radius: 0.85rem;
  background: #ffffff;
  box-shadow: 0 0.15rem 0.55rem rgba(23, 33, 43, 0.07);
}

.pwa-install-card[hidden] {
  display: none;
}

.pwa-install-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.pwa-install-copy strong {
  color: #17212b;
  font-size: 0.9rem;
  line-height: 1.2;
}

.pwa-install-copy span {
  color: #65605a;
  font-size: 0.76rem;
  line-height: 1.3;
}

.pwa-install-button {
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  border: 0;
  border-radius: 0.65rem;
  background: #c11b5d;
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.pwa-install-close {
  position: absolute;
  top: 0.28rem;
  right: 0.38rem;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #77716a;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 380px) {
  .pwa-install-card {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .pwa-install-button {
    justify-self: start;
  }
}

/* T-008: opvallende actieknop voor aanmelden, reserveren of tickets */
.program-card-cta {
  padding: 0.42rem 0.7rem;
  border-radius: 0.65rem;
  background: var(--kleur-oranje);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0.16rem 0.42rem rgba(232, 78, 34, 0.18);
}

.program-card-cta:hover,
.program-card-cta:focus-visible {
  background: #cf3f1c;
  color: #ffffff;
}

.program-action-cta {
  background: var(--kleur-oranje);
  color: #ffffff;
}

.program-action-cta:hover,
.program-action-cta:focus-visible {
  background: #cf3f1c;
  color: #ffffff;
}


/* T-007b: compacte melding wanneer een nieuwe PWA-versie klaarstaat */
.pwa-update-banner {
  position: fixed;
  left: 50%;
  bottom: calc(var(--nav-hoogte) + 0.65rem);
  z-index: 40;
  display: flex;
  width: min(calc(100% - 1.5rem), 32rem);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.65rem 0.9rem;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 33, 43, 0.14);
  border-radius: 0.85rem;
  background: #ffffff;
  color: #17212b;
  box-shadow: 0 0.3rem 1rem rgba(23, 33, 43, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

.pwa-update-banner[hidden] {
  display: none;
}

.pwa-update-banner button {
  flex: 0 0 auto;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border: 0;
  border-radius: 0.62rem;
  background: var(--kleur-magenta);
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.pwa-update-banner button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* Programmafilters — definitieve compacte variant */
.program-toolbar-row {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.program-toolbar-row .filter-toggle-button {
  width: auto;
  min-height: 40px;
  height: 40px;
  padding: 7px 11px;
}

.program-toolbar-row .program-search,
.program-toolbar-row .program-search input {
  width: 100%;
  min-width: 0;
}

.program-toolbar-row .program-search input {
  min-height: 40px;
  height: 40px;
  padding: 7px 12px;
}

.program-reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: auto;
  min-height: 40px;
  height: 40px;
  margin: 0;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--kleur-magenta);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.program-reset-button[hidden] {
  display: none;
}

.program-filter-panel {
  margin-top: 7px;
  padding: 8px 10px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.program-filter-panel[hidden] {
  display: none;
}

.program-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 0;
}

.filter-field {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 34px;
  margin: 0;
}

.filter-field>span {
  color: var(--kleur-subtekst);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.filter-field select {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  height: 34px;
  margin: 0;
  padding: 3px 30px 3px 9px;
  border: 1px solid var(--kleur-lijn);
  border-radius: 9px;
  background: var(--kleur-wit);
  color: var(--kleur-tekst);
  box-shadow: none;
  font-size: 13px;
  line-height: 1.1;
}

@media (max-width: 380px) {
  .program-toolbar-row {
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .program-toolbar-row .filter-toggle-button,
  .program-toolbar-row .program-search input,
  .program-reset-button {
    min-height: 38px;
    height: 38px;
  }

  .filter-field {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 6px;
  }

  .filter-field select {
    min-height: 32px;
    height: 32px;
    font-size: 12px;
  }
}

@media (min-width: 720px) {
  .program-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .filter-field {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

/* Festivalinfo detail — tussenkoppen en leesbare tekst */
.festival-info-detail-text {
  font-weight: 400;
}

.festival-info-detail-text p {
  margin: 0 0 14px;
  color: var(--kleur-subtekst);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.festival-info-detail-text p:last-child {
  margin-bottom: 0;
}

.festival-info-subheading {
  margin: 18px 0 5px;
  color: var(--kleur-donkergrijs);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.festival-info-subheading:first-child {
  margin-top: 0;
}

.festival-info-email {
  color: var(--kleur-magenta);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* PLATTEGROND — locatiepaneel iets compacter */
.festival-map-location-panel {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.festival-map-location-panel .festival-map-location-item {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.festival-map-location-panel .festival-map-location-action,
.festival-map-location-panel .secondary-button {
  min-height: 42px;
  padding-top: 9px;
  padding-bottom: 9px;
}