/* Flaire Training Overzicht — single training page */

.fto-single-wrap {
  font-family: 'Work Sans', sans-serif;
  color: #1a1a2e;
  padding: 2.5rem 0 5rem;
}

.fto-single-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero card ───────────────────────────────────── */
.fto-single-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.fto-single-bar { height: 6px; flex-shrink: 0; }

.fto-single-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Video embed on single page */
.fto-single-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.fto-single-video iframe,
.fto-single-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.fto-single-header { padding: 2rem 2.5rem 2.5rem; }

/* Topic chip */
.fto-single-topic {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}

/* Title */
.fto-single-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.4rem;
  color: #1a1a2e;
}

/* Meta row */
.fto-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.09);
}

.fto-single-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #5a5a72;
}
.fto-single-meta-item svg { flex-shrink: 0; color: #9a9ab0; }
.fto-single-format { gap: 0.25rem; }

/* Badges row */
.fto-single-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.fto-single-badges-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.fto-single-status {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 12px;
  color: #fff;
}

.fto-single-level {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fto-single-level-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a5a72;
}
.fto-single-level-bar { display: flex; gap: 3px; }
.fto-level-seg {
  width: 20px;
  height: 5px;
  border-radius: 3px;
  background: #e0e2e6;
}

/* CTA button */
.fto-single-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.75rem;
  border-radius: 6px;
  background: #0090D4;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.fto-single-btn:hover { background: #007ab8; color: #fff; }

/* ── Content area ────────────────────────────────── */
.fto-single-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
  line-height: 1.8;
  color: #2a2a3e;
}
.fto-single-content h2,
.fto-single-content h3,
.fto-single-content h4 {
  font-family: 'Work Sans', sans-serif;
  color: #1a1a2e;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}
.fto-single-content h2 { font-size: 1.4rem; }
.fto-single-content h3 { font-size: 1.15rem; }
.fto-single-content p  { margin: 0 0 1em; }
.fto-single-content ul,
.fto-single-content ol { padding-left: 1.4em; margin-bottom: 1em; }
.fto-single-content li { margin-bottom: 0.35em; }
.fto-single-content a  { color: #0090D4; }
.fto-single-content a:hover { text-decoration: underline; }

/* ── Back link ───────────────────────────────────── */
.fto-single-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6a6a82;
  text-decoration: none;
  transition: color 0.15s;
}
.fto-single-back-link:hover { color: #0090D4; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
  .fto-single-header        { padding: 1.5rem 1.25rem 2rem; }
  .fto-single-title         { font-size: 1.5rem; }
  .fto-single-content       { padding: 1.5rem 1.25rem; }
  .fto-single-btn           { width: 100%; justify-content: center; }
}
