/* Biology Tutor Pro – tutor.css – clean rebuild */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.btp-wrap {
  --btp-p:     #1a7a4a;
  --btp-dk:    #0d5c36;
  --btp-a:     #e67e22;
  --btp-al:    #fef0e4;
  --btp-pl:    #e8f5ee;
  --btp-pm:    #b8ddc8;
  --btp-bg:    #f6fbf8;
  --btp-bd:    #d0e8da;
  --btp-tx:    #1a2e22;
  --btp-mu:    #5a7a68;
  --btp-wh:    #ffffff;
  --btp-h:     700px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background:  var(--btp-wh);
  border-radius: 16px;
  box-shadow:  0 8px 40px rgba(26,122,74,.14);
  border:      1.5px solid var(--btp-bd);
  display:     flex;
  flex-direction: column;
  max-width:   940px;
  margin:      0 auto;
  overflow:    hidden;
}

/* ── Header ── */
.btp-head {
  background: linear-gradient(135deg, #1a7a4a 0%, #0d5c36 100%);
  flex-shrink: 0;
}
.btp-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 12px;
}
.btp-icon { font-size: 38px; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.btp-brand-name { font-size: 21px; font-weight: 800; color: #ffffff; line-height: 1.2; }
.btp-brand-sub  { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; }

.btp-tabs { display: flex; padding: 0 26px; border-top: 1px solid rgba(255,255,255,.15); }
.btp-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,.65);
  padding: 12px 22px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .01em;
}
.btp-tab:hover  { color: #ffffff; }
.btp-tab-on     { color: #ffffff; border-bottom-color: #e67e22; }

/* ── Panels ── */
.btp-panel { display: none; flex: 1; overflow: hidden; min-height: var(--btp-h); max-height: var(--btp-h); }
.btp-panel-on { display: flex; flex-direction: column; }
.btp-hide { display: none; }

/* ── Curriculum ── */
.btp-cur-wrap { display: flex; flex: 1; overflow: hidden; height: 100%; }

.btp-sidebar {
  width: 210px;
  flex-shrink: 0;
  background: var(--btp-bg);
  border-right: 1px solid var(--btp-bd);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px 10px;
}
.btp-sec-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--btp-tx);
  padding: 9px 11px;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .15s;
  margin-bottom: 3px;
  line-height: 1.4;
}
.btp-sec-btn:hover { background: var(--btp-pl); color: var(--btp-p); }
.btp-sec-on { background: var(--btp-p) !important; color: #ffffff !important; }

.btp-content {
  flex: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 22px 24px;
}

.btp-sec { display: none; animation: btpFade .2s ease; }
.btp-sec-show { display: block; }
.btp-sec-head {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  color: var(--btp-p);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--btp-bd);
}

.btp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--btp-bd);
  border-radius: 11px;
  margin-bottom: 9px;
  background: var(--btp-wh);
  transition: all .2s;
}
.btp-item:hover { border-color: var(--btp-p); box-shadow: 0 2px 12px rgba(26,122,74,.1); }
.btp-dot { width: 8px; height: 8px; background: var(--btp-a); border-radius: 50%; flex-shrink: 0; }
.btp-item-name { flex: 1; font-size: 14px; font-weight: 500; color: var(--btp-tx); line-height: 1.5; }
.btp-explain-btn {
  background: var(--btp-pl);
  color: var(--btp-p);
  border: 1.5px solid var(--btp-pm);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s;
}
.btp-explain-btn:hover { background: var(--btp-p); color: #ffffff; }

/* Explain box */
.btp-explain-box {
  background: var(--btp-wh);
  border: 2px solid var(--btp-p);
  border-radius: 14px;
  margin-top: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,122,74,.12);
}
.btp-explain-head {
  background: var(--btp-pl);
  padding: 12px 18px;
  border-bottom: 1px solid var(--btp-bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--btp-p);
}
.btp-explain-close {
  background: none;
  border: none;
  color: var(--btp-mu);
  cursor: pointer;
  font-size: 13px;
  padding: 4px 9px;
  border-radius: 6px;
  font-family: inherit;
}
.btp-explain-close:hover { background: var(--btp-bd); }
.btp-explain-body { padding: 20px 22px; font-size: 14px; line-height: 1.9; color: var(--btp-tx); }

/* Diagram */
.btp-diagram-wrap {
  background: var(--btp-bg);
  border: 2px solid var(--btp-p);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.btp-diagram-label {
  background: var(--btp-p);
  color: #ffffff;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.btp-diagram { padding: 14px; text-align: center; overflow-x: auto; }
.btp-diagram svg { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ── Practice ── */
.btp-practice-wrap {
  padding: 22px 24px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.btp-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.btp-pill {
  background: var(--btp-bg);
  border: 1.5px solid var(--btp-bd);
  border-radius: 20px;
  padding: 7px 16px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--btp-mu);
  cursor: pointer;
  transition: all .15s;
}
.btp-pill:hover      { border-color: var(--btp-p); color: var(--btp-p); }
.btp-pill-on         { background: var(--btp-p); border-color: var(--btp-p); color: #ffffff; }
.btp-pill-gold       { border-color: #d4980a; color: #7a5500; }
.btp-pill-gold.btp-pill-on { background: var(--btp-a); border-color: var(--btp-a); color: #ffffff; }
.btp-pill-blue       { border-color: #4a6cf7; color: #2a3db0; }
.btp-pill-blue.btp-pill-on { background: #4a6cf7; border-color: #4a6cf7; color: #ffffff; }

.btp-lbl { font-size: 11px; font-weight: 700; color: var(--btp-mu); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 8px; }

/* Editor */
.btp-editor { border: 1.5px solid var(--btp-bd); border-radius: 12px; overflow: hidden; }
.btp-editor-top {
  background: var(--btp-bg);
  padding: 10px 14px;
  border-bottom: 1px solid var(--btp-bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--btp-mu);
}
.btp-clear {
  background: none;
  border: none;
  color: var(--btp-mu);
  font-size: 12px;
  cursor: pointer;
  padding: 3px 9px;
  border-radius: 6px;
  font-family: inherit;
}
.btp-clear:hover { background: var(--btp-bd); }
.btp-textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  resize: vertical;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--btp-tx);
  background: var(--btp-wh);
  box-sizing: border-box;
}
.btp-textarea:focus { outline: none; }
.btp-editor-bot {
  background: var(--btp-bg);
  padding: 10px 14px;
  border-top: 1px solid var(--btp-bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btp-chars { font-size: 12px; color: var(--btp-mu); }

.btp-btn-primary {
  background: var(--btp-p);
  color: #ffffff;
  border: none;
  padding: 9px 22px;
  border-radius: 9px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 3px 14px rgba(26,122,74,.28);
}
.btp-btn-primary:hover    { background: var(--btp-dk); transform: translateY(-1px); }
.btp-btn-primary:active   { transform: translateY(0); }
.btp-btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btp-result { border: 1.5px solid var(--btp-bd); border-radius: 12px; overflow: hidden; }
.btp-result-head {
  background: var(--btp-pl);
  padding: 10px 16px;
  border-bottom: 1px solid var(--btp-bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--btp-p);
}
.btp-copy {
  background: var(--btp-p);
  color: #ffffff;
  border: none;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btp-result-body { padding: 16px 18px; font-size: 14px; line-height: 1.9; color: var(--btp-tx); }
.btp-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.btp-qbtn {
  background: var(--btp-bg);
  border: 1.5px solid var(--btp-bd);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--btp-tx);
  cursor: pointer;
  transition: all .15s;
  text-align: left;
}
.btp-qbtn:hover { background: var(--btp-al); border-color: var(--btp-a); color: #7a5500; }

/* MCQ settings */
.btp-mcq-settings { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.btp-field { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 140px; }
.btp-field label { font-size: 12px; font-weight: 700; color: var(--btp-mu); }
.btp-mcq-topic, .btp-mcq-count, .btp-mcq-diff, .btp-fc-topic {
  border: 1.5px solid var(--btp-bd);
  border-radius: 9px;
  padding: 8px 11px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 13px;
  color: var(--btp-tx);
  background: var(--btp-wh);
  cursor: pointer;
}
.btp-mcq-topic:focus, .btp-mcq-count:focus, .btp-mcq-diff:focus, .btp-fc-topic:focus {
  outline: none; border-color: var(--btp-p);
}
.btp-mcq-progress, .btp-fc-progress {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--btp-mu); font-weight: 600; padding: 8px 0;
}

/* MCQ Cards */
.btp-mcq-card {
  background: var(--btp-wh);
  border: 2px solid var(--btp-bd);
  border-radius: 13px;
  padding: 20px;
  margin-top: 12px;
  box-shadow: 0 2px 12px rgba(26,122,74,.07);
  transition: border-color .2s;
}
.btp-mcq-card:hover { border-color: var(--btp-pm); }
.btp-mcq-q { font-size: 15px; font-weight: 700; color: var(--btp-tx); margin-bottom: 14px; line-height: 1.6; }
.btp-mcq-opts { display: flex; flex-direction: column; gap: 8px; }
.btp-mcq-opt {
  width: 100%;
  text-align: left;
  background: var(--btp-bg);
  border: 1.5px solid var(--btp-bd);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--btp-tx);
  cursor: pointer;
  transition: all .15s;
  line-height: 1.5;
}
.btp-mcq-opt:hover:not(:disabled) { background: var(--btp-pl); border-color: var(--btp-p); color: var(--btp-p); }
.btp-mcq-opt:disabled { cursor: default; }
.btp-opt-right { background: #d4f4e0 !important; border-color: #27ae60 !important; color: #145a32 !important; font-weight: 700 !important; }
.btp-opt-wrong { background: #fde8e8 !important; border-color: #e74c3c !important; color: #8c1d1d !important; }
.btp-mcq-fb {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}
.btp-fb-ok { background: #d4f4e0; color: #145a32; }
.btp-fb-no { background: #fde8e8; color: #8c1d1d; }
.btp-mcq-exp {
  margin-top: 10px;
  padding: 12px 16px;
  background: #fff8ec;
  border-left: 4px solid var(--btp-a);
  border-radius: 0 10px 10px 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--btp-tx);
}

/* Flashcards */
.btp-fc-zone { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 14px; margin-top: 12px; }
.btp-fc { height: 168px; perspective: 900px; cursor: pointer; }
.btp-fc-in { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.btp-fc-flipped .btp-fc-in { transform: rotateY(180deg); }
.btp-fc-face { position: absolute; inset: 0; border-radius: 14px; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; text-align: center; gap: 8px; }
.btp-fc-front { background: linear-gradient(135deg, #1a7a4a 0%, #0d5c36 100%); color: #ffffff; }
.btp-fc-back  { background: #fff8ec; border: 2px solid #e67e22; color: var(--btp-tx); transform: rotateY(180deg); }
.btp-fc-text  { font-size: 14px; font-weight: 700; line-height: 1.5; }
.btp-fc-hint  { font-size: 11px; opacity: .7; font-weight: 400; }

/* ── Chat ── */
.btp-chat-wrap { display: flex; flex-direction: column; flex: 1; height: 100%; overflow: hidden; }
.btp-msgs {
  flex: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btp-msg     { display: flex; gap: 10px; align-items: flex-start; }
.btp-bot     { flex-direction: row; }
.btp-user    { flex-direction: row-reverse; }
.btp-avatar  { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--btp-pl); box-shadow: 0 2px 8px rgba(26,122,74,.15); }
.btp-user .btp-avatar { background: var(--btp-al); }
.btp-msg-inner { display: flex; flex-direction: column; max-width: 78%; }
.btp-bot  .btp-msg-inner { align-items: flex-start; }
.btp-user .btp-msg-inner { align-items: flex-end; }
.btp-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--btp-tx);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.btp-bot  .btp-bubble { background: var(--btp-bg); border: 1px solid var(--btp-bd); border-top-left-radius: 4px; }
.btp-user .btp-bubble { background: var(--btp-p); color: #ffffff; border-top-right-radius: 4px; }
.btp-bubble p  { margin: 0 0 7px; }
.btp-bubble p:last-child { margin-bottom: 0; }
.btp-bubble ul { margin: 7px 0; padding-left: 20px; }
.btp-bubble li { margin-bottom: 4px; }
.btp-dots { display: flex; gap: 4px; align-items: center; padding: 4px 0; }
.btp-dots span { width: 7px; height: 7px; background: var(--btp-p); border-radius: 50%; animation: btpBounce .9s infinite; }
.btp-dots span:nth-child(2) { animation-delay: .15s; }
.btp-dots span:nth-child(3) { animation-delay: .30s; }

.btp-suggests {
  padding: 9px 16px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--btp-bd);
  background: var(--btp-bg);
  flex-shrink: 0;
}
.btp-sug {
  background: var(--btp-wh);
  border: 1.5px solid var(--btp-bd);
  border-radius: 20px;
  padding: 5px 13px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--btp-tx);
  cursor: pointer;
  transition: all .15s;
}
.btp-sug:hover { background: var(--btp-p); border-color: var(--btp-p); color: #ffffff; }

.btp-input-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--btp-bd);
  background: var(--btp-wh);
  flex-shrink: 0;
}
.btp-input {
  flex: 1;
  border: 1.5px solid var(--btp-bd);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 14px;
  resize: none;
  color: var(--btp-tx);
  background: var(--btp-wh);
  max-height: 120px;
  transition: border-color .2s, box-shadow .2s;
}
.btp-input:focus { outline: none; border-color: var(--btp-p); box-shadow: 0 0 0 3px rgba(26,122,74,.12); }
.btp-send {
  width: 42px; height: 42px;
  background: var(--btp-p);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  box-shadow: 0 3px 12px rgba(26,122,74,.3);
}
.btp-send:hover    { background: var(--btp-dk); transform: scale(1.06); }
.btp-send svg      { width: 18px; height: 18px; }
.btp-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* TTS */
.btp-tts-bar { display: flex; padding: 6px 2px 2px; }
.btp-explain-body .btp-tts-bar, .btp-result-body .btp-tts-bar {
  padding: 10px 20px 14px;
  border-top: 1px solid var(--btp-bd);
  margin-top: 6px;
}
.btp-tts-btn {
  background: transparent;
  border: 1.5px solid var(--btp-bd);
  border-radius: 20px;
  padding: 5px 16px;
  font-family: 'Inter','Segoe UI',Arial,sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--btp-p);
  cursor: pointer;
  transition: all .2s;
}
.btp-tts-btn:hover { background: var(--btp-p); border-color: var(--btp-p); color: #ffffff; }
.btp-tts-btn.on { background: #b91c1c; border-color: #b91c1c; color: #ffffff; }

/* Spinner */
.btp-spin {
  width: 22px; height: 22px;
  border: 3px solid var(--btp-bd);
  border-top-color: var(--btp-p);
  border-radius: 50%;
  animation: btpSpin .7s linear infinite;
  flex-shrink: 0;
}
.btp-explain-loading, .btp-result-loading {
  display: flex; align-items: center; gap: 12px;
  padding: 20px; font-size: 14px; color: var(--btp-mu); font-weight: 600;
}

/* AI content */
.btp-ai h1, .btp-ai h2, .btp-ai h3 { color: var(--btp-p); margin: 16px 0 8px; }
.btp-ai h3 { font-size: 15px; }
.btp-ai p  { margin: 0 0 10px; }
.btp-ai ul, .btp-ai ol { padding-left: 22px; margin: 8px 0; }
.btp-ai li { margin-bottom: 6px; line-height: 1.7; }
.btp-ai strong { color: var(--btp-p); }
.btp-ai em { font-style: italic; color: #5a3a10; }
.btp-ai code { background: var(--btp-pl); color: var(--btp-p); padding: 2px 7px; border-radius: 5px; font-size: .9em; }
.btp-ai blockquote { border-left: 4px solid var(--btp-a); padding: 8px 16px; margin: 10px 0; background: var(--btp-al); border-radius: 0 8px 8px 0; }

.btp-err { color: #c00; }

/* Scrollbars */
.btp-msgs::-webkit-scrollbar, .btp-content::-webkit-scrollbar, .btp-sidebar::-webkit-scrollbar, .btp-practice-wrap::-webkit-scrollbar { width: 5px; }
.btp-msgs::-webkit-scrollbar-track, .btp-content::-webkit-scrollbar-track { background: transparent; }
.btp-msgs::-webkit-scrollbar-thumb, .btp-content::-webkit-scrollbar-thumb { background: var(--btp-bd); border-radius: 3px; }

/* Animations */
@keyframes btpFade   { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes btpSpin   { to { transform: rotate(360deg); } }
@keyframes btpBounce { 0%,80%,100% { transform: scale(0); } 40% { transform: scale(1); } }

/* Responsive */
@media (max-width: 650px) {
  .btp-sidebar { width: 155px; }
  .btp-brand-name { font-size: 17px; }
  .btp-tab { padding: 10px 12px; font-size: 13px; }
  .btp-quick-grid { grid-template-columns: 1fr; }
  .btp-panel { min-height: 520px; max-height: 520px; }
  .btp-fc-zone { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .btp-cur-wrap { flex-direction: column; }
  .btp-sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--btp-bd); display: flex; flex-wrap: wrap; gap: 5px; padding: 8px; }
  .btp-sec-btn { width: auto; font-size: 12px; padding: 7px 10px; }
  .btp-fc-zone { grid-template-columns: 1fr; }
}

/* Mic button */
.btp-mic {
  width: 42px; height: 42px;
  background: var(--btp-bg);
  border: 1.5px solid var(--btp-bd);
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.btp-mic:hover { background: var(--btp-pl); border-color: var(--btp-p); }
.btp-mic-on { background: #ff4444 !important; border-color: #cc0000 !important; color: white; font-size: 13px !important; width: 60px !important; }

/* TTS stop button – ensure it overrides */
.btp-tts-btn.btp-tts-on,
.btp-tts-btn.on {
  background: #b91c1c !important;
  border-color: #b91c1c !important;
  color: #ffffff !important;
}

/* Practice title */
.btp-practice-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--btp-p);
  margin: 0 0 12px;
}
