@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:ital,wght@1,400;1,500&family=Space+Grotesk:wght@500;700&display=swap');

:root{
  --bg:#f6efe8;
  --surface:#fffdf9;
  --surface-alt:#f7f1eb;
  --border:#ddd1c4;
  --border-strong:#bfae9e;
  --text:#171311;
  --text-soft:#5b4d43;
  --text-faint:#7a6a5f;
  --accent:#ff6b2c;
  --accent-soft:#ffe3d3;
  --danger:#dc2626;
  --danger-soft:#fee2e2;
  --success:#16a34a;
  --success-soft:#dcfce7;
  --shadow:0 18px 50px rgba(23,19,17,.06);
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:12px;
}

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

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  line-height:1.5;
}

.app-header{
  max-width:1360px;
  margin:0 auto;
  padding:34px 24px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  text-align:center;
}

.app-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  min-width:0;
}

.app-brand-copy{
  min-width:0;
  text-align:center;
}

.app-brand-avatar{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#fff;
}

.app-wordmark{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.7rem;
  font-weight:800;
  letter-spacing:-.03em;
  background:linear-gradient(90deg, #ff3131 0%, #ff914d 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1;
  margin:0;
}

.app-beta{
  display:block;
  font-family:'Inter',sans-serif;
  font-size:.62rem;
  font-weight:400;
  letter-spacing:.1em;
  color:#9b8b80;
  text-transform:lowercase;
  -webkit-text-fill-color:#9b8b80;
  line-height:1;
  margin-top:.55rem;
}

.app-header p{
  color:var(--text-soft);
  margin-top:.45rem;
  font-size:.96rem;
  line-height:1.45;
}

.mobile-only-break{
  display:none;
}

.powered-by-logo{
  height:44px;
  width:auto;
  max-width:min(300px, 44vw);
  object-fit:contain;
  flex-shrink:0;
}

.app-nav-wrap{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:rgba(246,239,232,.92);
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(8px);
}

.app-nav{
  max-width:1360px;
  margin:0 auto;
  padding:12px 24px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.nav-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:11px 16px;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text-soft);
  border-radius:999px;
  cursor:pointer;
  font:700 .82rem inherit;
  text-transform:uppercase;
  letter-spacing:.08em;
  transition:border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.nav-btn:hover{
  border-color:var(--border-strong);
  color:var(--text);
  transform:translateY(-1px);
}

.nav-btn.active{
  background:var(--text);
  border-color:var(--text);
  color:#fff;
}

.nav-badge{
  min-width:20px;
  padding:.12rem .42rem;
  border-radius:999px;
  font-size:.7rem;
  font-weight:700;
  text-align:center;
  background:rgba(15,23,42,.08);
  color:inherit;
  display:none;
}

.nav-btn.active .nav-badge{
  background:rgba(255,255,255,.18);
}

.nav-badge.show{
  display:inline-block;
}

.app-main{
  max-width:1360px;
  margin:0 auto;
  padding:28px 24px 56px;
}

.scripture-footer{
  width:100%;
  margin-top:-42px;
  border:none;
  background:transparent;
}

.scripture-footer-inner{
  max-width:1360px;
  margin:0 auto;
  padding:0 24px 18px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:transparent;
}

.scripture-text{
  display:block;
  width:100%;
  max-width:900px;
  margin:0 auto;
  color:var(--text-soft);
  font-family:'Montserrat', 'Inter', sans-serif;
  font-size:clamp(.96rem, 1.6vw, 1.24rem);
  font-style:italic;
  font-weight:400;
  letter-spacing:.01em;
  line-height:1.6;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .7s ease, transform .7s ease;
}

.scripture-text.is-visible{
  opacity:1;
  transform:translateY(0);
}

.scripture-powered-by{
  display:block;
  width:auto;
  height:34px;
  max-width:min(240px, 60vw);
  margin-top:12px;
  object-fit:contain;
}

.view{
  display:none;
}

.view.active{
  display:block;
}

.panel,
.form-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}

.panel{
  padding:24px;
  margin-bottom:22px;
}

.form-card{
  padding:26px;
  margin-bottom:22px;
}

.panel-header,
.section-hd{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.panel-header h2,
.form-card h2,
.section-hd{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.22rem;
  font-weight:700;
  letter-spacing:-.02em;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(360px, .95fr);
  gap:24px;
  align-items:start;
  margin-bottom:24px;
}

.hero-copy{
  padding:6px 2px;
}

.hero-eyebrow{
  color:var(--text-faint);
  font-size:.76rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:14px;
}

.hero-copy h2{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2.4rem, 5vw, 4.8rem);
  line-height:.95;
  letter-spacing:-.05em;
  max-width:10ch;
}

.hero-copy p{
  margin-top:18px;
  max-width:650px;
  font-size:1rem;
  color:var(--text-soft);
  line-height:1.8;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.hero-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow);
}

.hero-card span{
  display:block;
  color:var(--accent);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.hero-card strong{
  display:block;
  font-family:'Space Grotesk',sans-serif;
  font-size:1.15rem;
  margin-bottom:8px;
}

.hero-card p{
  color:var(--text-soft);
  font-size:.9rem;
  line-height:1.6;
}

.panel-subtitle{
  color:var(--text-soft);
  margin-bottom:18px;
  line-height:1.6;
}

.badge{
  padding:.18rem .55rem;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  background:var(--accent-soft);
  color:var(--accent);
}

.stats-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:14px;
  margin-bottom:22px;
}

.stat-card{
  background:var(--surface-alt);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:18px;
}

.stat-num{
  font-family:'Space Grotesk',sans-serif;
  font-size:2.1rem;
  font-weight:800;
  line-height:1;
}

.stat-label{
  margin-top:.45rem;
  color:var(--text-faint);
  font-size:.76rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.legend{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.legend-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--surface);
  color:var(--text-soft);
  font-size:.82rem;
}

.legend-dot{
  width:10px;
  height:10px;
  border-radius:999px;
}

.day-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.day-tab{
  padding:.55rem .9rem;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--surface);
  color:var(--text-soft);
  cursor:pointer;
  font:600 .84rem inherit;
}

.day-tab:hover{
  border-color:var(--border-strong);
  color:var(--text);
}

.day-tab.active{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.schedule-wrap{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--surface);
}

.schedule-table{
  width:100%;
  min-width:820px;
  border-collapse:collapse;
}

.schedule-table th{
  background:var(--surface-alt);
  color:var(--text-faint);
  padding:14px 14px;
  text-align:center;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  border-bottom:1px solid var(--border);
  white-space:nowrap;
  position:sticky;
  top:0;
  z-index:1;
}

.schedule-table th:first-child{
  left:0;
  z-index:3;
}

.schedule-table td{
  border-bottom:1px solid var(--border);
  border-right:1px solid var(--border);
  padding:10px;
  vertical-align:top;
}

.schedule-table td:last-child,
.schedule-table th:last-child{
  border-right:none;
}

.schedule-table tr:last-child td{
  border-bottom:none;
}

.time-cell{
  background:var(--surface-alt);
  min-width:88px;
  text-align:right;
  font-size:.78rem;
  font-weight:700;
  color:var(--text-faint);
  white-space:nowrap;
  position:sticky;
  left:0;
  z-index:2;
  box-shadow:1px 0 0 var(--border);
}

.booking-card{
  min-height:106px;
  padding:14px;
  border-radius:12px;
  border-left:4px solid transparent;
  cursor:pointer;
  transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.booking-card:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(23,19,17,.08);
}

.bk-code{
  font-size:.78rem;
  font-weight:700;
  margin-bottom:.25rem;
}

.bk-team{
  font-size:.72rem;
  color:var(--text-soft);
  line-height:1.45;
  margin-bottom:.25rem;
}

.bk-dir{
  font-size:.72rem;
  color:var(--text-faint);
}

.empty-cell{
  min-height:106px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed var(--border-strong);
  border-radius:12px;
  color:var(--text-faint);
  cursor:pointer;
  font-size:.8rem;
  font-weight:600;
  transition:border-color .15s ease, color .15s ease, background .15s ease;
}

.empty-cell:hover{
  background:var(--surface-alt);
  color:var(--text);
  border-color:var(--accent);
}

.c-gab{background:#eef2ff;border-left-color:#4f46e5}
.c-gab .bk-code{color:#4f46e5}
.c-gam{background:#ecfeff;border-left-color:#0891b2}
.c-gam .bk-code{color:#0891b2}
.c-gf{background:#f0fdf4;border-left-color:#16a34a}
.c-gf .bk-code{color:#16a34a}
.c-gpp{background:#fff7ed;border-left-color:#ea580c}
.c-gpp .bk-code{color:#ea580c}
.c-ia{background:#fef2f2;border-left-color:#dc2626}
.c-ia .bk-code{color:#dc2626}

.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:14px;
}

.video-pill{
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--surface);
  padding:16px;
  cursor:pointer;
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
}

.video-pill:hover{
  border-color:var(--accent);
  background:var(--surface-alt);
  transform:translateY(-1px);
}

.pill-code{
  font-weight:700;
  font-size:.85rem;
}

.pill-team{
  color:var(--text-soft);
  font-size:.74rem;
  margin-top:.25rem;
}

.pill-studio{
  color:var(--text-faint);
  font-size:.72rem;
  margin-top:.18rem;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.fg{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.fg.full{
  grid-column:1 / -1;
}

.fl{
  color:var(--text-faint);
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.fi,
.fs,
.fta,
.sel-person{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border-strong);
  border-radius:var(--radius-sm);
  background:var(--surface);
  color:var(--text);
  font:500 .92rem inherit;
}

.fi:focus,
.fs:focus,
.fta:focus,
.sel-person:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.fta{
  min-height:100px;
  resize:vertical;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 15px;
  border-radius:10px;
  border:1px solid transparent;
  cursor:pointer;
  font:700 .85rem inherit;
  letter-spacing:.02em;
  text-decoration:none;
}

.btn-primary{
  background:var(--text);
  color:#fff;
}

.btn-primary:hover{
  background:var(--accent);
}

.btn-secondary{
  background:var(--surface);
  border-color:var(--border);
  color:var(--text-soft);
}

.btn-secondary:hover{
  background:var(--surface-alt);
}

.btn-danger{
  background:var(--danger-soft);
  color:var(--danger);
}

.btn-danger:hover{
  background:#fecaca;
}

.msg{
  margin-top:10px;
  min-height:1.2em;
  font-size:.84rem;
  font-weight:600;
}

.cb-group{
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  max-height:180px;
  overflow-y:auto;
  padding:10px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--surface-alt);
}

.cb-label{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 8px;
  border-radius:8px;
  font-size:.82rem;
  cursor:pointer;
}

.cb-label:hover{
  background:#eef2f7;
}

.cb-label input{
  accent-color:var(--accent);
}

.recorded-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 13px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--surface-alt);
}

.recorded-row input{
  accent-color:var(--success);
  width:18px;
  height:18px;
}

.recorded-row label{
  color:var(--success);
  font-size:.9rem;
  font-weight:600;
  cursor:pointer;
}

.info-card{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--surface-alt);
  color:var(--text-soft);
  line-height:1.6;
}

.info-card.empty{
  color:var(--text-faint);
}

.info-card strong{
  color:var(--text);
}

.muted{
  color:var(--text-faint);
}

.text-cell{
  max-width:280px;
  color:var(--text-soft);
  line-height:1.6;
  white-space:normal;
}

.agenda-top{
  display:flex;
  gap:12px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.agenda-empty{
  text-align:center;
  padding:56px 24px;
  color:var(--text-faint);
}

.agenda-empty .icon{
  font-size:2.4rem;
  margin-bottom:10px;
}

.agenda-person-info{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
  font-size:.9rem;
}

.role-tag{
  display:inline-block;
  padding:.22rem .6rem;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
}

.rt-dir{background:#ede9fe;color:#7c3aed}
.rt-ad{background:#dbeafe;color:#1d4ed8}
.rt-pres{background:#dcfce7;color:#15803d}
.rt-crew{background:#fef9c3;color:#854d0e}

.agenda-day-hd{
  color:var(--text-faint);
  font-size:.76rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  padding-bottom:8px;
  margin:20px 0 12px;
  border-bottom:1px solid var(--border);
}

.agenda-item{
  display:grid;
  grid-template-columns:76px 1fr auto;
  gap:14px;
  align-items:start;
  padding:16px 18px;
  margin-bottom:14px;
  border:1px solid var(--border);
  border-left:4px solid;
  border-radius:var(--radius-md);
  background:var(--surface);
}

.ag-item-conflict{
  background:#fff7ed;
  box-shadow:0 0 0 1px #fdba74 inset;
}

.ag-time{
  font-size:1rem;
  font-weight:700;
}

.ag-tbc{
  font-size:.72rem;
  color:var(--text-faint);
  font-weight:500;
}

.ag-code{
  font-size:.8rem;
  font-weight:700;
  margin-bottom:.18rem;
}

.ag-project{
  font-size:.9rem;
  font-weight:700;
  margin-bottom:.2rem;
}

.ag-studio{
  color:var(--text-soft);
  font-size:.8rem;
}

.ag-props,
.ag-notes,
.ag-crew{
  font-size:.75rem;
  line-height:1.55;
  margin-top:.3rem;
}

.ag-props,
.ag-notes{
  color:var(--text-faint);
}

.ag-crew{
  color:var(--text-soft);
}

.conflict-card{
  border:1px solid #fecaca;
  border-radius:var(--radius-md);
  background:#fef2f2;
  padding:16px;
  margin-bottom:12px;
}

.conflict-card.studiodc{
  background:#fff7ed;
  border-color:#fed7aa;
}

.cf-header{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
  color:var(--danger);
  font-size:.88rem;
  font-weight:700;
}

.cf-header.studio-c{
  color:#ea580c;
}

.cf-detail{
  color:var(--text-soft);
  font-size:.84rem;
  line-height:1.6;
}

.cf-detail strong{
  color:var(--text);
}

.personnel-toolbar{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.per-table{
  width:100%;
  min-width:540px;
  border-collapse:collapse;
}

.per-table th{
  text-align:left;
  padding:12px;
  font-size:.72rem;
  font-weight:700;
  color:var(--text-faint);
  text-transform:uppercase;
  letter-spacing:.06em;
  border-bottom:1px solid var(--border);
}

.per-table td{
  padding:12px;
  font-size:.88rem;
  border-bottom:1px solid var(--border);
  vertical-align:middle;
}

.per-table tr:last-child td{
  border-bottom:none;
}

.per-actions{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}

.per-btn{
  padding:7px 10px;
  border:none;
  border-radius:8px;
  font:600 .76rem inherit;
  cursor:pointer;
}

.per-edit{
  background:#e0e7ff;
  color:#4f46e5;
}

.per-del{
  background:var(--danger-soft);
  color:var(--danger);
}

.modal-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.32);
  z-index:40;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.modal-overlay.open{
  display:flex;
}

.modal{
  width:100%;
  max-width:500px;
  max-height:90vh;
  overflow-y:auto;
  padding:24px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:var(--surface);
  box-shadow:0 24px 60px rgba(15,23,42,.18);
}

.modal-hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.modal-hd h3{
  font-size:1.1rem;
  font-weight:700;
}

.modal-x{
  width:34px;
  height:34px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--surface);
  color:var(--text-faint);
  font-size:1.2rem;
  line-height:1;
  cursor:pointer;
}

.modal-x:hover{
  color:var(--text);
  background:var(--surface-alt);
}

.md-row{
  margin-bottom:12px;
}

.md-label{
  color:var(--text-faint);
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:3px;
}

.md-value{
  color:var(--text);
  font-size:.9rem;
  line-height:1.6;
}

@media (max-width:860px){
  .app-nav{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    padding-bottom:8px;
  }

  .app-nav::-webkit-scrollbar{
    display:none;
  }

  .nav-btn{
    flex:0 0 auto;
    white-space:nowrap;
    scroll-snap-align:start;
  }

  .hero{
    grid-template-columns:1fr;
  }

  .hero-copy h2{
    max-width:none;
  }

  .hero-grid{
    grid-template-columns:1fr 1fr;
  }

  .form-grid,
  .agenda-item{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .app-header,
  .app-nav,
  .app-main,
  .scripture-footer-inner{
    padding-left:16px;
    padding-right:16px;
  }

  .app-header{
    flex-direction:column;
    align-items:center;
  }

  .app-brand{
    align-items:center;
    gap:10px;
  }

  .app-brand-avatar{
    width:72px;
    height:72px;
    border-radius:20px;
  }

  .app-brand-copy{
    padding-top:0;
    text-align:center;
  }

  .app-wordmark{
    font-size:1.45rem;
  }

  .app-beta{
    font-size:.58rem;
    margin-top:.45rem;
  }

  .app-header p{
    font-size:.92rem;
    max-width:210px;
  }

  .mobile-only-break{
    display:block;
  }

  .powered-by-logo{
    height:36px;
    max-width:240px;
  }

  .nav-btn{
    padding:12px 14px;
    font-size:.78rem;
  }

  .hero{
    gap:18px;
    margin-bottom:20px;
  }

  .hero-copy h2{
    font-size:clamp(2rem, 11vw, 3rem);
    line-height:.98;
  }

  .hero-copy p{
    font-size:.95rem;
    line-height:1.65;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-card,
  .stat-card{
    padding:16px;
  }

  .stats-bar{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .panel,
  .form-card,
  .modal{
    padding:16px;
  }

  .panel{
    overflow:hidden;
  }

  .schedule-table{
    min-width:700px;
  }

  .video-grid{
    grid-template-columns:1fr;
  }

  .fi,
  .fs,
  .fta,
  .sel-person{
    min-height:46px;
    font-size:16px;
  }

  .fta{
    min-height:120px;
  }

  .cb-group{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    max-height:220px;
  }

  .cb-label{
    min-height:44px;
    padding:10px 12px;
  }

  .recorded-row{
    align-items:flex-start;
  }

  .btn-row{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .personnel-toolbar{
    align-items:stretch;
  }

  .personnel-toolbar > input,
  .personnel-toolbar > div,
  .personnel-toolbar > button{
    width:100%;
    max-width:none !important;
  }

  .agenda-item{
    gap:10px;
    padding:14px;
  }

  .per-actions{
    flex-direction:column;
  }

  .scripture-footer-inner{
    padding-top:18px;
    padding-bottom:24px;
  }

  .scripture-text{
    font-size:.92rem;
    line-height:1.6;
  }
}
