.ct-kol-wrap {
  --rot:       #b1182d;
  --rot-dark:  #8B1212;
  --rot-bg:    #fbf0f0;
  --gold:      #C9A84C;
  --text:      #222222;
  --text-mid:  #444444;
  --text-mute: #666666;
  --border:    #ddd5c8;
  --bg-off:    #f5f0ea;
  --green:     #2A7A2A;
  --green-bg:  #edf7ed;
  --amber:     #7a4a00;
  --amber-bg:  #fdf5e0;
  --radius:    8px;
  --radius-lg: 14px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.65;
}

/* ---- TOC ---- */
.ct-kol-toc {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 40px 0 0;
}
.ct-kol-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--rot);
  margin-bottom: 14px;
}
.ct-kol-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 8px 24px;
}
.ct-kol-toc-list li { margin: 0; padding: 0; }
.ct-kol-toc-list li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-kol-toc-list li a:hover { color: var(--rot); }
.ct-kol-toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--rot);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

/* ---- DIVIDER ---- */
.ct-kol-div {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 0;
}

/* ---- SECTION CARD ---- */
.ct-kol-card {
  background: var(--bg-off);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-top: 40px;
}
.ct-kol-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.ct-kol-card-icon {
  width: 46px;
  height: 46px;
  background: var(--rot);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}
.ct-kol-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--rot);
  margin-bottom: 3px;
}
.ct-kol-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}
.ct-kol-card p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 17px;
}
.ct-kol-card p:last-child { margin-bottom: 0; }

/* ---- BILD ---- */
.ct-kol-figure {
  margin: 0 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ct-kol-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.ct-kol-figure figcaption {
  font-size: 13px;
  color: var(--text-mute);
  padding: 9px 14px;
  background: #fff;
}

/* ---- HIGHLIGHT-GRID (Was man sehen kann) ---- */
.ct-kol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
.ct-kol-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.ct-kol-feature-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-kol-feature-emoji { font-size: 18px; line-height: 1; }
.ct-kol-feature-desc {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
}

/* ---- TICKET-ÜBERBLICK ---- */
.ct-kol-tickets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}
.ct-kol-ticket {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ct-kol-ticket-icon {
  width: 38px;
  height: 38px;
  background: var(--rot-bg);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ct-kol-ticket-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin: 0 0 3px;
}
.ct-kol-ticket-desc {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0;
}

/* ---- CALLOUTS ---- */
.ct-kol-callout {
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.ct-kol-callout.info  { background: #edf4fe; border-left: 3px solid #3182ce; }
.ct-kol-callout.warn  { background: var(--amber-bg); border-left: 3px solid var(--gold); }
.ct-kol-callout.ok    { background: var(--green-bg); border-left: 3px solid var(--green); }
.ct-kol-callout-icon  { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ct-kol-callout p     { font-size: 15px; color: var(--text-mid); margin: 0; line-height: 1.55; }

/* ---- INFO-PILLS (Anreise / Barrierefreiheit) ---- */
.ct-kol-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 18px 0;
}
.ct-kol-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.ct-kol-pill-icon {
  width: 38px;
  height: 38px;
  background: var(--rot-bg);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ct-kol-pill-label { font-weight: 700; font-size: 15px; color: var(--text); margin: 0 0 3px; }
.ct-kol-pill-desc  { font-size: 13px; color: var(--text-mute); line-height: 1.45; margin: 0; }

/* ---- INTERNE LINK-LISTE ---- */
.ct-kol-links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.ct-kol-links li { margin: 0; }
.ct-kol-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.ct-kol-links a:hover { border-color: var(--rot); color: var(--rot); }
.ct-kol-links-arrow { color: var(--rot); font-weight: 700; flex-shrink: 0; }

/* ---- INLINE CTA ---- */
.ct-kol-inline-cta {
  background: var(--rot-bg);
  border: 1px solid #d4a0a0;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ct-kol-cta-strong { display: block; font-size: 16px; font-weight: 700; color: var(--rot); margin-bottom: 3px; }
.ct-kol-cta-sub    { font-size: 13px; color: var(--text-mute); }
.ct-kol-btn {
  display: inline-block;
  background: var(--rot);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
  line-height: 1.4;
}
.ct-kol-btn:hover { background: var(--rot-dark); color: #ffffff !important; }

/* ---- FAQ ---- */
.ct-kol-faq { margin: 0; }
.ct-kol-faq-item { border-bottom: 1px solid var(--border); }
.ct-kol-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.ct-kol-faq-q:hover { color: var(--text); }
.ct-kol-faq-q:hover .ct-kol-faq-arrow { color: var(--rot); }
.ct-kol-faq-arrow { color: var(--rot); font-size: 16px; flex-shrink: 0; transition: transform .2s; }
.ct-kol-faq-item.open .ct-kol-faq-arrow { transform: rotate(180deg); }
.ct-kol-faq-a {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.ct-kol-faq-item.open .ct-kol-faq-a { max-height: 460px; padding-bottom: 16px; }

/* ---- CLOSING CTA ---- */
.ct-kol-closing {
  background: linear-gradient(135deg, #6B1212 0%, var(--rot) 60%, #d42236 100%);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  text-align: center;
  margin: 48px 0 12px;
}
.ct-kol-closing h2.ct-kol-closing-h2 {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
  line-height: 1.25 !important;
}
.ct-kol-closing p.ct-kol-closing-p {
  color: rgba(255,255,255,.85) !important;
  margin-bottom: 22px !important;
  font-size: 16px !important;
}
.ct-kol-closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 22px;
}
.ct-kol-closing-link {
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  padding: 8px 15px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block;
  line-height: 1.4;
  transition: background .15s;
}
.ct-kol-closing-link:hover {
  background: rgba(255,255,255,.28) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.ct-kol-closing-btn {
  display: inline-block;
  background: #ffffff !important;
  color: var(--rot) !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  padding: 13px 30px !important;
  border-radius: var(--radius) !important;
  text-decoration: none !important;
  transition: transform .15s, box-shadow .15s;
  line-height: 1.4;
}
.ct-kol-closing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: var(--rot) !important;
  text-decoration: none !important;
}

/* ---- TABELLEN-CONTAINER (mobiles Scrollen) ---- */
.ct-kol-wrap .tablecontainer { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; }

/* ---- MOBILE ---- */
@media (max-width: 680px) {
  .ct-kol-toc-list { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: none; }
  .ct-kol-grid     { grid-template-columns: 1fr; }
  .ct-kol-pills    { grid-template-columns: 1fr; }
  .ct-kol-links    { grid-template-columns: 1fr; }
  .ct-kol-card     { padding: 20px; }
  .ct-kol-closing  { padding: 26px 18px; }
  .ct-kol-inline-cta { flex-direction: column; }
}
