:root {
  --navy: #224462;
  --navy-light: #2d5b85;
  --blue-brand: #0075bd;
  --orange: #ff7017;
  --orange-light: #ff9449;
  --orange-bg: #fff1e6;
  --cream: #f5f6f8;
  --ink: #2c2c2c;
  --muted: #4d4d4d;
  --border: #dde1e6;
  --green: #2e7d4f;
  --green-bg: #e8f4ec;
  --blue: #0075bd;
  --blue-bg: #e3f0fa;
  --red: #b3261e;
  --red-bg: #fbe8e6;
  --purple: #7a3ea1;
  --purple-bg: #f3eaf7;
  --shadow: 0 4px 16px rgba(34, 68, 98, 0.08);
  --shadow-lg: 0 12px 32px rgba(34, 68, 98, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}

.banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 30px 32px 48px;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 112, 23, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-chip {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.user-chip .avatar, .avatar {
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.link-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
}
.link-btn:hover { background: rgba(255, 255, 255, 0.1); }
.banner-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.badge-top {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h1 { font-size: 38px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.tagline { font-size: 17px; opacity: 0.85; max-width: 720px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px 60px; }
.next-session {
  background: white;
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: -28px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--orange);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.next-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--orange); text-transform: uppercase; margin-bottom: 6px; }
.next-title { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.next-meta { color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.next-meta strong { color: var(--ink); }
.host-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-bg);
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}
.host-line .avatar { width: 22px; height: 22px; background: var(--orange); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px; }
.next-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 8px; border: none; font-weight: 600; font-size: 14px; cursor: pointer; text-decoration: none; transition: all 0.15s ease; font-family: inherit; white-space: nowrap; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--navy); }
.btn-orange:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-danger { background: var(--red-bg); color: var(--red); }
.btn-danger:hover { background: #f5c9c5; }
.btn-success { background: var(--green-bg); color: var(--green); }
.btn-success:hover { background: #d2ebd9; }
.btn-small { padding: 7px 12px; font-size: 13px; }
.info-panels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 24px; }
.info-card { background: white; border-radius: 12px; padding: 22px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--orange); }
.info-card.blue { border-top-color: var(--blue-brand); }
.info-card.navy { border-top-color: var(--navy); }
.info-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.info-card ul { padding-left: 20px; font-size: 14px; color: var(--muted); }
.info-card li { margin-bottom: 6px; line-height: 1.5; }
.info-card code { background: var(--cream); padding: 1px 6px; border-radius: 4px; font-size: 12px; color: var(--navy); }
.progress-card .progress-bar { width: 100%; height: 10px; background: var(--cream); border-radius: 6px; overflow: hidden; margin: 10px 0 6px; }
.progress-card .progress-bar .fill { height: 100%; background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%); border-radius: 6px; transition: width 0.3s ease; }
.roster-card .roster-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.roster-card .roster-row:last-child { border-bottom: none; }
.roster-card .date-tag { background: var(--navy); color: white; text-align: center; padding: 4px 6px; border-radius: 6px; font-weight: 700; font-size: 11px; line-height: 1.2; }
.controls { display: flex; gap: 12px; margin: 40px 0 16px; flex-wrap: wrap; align-items: center; }
.search-box { flex: 1; min-width: 240px; position: relative; }
.search-box input { width: 100%; padding: 12px 16px 12px 42px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; background: white; transition: border-color 0.15s; }
.search-box input:focus { outline: none; border-color: var(--navy); }
.search-box::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d4d4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>") no-repeat center; }
.filter-group { display: flex; gap: 6px; background: white; padding: 4px; border-radius: 10px; border: 1.5px solid var(--border); flex-wrap: wrap; }
.filter-btn { padding: 8px 14px; border: none; background: transparent; font-size: 13px; font-weight: 600; color: var(--muted); border-radius: 6px; cursor: pointer; font-family: inherit; }
.filter-btn.active { background: var(--navy); color: white; }
.tag-bar { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 24px; }
.tag-chip { padding: 6px 12px; background: white; border: 1.5px solid var(--border); border-radius: 20px; cursor: pointer; font-size: 12px; font-weight: 600; color: var(--muted); font-family: inherit; transition: all 0.15s; }
.tag-chip:hover { border-color: var(--navy); color: var(--navy); }
.tag-chip.active { background: var(--navy); color: white; border-color: var(--navy); }
.section-title { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.card { background: white; border-radius: 12px; padding: 20px 22px; box-shadow: var(--shadow); transition: all 0.18s ease; display: flex; flex-direction: column; position: relative; border: 1.5px solid transparent; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.card.is-next { border-color: var(--orange); background: linear-gradient(180deg, #fff1e6 0%, #ffffff 60%); }
.card.is-recorded { border-color: var(--green-bg); }
.card.is-watched { opacity: 0.85; }
.watched-tick { position: absolute; top: 14px; right: 14px; width: 24px; height: 24px; background: var(--green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; box-shadow: 0 2px 6px rgba(46, 125, 79, 0.3); }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.card-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 1px; }
.status { font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 9px; border-radius: 4px; text-transform: uppercase; white-space: nowrap; }
.status-recorded { background: var(--green-bg); color: var(--green); }
.status-next { background: var(--orange-bg); color: var(--orange); }
.status-pending { background: var(--blue-bg); color: var(--blue); }
.status-suggested { background: var(--purple-bg); color: var(--purple); }
.card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; padding-right: 30px; }
.card-desc { font-size: 14px; color: var(--muted); margin-bottom: 12px; flex-grow: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.card-tag { font-size: 10px; padding: 3px 8px; background: var(--cream); color: var(--muted); border-radius: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.card-meta { font-size: 12px; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.card-meta strong { color: var(--ink); }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.vote-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; background: white; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; font-family: inherit; transition: all 0.15s; }
.vote-btn:hover { border-color: var(--orange); background: #fff1e6; }
.vote-btn.voted { background: var(--orange); border-color: var(--orange); color: var(--navy); }
.vote-count { background: var(--navy); color: white; font-size: 11px; padding: 2px 7px; border-radius: 10px; font-weight: 700; min-width: 20px; text-align: center; }
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(34, 68, 98, 0.75); z-index: 100; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.active { display: flex; }
.modal { background: white; border-radius: 14px; padding: 32px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); position: relative; }
.modal.wide { max-width: 960px; }
.modal-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.modal-sub { color: var(--muted); margin-bottom: 20px; font-size: 14px; }
.video-wrap { background: #000; border-radius: 10px; aspect-ratio: 16 / 9; margin-bottom: 18px; overflow: hidden; }
.video-wrap video, .video-wrap iframe { width: 100%; height: 100%; border: 0; }
.no-video { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: white; font-size: 15px; padding: 20px; text-align: center; flex-direction: column; gap: 10px; }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: var(--cream); border: none; border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--navy); }
.modal-close:hover { background: var(--border); }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; background: white; }
.form-row textarea { min-height: 80px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 20px; overflow-x: auto; }
.tab { padding: 12px 18px; border: none; background: transparent; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; font-family: inherit; white-space: nowrap; }
.tab.active { color: var(--navy); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.staff-row { display: grid; grid-template-columns: 1fr 1fr 100px 120px auto; gap: 10px; padding: 12px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; align-items: center; font-size: 13px; }
.staff-row .admin-badge { background: var(--navy); color: white; font-size: 10px; padding: 2px 8px; border-radius: 10px; margin-left: 4px; }
.resource-row, .comment-row { padding: 12px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; background: white; }
.comment-row { background: var(--cream); border: none; }
.comment-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12px; color: var(--muted); }
.comment-meta strong { color: var(--navy); font-size: 13px; }
.comment-text { font-size: 14px; color: var(--ink); white-space: pre-wrap; }
.resource-link { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.resource-link a { color: var(--blue); text-decoration: none; font-weight: 600; font-size: 14px; }
.resource-link a:hover { text-decoration: underline; }
.empty-state { text-align: center; padding: 40px 20px; color: var(--muted); font-size: 14px; }
.admin-note { background: white; border-radius: 12px; padding: 20px 24px; margin-top: 40px; border-left: 4px solid var(--navy); font-size: 14px; color: var(--muted); }
.admin-note strong { color: var(--navy); }
.stats { display: flex; gap: 24px; margin-top: 14px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 28px; font-weight: 700; color: white; }
.stat-label { font-size: 12px; opacity: 0.75; text-transform: uppercase; letter-spacing: 1px; }
.helper-text { font-size: 12px; color: var(--muted); margin-top: 4px; }
.alert { padding: 12px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.alert-info { background: var(--blue-bg); color: var(--navy); border-left: 4px solid var(--blue-brand); }
.alert-orange { background: var(--orange-bg); color: var(--navy); border-left: 4px solid var(--orange); }
.alert-success { background: var(--green-bg); color: var(--green); border-left: 4px solid var(--green); }
h4 { color: var(--navy); margin-bottom: 10px; font-size: 14px; }
.brand-footer { display: flex; flex-direction: column; align-items: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border); gap: 10px; }
.brand-footer img { height: 80px; width: auto; opacity: 0.9; }
.brand-footer .small { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* Glossary */
.glossary-controls { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.glossary-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 12px; }
.glossary-entry {
  background: white;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--blue-brand);
  position: relative;
}
.glossary-term { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.glossary-short { font-size: 13px; color: var(--muted); line-height: 1.5; }
.glossary-aliases { font-size: 11px; color: var(--blue-brand); font-style: italic; margin-top: 4px; }
.glossary-edit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}
.glossary-entry:hover .glossary-edit-btn { opacity: 1; }
.glossary-edit-btn:hover { background: var(--cream); color: var(--navy); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--orange);
  overflow: hidden;
  transition: all 0.15s ease;
}
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-question {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question::after {
  content: "+";
  font-size: 22px;
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.faq-item.open .faq-answer { display: block; }
.faq-meta {
  padding: 0 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.faq-item:not(.open) .faq-meta { display: none; }
.faq-tags { display: flex; gap: 4px; flex-wrap: wrap; }

/* Resources Library */
.resources-library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.resource-lib-card {
  background: white;
  border-radius: 12px;
  padding: 18px 20px 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  transition: all 0.18s ease;
  position: relative;
}
.resource-lib-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.resource-lib-card.type-cheat-sheet { border-left-color: var(--orange); }
.resource-lib-card.type-template { border-left-color: var(--purple); }
.resource-lib-card.type-document { border-left-color: var(--blue-brand); }
.resource-lib-card.type-link { border-left-color: var(--green); }
.resource-lib-card.type-reference { border-left-color: var(--navy); }
.resource-lib-card.type-video { border-left-color: var(--red); }
.resource-lib-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.resource-type-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--muted);
  white-space: nowrap;
}
.resource-lib-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 6px; padding-right: 30px; }
.resource-lib-desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; flex-grow: 1; line-height: 1.5; }
.resource-lib-actions { display: flex; gap: 6px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--border); }
.resource-lib-edit-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}
.resource-lib-edit-btn:hover { background: var(--cream); color: var(--navy); }

/* Experts */
.experts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.expert-card {
  background: white;
  border-radius: 12px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue-brand);
  display: flex;
  flex-direction: column;
  transition: all 0.18s ease;
  position: relative;
}
.expert-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.expert-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.expert-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue-brand));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.expert-name { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.expert-title { font-size: 12px; color: var(--blue-brand); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px; }
.expert-company { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.expert-desc { font-size: 14px; color: var(--ink); margin-bottom: 12px; flex-grow: 1; line-height: 1.5; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.expert-contact { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 10px; border-top: 1px solid var(--border); }
.expert-contact a {
  text-decoration: none;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.expert-contact a:hover { background: var(--orange-bg); color: var(--orange); }
.expert-edit-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
}
.expert-edit-btn:hover { background: var(--cream); color: var(--navy); }

/* Section titles - hosts + trailing add button */
.section-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.section-title-only-admin { display: none; }
body.is-admin .section-title-only-admin { display: inline-flex; }

@media (max-width: 900px) {
  .info-panels { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .banner { padding: 20px 20px 44px; }
  h1 { font-size: 26px; }
  .container { padding: 0 20px 40px; }
  .next-session { grid-template-columns: 1fr; padding: 22px; }
  .staff-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .card { padding: 18px; }
}
