/* Programm Section (Bear Sister) */

.c-program {
  /* keep same card look as other sections */
  user-select: text;
}

.program-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.program-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: calc(var(--basicFontSize) * 0.55);
}

.program-table th,
.program-table td {
  border: 2px solid rgba(227, 214, 200, 0.35);
  padding: 14px 14px;
  vertical-align: top;
}

.program-table thead th {
  background: rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.program-table .timecol {
  width: 18%;
  background: rgba(0, 0, 0, 0.10);
  font-weight: 600;
}

.program-item {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  margin: 6px 0;
  line-height: 1.25;
}

.program-item--astro {
  background: rgba(120, 80, 160, 0.65);
}

.program-item--sensual {
  background: rgba(190, 70, 60, 0.75);
}

.program-item--concert {
  background: rgba(60, 120, 170, 0.75);
}

.program-item--plain {
  background: rgba(0, 0, 0, 0.12);
}

.program-notes {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.program-note {
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.25;
  font-size: calc(var(--basicFontSize) * 0.5);
}

.program-note--astro { background: rgba(120, 80, 160, 0.65); }
.program-note--sensual { background: rgba(190, 70, 60, 0.75); }
.program-note--concert { background: rgba(60, 120, 170, 0.75); }

.program-note strong {
  display: inline-block;
  margin-bottom: 6px;
}

/* Mobile: stack into cards */
@media (max-width: 900px) {
  .program-table {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .program-table,
  .program-table thead,
  .program-table tbody,
  .program-table th,
  .program-table td,
  .program-table tr {
    display: block;
  }

  .program-table thead {
    display: none;
  }

  .program-table tr {
    margin: 0 0 14px 0;
    border: 2px solid rgba(227, 214, 200, 0.35);
    border-radius: 10px;
    overflow: hidden;
  }

  .program-table td {
    border: none;
    border-top: 1px solid rgba(227, 214, 200, 0.25);
  }

  .program-table td.timecol {
    width: 100%;
    background: rgba(0, 0, 0, 0.18);
  }

  .program-table td[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: 600;
    opacity: 0.9;
  }

  .program-note {
    font-size: 18px;
  }
}
/* Saubere Section-Trennung */
.section-block {
    position: relative;
    width: 100%;
    clear: both;
    padding: 80px 20px;
    box-sizing: border-box;
}

/* Abstand zwischen Programm und Gallery */
#programm {
    margin-bottom: 120px;
}

#gallery {
    margin-top: 0;
}