  /* ── Jugend Tab Menu ── */
  .jt-bar {
    display: flex; gap: 4px; flex-wrap: wrap;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 36px;
  }
  .jt-tab {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 15px; text-transform: uppercase; letter-spacing: .06em;
    padding: 10px 22px; border: none; background: none; cursor: pointer;
    color: var(--gray); border-bottom: 3px solid transparent;
    margin-bottom: -2px; border-radius: 4px 4px 0 0;
    transition: color .15s, border-color .15s, background .15s;
  }
  .jt-tab:hover { color: var(--blue); background: var(--blue-light); }
  .jt-tab.active { color: var(--blue); border-bottom-color: var(--blue); background: var(--blue-light); }
  .jt-panel { display: none; }
  .jt-panel.active { display: block; animation: fadeUp .3s ease both; }

  /* Trainer cards inside tabs */
  .jt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
  .jt-trainer {
    background: var(--off-white); border: 1.5px solid #e5e7eb;
    border-radius: 16px; padding: 24px;
  }
  .jt-trainer-gender {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
    padding: 3px 12px; border-radius: 100px; margin-bottom: 14px;
  }
  .jt-gender-m { background: #dbeafe; color: #1d4ed8; }
  .jt-gender-f { background: #fce7f3; color: #9d174d; }
  .jt-trainer-name {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 20px; text-transform: uppercase; color: var(--text);
    margin-bottom: 4px;
  }
  .jt-trainer-role { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
  .jt-trainer-detail { font-size: 14px; color: #4b5563; line-height: 1.7; }
  .jt-trainer-detail strong { color: var(--text); }
  .jt-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--blue-light); display: flex; align-items: center;
    justify-content: center; margin-bottom: 14px;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 18px; color: var(--blue);
  }
  .jt-info-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #4b5563; margin-top: 8px;
  }
  .jt-info-row svg { width: 14px; height: 14px; stroke: var(--gray); fill: none; stroke-width: 2; flex-shrink: 0; }
  .jt-meta-bar {
    background: var(--blue); color: #fff; border-radius: 10px;
    padding: 14px 20px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .jt-meta-item { text-align: center; }
  .jt-meta-label { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
  .jt-meta-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; color: var(--yellow); }
  @media(max-width:700px){ .jt-split { grid-template-columns: 1fr; } }
