@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root{
  --font-sans:"Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --bg:#f8fafc;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e2e8f0;
  --primary:#85152b;
  --primaryText:#ffffff;
  --chip:#f1f5f9;
  --shadow: 0 10px 30px rgba(2,6,23,.06);
  --radius: 18px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
select,
textarea,
label{
  font-family:var(--font-sans);
  letter-spacing:0;
}

h1,
h2,
h3,
h4,
h5,
h6{
  font-weight:800;
}

p{
  font-weight:400;
}

strong,
b{
  font-weight:800;
}

.auth-page{
  min-height:100vh;
  background:
    radial-gradient(1200px 500px at -10% -20%, rgba(122,21,20,.18), transparent 60%),
    radial-gradient(900px 420px at 110% -10%, rgba(15,23,42,.18), transparent 60%),
    linear-gradient(180deg, #f7f3f2, #f9fafb 60%, #f4f6f8);
  font-family:var(--font-sans);
}
.auth-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:48px 18px;
}
.auth-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.auth-col{
  min-width:0;
}
@media (max-width: 900px){
  .auth-row{
    grid-template-columns: 1fr;
  }
}
.auth-hero{ grid-area: hero; }
.auth-card{ grid-area: card; }
.auth-lang{
  grid-area: lang;
  justify-self:start;
  align-self:start;
  margin-bottom:6px;
}
.auth-wrap.auth-lang-right .auth-lang{
  justify-self:end;
}
.auth-hero{
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px;
  background:linear-gradient(135deg, #fff5f5, #ffffff 55%, #f9fafb);
  box-shadow:var(--shadow);
  min-height:100%;
}
.auth-register .auth-hero{
  min-height:auto;
}
.auth-hero .tag{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(122,21,20,.08);
  color:#85152b;
  font-weight:700;
  font-size:12px;
  border:1px solid rgba(122,21,20,.2);
}
.auth-hero h1{
  font-size:30px;
  margin:14px 0 8px;
}
.auth-hero .lead{
  color:#4b5563;
  line-height:1.6;
}
.auth-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.auth-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14px;
  color:#334155;
}
.auth-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  margin-top:6px;
  background:#85152b;
}
.auth-card{
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
  background:#ffffff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content:center;
}
.auth-card .sub{
  color:var(--muted);
  font-size:13px;
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.form-span{ grid-column: 1 / -1; }
@media (max-width: 700px){
  .form-grid{ grid-template-columns: 1fr; }
}
.auth-divider{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.8px;
}
.auth-divider::before,
.auth-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--border);
}
.sso-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#ffffff;
  cursor:pointer;
  font-weight:700;
  color:#0f172a;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.sso-btn:hover{
  background:#f8fafc;
  box-shadow:0 10px 20px rgba(15,23,42,.08);
  transform:translateY(-1px);
}
.sso-btn:focus-visible{
  outline:3px solid rgba(117,23,22,.25);
  outline-offset:2px;
}
.sso-btn .icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.sso-btn.google{ border-color:#e5e7eb; }
.sso-btn.microsoft{ border-color:#e5e7eb; }
.sso-btn.facebook{
  background:#1877f2;
  border-color:#1877f2;
  color:#ffffff;
}
.sso-btn.facebook:hover{ background:#166fe5; }
.sso-btn.linkedin{
  background:#0a66c2;
  border-color:#0a66c2;
  color:#ffffff;
}
.sso-btn.linkedin:hover{ background:#0a5db6; }
.auth-page .sso-btn{
  width:100%;
  min-height:48px;
}
.container{ max-width:1100px; margin:0 auto; padding:28px 18px; }
.topbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.brand{ font-weight:800; letter-spacing:.2px; text-decoration:none; color:var(--text); }
.nav a{
  text-decoration:none;
  color:var(--text);
  margin-left:10px;
}
.nav a.menu-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--chip);
  border:1px solid var(--border);
  font-weight:700;
}
.nav a.menu-item:hover{ background:#eef2f6; }
.nav a.menu-item .icon{
  width:16px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.nav a.menu-item .icon svg{
  width:16px;
  height:16px;
  stroke:var(--primary);
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.narrow{ max-width:420px; margin:80px auto; }

.h1{ font-size:22px; font-weight:800; }
.h2{ font-size:14px; font-weight:800; }
.muted{ color:var(--muted); }
.small{ font-size:12px; }
.req{ color:#b91c1c; font-weight:800; }
.spacer{ height:12px; }

.filters{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
input, select{
  width:100%;
  max-width: 420px;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  outline:none;
  font-size:14px;
}
select.sector-select{
  max-width:none;
  min-height:140px;
  background:#fcfcfd;
}
input.form-check-input{
  width:16px;
  height:16px;
  max-width:none;
  padding:0;
  border-radius:50%;
}
input.form-check-input[type="checkbox"]{
  border-radius:4px;
}
textarea{
  border:1px solid var(--border);
  border-radius:14px;
  padding:11px 12px;
  font-size:14px;
  outline:none;
}
.btn{
  background:var(--primary);
  color:var(--primaryText);
  border:none;
  border-radius:16px;
  padding:12px 16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover{
  opacity:.95;
  box-shadow:0 10px 20px rgba(15,23,42,.1);
  transform:translateY(-1px);
}
.btn:focus-visible{
  outline:3px solid rgba(117,23,22,.3);
  outline-offset:2px;
}
.auth-page .btn.block{
  min-height:50px;
}
.btn.block{ width:100%; }
.btn.small{ padding:8px 10px; border-radius:12px; font-size:12px; }

.grid{
  margin-top:18px;
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 900px){ .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px){ .grid{ grid-template-columns: 1fr; } }

.mentor-card{
  text-decoration:none;
  color:inherit;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.mentor-card:hover{ transform: translateY(-1px); }

.row{ display:flex; justify-content:space-between; gap:10px; }
.mentor-info{ display:flex; gap:12px; align-items:center; }
.avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid var(--border);
  background:var(--chip);
  display:block;
}
.avatar.placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#334155;
}
.name{ font-weight:800; }
.headline{ color:var(--muted); font-size:13px; margin-top:4px; }
.meta{ color:var(--muted); font-size:12px; margin-top:6px; }
.rate{ background:var(--chip); padding:6px 10px; border-radius:999px; font-size:12px; font-weight:800; align-self:flex-start; }

.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.chip{ background:var(--chip); padding:6px 10px; border-radius:999px; font-size:12px; font-weight:700; color:#1f2937; }
.skills-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.skills-accordion{
  display:grid;
  gap:10px;
}
.skills-accordion details{
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  padding:8px 10px;
}
.skills-accordion summary{
  cursor:pointer;
  list-style:none;
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(117,23,22,0.08);
  border:1px solid rgba(117,23,22,0.18);
  border-radius:10px;
  padding:8px 10px;
  margin:-2px -2px 6px -2px;
}
.skills-accordion summary::-webkit-details-marker{ display:none; }
.skills-accordion summary::after{
  content:"+";
  font-size:14px;
}
.skills-accordion details[open] summary::after{ content:"-"; }
.skills-accordion .skill-option{
  margin-top:6px;
}
.skills-accordion .skill-list{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:6px 12px;
}
.skills-group{
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  padding:10px;
}
.skills-title{
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:8px;
}
.skill-option{
  display:flex;
  gap:8px;
  align-items:flex-start;
  padding:6px 8px;
  border-radius:8px;
  border:1px solid transparent;
  font-size:12px;
}
.skill-option:hover{
  background:#f8fafc;
  border-color:var(--border);
}
.skill-option input{
  margin-top:2px;
}

.layout{
  display:grid;
  gap:14px;
  grid-template-columns: 390px 1fr;
}
@media (max-width: 900px){ .layout{ grid-template-columns: 1fr; } }

.kv{ display:flex; justify-content:space-between; gap:12px; padding:8px 0; border-bottom:1px dashed var(--border); }
.k{ color:var(--muted); font-size:12px; }
.v{ font-size:12px; font-weight:700; }

.para{ margin:10px 0 0; color:#334155; line-height:1.6; }

.slots{ margin-top:10px; display:flex; flex-direction:column; gap:10px; }
.slot{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.slot-time{ font-size:12px; color:#334155; }
.slot-actions{ display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.error{
  margin-top:10px;
  border:1px solid var(--border);
  background:#fff7ed;
  color:#9a3412;
  padding:10px;
  border-radius:14px;
  font-size:12px;
}
.success{
  margin-top:10px;
  border:1px solid #bbf7d0;
  background:#f0fdf4;
  color:#166534;
  padding:10px;
  border-radius:14px;
  font-size:12px;
}
.badge{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:var(--chip);
}
.notif-wrapper{ position:relative; }
.notif-bell{
  position:relative;
  width:32px;
  height:32px;
  border-radius:10px;
  border:1px solid #85152b;
  background:#85152b;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.notif-bell svg{ width:16px; height:16px; stroke:#fff; }
.notif-count{
  position:absolute;
  top:3px;
  right:3px;
  min-width:16px;
  height:16px;
  background:#ef4444;
  color:#fff;
  font-size:10px;
  font-weight:800;
  border-radius:999px;
  padding:0 4px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.notif-title{ font-size:12px; font-weight:800; }
.notif-empty{ font-size:12px; color:var(--muted); }
.notif-item{
  border:1px solid var(--border);
  border-radius:10px;
  padding:10px;
  margin-bottom:10px;
  text-decoration:none;
  color:inherit;
  display:block;
}
.notif-item.read{
  background:#f8fafc;
  opacity:.8;
}
.notif-link{
  color:inherit;
  text-decoration:none;
}
.notif-item-actions{
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.notif-read-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  background:var(--chip);
  border:1px solid var(--border);
  color:#1f2937;
}
.notif-item-title{ font-size:12px; font-weight:800; }
.notif-item-body{ font-size:11px; color:var(--muted); margin-top:4px; }
.notif-item-time{ font-size:10px; color:var(--muted); margin-top:4px; }
.notif-page-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.notif-summary{
  font-size:12px;
  color:var(--muted);
}
.notif-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:6px;
}
.notif-pill{
  font-size:10px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  background:var(--chip);
  border:1px solid var(--border);
  color:#1f2937;
}
.pager{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}
.pager a{
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  color:var(--primary);
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:10px;
  background:#fff;
}
.pager a.disabled{
  color:var(--muted);
  pointer-events:none;
  background:#f8fafc;
}
.status-pill{
  display:inline-flex;
  align-items:center;
  padding:3px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.4px;
  border:1px solid transparent;
}
.status-active{
  background:#dcfce7;
  color:#166534;
  border-color:#bbf7d0;
}
.status-pending{
  background:#fef9c3;
  color:#854d0e;
  border-color:#fde68a;
}
.status-rejected{
  background:#fee2e2;
  color:#991b1b;
  border-color:#fecaca;
}

.admin-page{
  margin:0;
  background:#f5f3f1;
  height:100vh;
  overflow:hidden;
  font-family:var(--font-sans);
}
.admin-shell{
  height:100vh;
  min-height:100vh;
  display:block;
  overflow:hidden;
}
@media (max-width: 980px){
  .admin-page{
    height:auto;
    overflow:visible;
  }
  .admin-shell{
    height:auto;
    overflow:visible;
  }
}
.admin-sidebar{
  background:#fffdfb;
  color:#111827;
  padding:20px 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  width:292px;
  height:100vh;
  overflow-y:auto;
  border-right:1px solid var(--gmt-line, #e7ddd8);
}
.admin-menu-toggle{
  width:100%;
  text-align:left;
}
.admin-sidebar-brand{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:18px;
  border-bottom:1px solid var(--gmt-line, #e7ddd8);
}
.admin-logo{
  width:72px;
  height:54px;
  border-radius:8px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:5px;
}
.admin-logo-img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.admin-brand-title{ font-weight:800; font-size:13px; }
.admin-brand-sub{ font-size:11px; color:#6b7280; }
.admin-menu{
  display:grid;
  gap:4px;
}
@media (min-width: 992px){
  .admin-menu.collapse{
    display:grid !important;
    height:auto !important;
    visibility:visible;
  }
}
.admin-menu-item{
  position:relative;
  text-decoration:none;
  color:#342f31;
  padding:12px 14px 12px 16px;
  border-radius:8px;
  border:1px solid transparent;
  font-size:.88rem;
  font-weight:750;
  line-height:1.25;
}
.admin-menu-item:hover,
.admin-menu-item.active{
  background:#f7f1ee;
  color:var(--gmt-maroon, #85152b);
  border-color:#eadbd5;
}
.admin-menu-item.active::before{
  content:"";
  position:absolute;
  left:6px;
  top:10px;
  bottom:10px;
  width:4px;
  border-radius:8px;
  background:var(--gmt-maroon, #85152b);
}
.admin-side-card{
  background:#fff8ef;
  border:1px solid #eed7bf;
  border-radius:8px;
  padding:12px;
  color:#111827;
  display:grid;
  gap:8px;
}
.admin-side-links{
  display:grid;
  gap:6px;
}
.admin-side-links a{
  color:#85152b;
  font-size:12px;
  text-decoration:none;
  font-weight:700;
}
.admin-main{
  padding:30px 32px;
  margin-left:292px;
  height:100vh;
  overflow-y:auto;
  overflow-x:hidden;
}
@media (max-width: 980px){
  .admin-main{
    margin-left:0;
    height:auto;
    overflow:visible;
  }
  .admin-sidebar{
    position:static;
    width:auto;
    height:auto;
    left:auto;
    bottom:auto;
    overflow:visible;
  }
}
.admin-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}
.admin-topbar-main{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.admin-account-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:1px solid #e2e8f0;
  border-radius:999px;
  background:#fff;
  font-size:12px;
  color:#475569;
}
.admin-account-chip strong{
  color:#111827;
}
.admin-topbar > .notif-wrapper{
  order:1;
  margin-left:auto;
}
.admin-topbar > .admin-top-actions{
  order:2;
}
.lang-switcher select{
  border:1px solid #e2e8f0;
  border-radius:8px;
  padding:10px 12px;
  font-size:.88rem;
  background:#fff;
  color:#1f2937;
}
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-gadget,
.goog-te-menu-frame,
.goog-te-menu2,
.goog-te-spinner-pos,
.goog-logo-link,
.skiptranslate{
  display:none !important;
}
body{ top:0 !important; }
.admin-top-title{
  color:var(--gmt-burgundy, #4f111f);
  font-size:clamp(1.8rem, 3vw, 2.8rem);
  line-height:1.08;
  font-weight:800;
}
.admin-top-actions{ display:flex; gap:8px; align-items:center; }
.admin-top-actions.stack{
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

.admin-content{ display:grid; gap:12px; }

.admin-wrap{
  display:grid;
  gap:16px;
  grid-template-columns: 260px 1fr;
  align-items:start;
}
@media (max-width: 900px){
  .admin-wrap{ grid-template-columns: 1fr; }
}
.admin-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.admin-link{
  text-decoration:none;
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#f8fafc;
  font-weight:700;
  font-size:12px;
}
.admin-link:hover{ background:#eef2f6; }
.admin-card .h2{ margin-bottom:6px; }
.imported-filter-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: minmax(170px, .9fr) minmax(260px, 1.4fr) minmax(200px, 1fr) minmax(190px, auto);
  gap:12px;
  align-items:end;
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#f8fafc;
}
.imported-filter-field{
  min-width:0;
}
.imported-filter-field .muted.small{
  margin-bottom:5px;
  font-weight:800;
  color:#475569;
}
.imported-filter-grid .form-control,
.imported-filter-grid .form-select,
.imported-bulk-row .form-select{
  width:100%;
  min-height:40px;
}
.imported-filter-actions{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
  min-width:0;
}
.imported-filter-actions .btn.small{
  min-height:40px;
  border-radius:10px;
  white-space:nowrap;
}
.btn.small.ghost{
  background:#ffffff;
  color:#85152b;
  border:1px solid #e2e8f0;
}
.imported-bulk-row{
  margin-top:10px;
  display:grid;
  grid-template-columns: minmax(280px, 1fr) minmax(200px, 260px) minmax(220px, auto);
  gap:12px;
  align-items:end;
  padding:12px 14px;
  border:1px solid #fde68a;
  border-radius:14px;
  background:#fffbeb;
}
.imported-bulk-summary{
  color:#475569;
  font-size:13px;
  line-height:1.45;
}
.imported-select-all{
  display:flex;
  gap:8px;
  align-items:center;
  font-weight:800;
  color:#334155;
  margin-bottom:4px;
}
@media (max-width: 1100px){
  .imported-filter-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .imported-filter-actions{
    justify-content:flex-start;
  }
  .imported-bulk-row{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px){
  .imported-filter-grid{
    grid-template-columns: 1fr;
    padding:12px;
  }
  .imported-filter-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .imported-filter-actions .btn.small{
    width:100%;
  }
}
.admin-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.admin-title{
  font-size:20px;
  font-weight:800;
}
.admin-range{
  display:flex;
  gap:8px;
  align-items:center;
}
.range-pill{
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
}
.admin-banner{
  border:1px solid #fecaca;
  background:linear-gradient(90deg, #fff5f5, #fff);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:12px;
}
.admin-banner-title{
  font-weight:800;
  font-size:12px;
  color:#b91c1c;
}
.admin-banner-text{
  font-size:12px;
  color:#7f1d1d;
  margin-top:4px;
}
.stat-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom:12px;
}
.stat-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 18px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:var(--shadow);
  min-width:0;
}
.stat-label{
  font-size:11px;
  font-weight:800;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.45px;
}
.stat-value{
  margin-top:10px;
  font-size:32px;
  font-weight:800;
  line-height:1;
  color:#0f172a;
}
.stat-meta{
  margin-top:10px;
  font-size:12px;
  line-height:1.45;
  color:#475569;
}
.admin-grid{
  display:grid;
  gap:12px;
  margin-bottom:12px;
}
.admin-grid.two-col{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.table-wrap{
  overflow:auto;
}
.admin-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}
.admin-table th,
.admin-table td{
  border-bottom:1px solid var(--border);
  padding:10px;
  text-align:left;
  vertical-align:top;
}
.admin-table th{
  color:#475569;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
@media (max-width: 1200px){
  .stat-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px){
  .admin-grid.two-col{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px){
  .stat-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .stat-grid{
    grid-template-columns: 1fr;
  }
}
.admin-list{
  display:grid;
  gap:10px;
  font-size:12px;
}
.pill-row{ display:flex; gap:8px; flex-wrap:wrap; }
.pill{
  background:var(--chip);
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
}
.kpi-board{
  display:grid;
  gap:10px;
}
.kpi-feature-grid{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.kpi-mini-grid{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px){
  .kpi-feature-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kpi-mini-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px){
  .kpi-feature-grid,
  .kpi-mini-grid{
    grid-template-columns: 1fr;
  }
}
.kpi-card{
  border:1px solid var(--border);
  border-radius:16px;
  background:#ffffff;
  box-shadow:var(--shadow);
}
.kpi-card.featured{
  padding:12px 14px;
}
.kpi-card.compact{
  padding:11px 12px;
}
.kpi-label{
  font-size:11px;
  font-weight:800;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.kpi-value{
  font-size:26px;
  font-weight:800;
  line-height:1.05;
  margin-top:6px;
  color:#0f172a;
}
.kpi-card.compact .kpi-value{
  font-size:20px;
}
.kpi-meta{
  font-size:11px;
  color:#64748b;
  margin-top:5px;
  line-height:1.35;
}
.kpi-strip{
  height:5px;
  background:#e2e8f0;
  border-radius:999px;
  overflow:hidden;
  margin-top:10px;
}
.kpi-strip span{
  display:block;
  height:100%;
  background:linear-gradient(90deg, #85152b 0%, #c14d4a 100%);
}
.chart-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top:12px;
}
@media (max-width: 900px){
  .chart-grid{ grid-template-columns: 1fr; }
}
.donut-row{
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:8px;
}
.donut{
  width:86px;
  height:86px;
  border-radius:50%;
  background:conic-gradient(var(--c) calc(var(--p) * 1%), #e2e8f0 0);
  position:relative;
}
.donut::after{
  content:"";
  position:absolute;
  inset:14px;
  background:#fff;
  border-radius:50%;
  border:1px solid var(--border);
}
.donut-legend{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  margin-bottom:6px;
}
.donut-legend .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  display:inline-block;
}
.completion-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.completion-card{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  padding:14px;
}
.completion-title{
  font-size:13px;
  font-weight:800;
  margin-bottom:8px;
}
.donut-copy{
  display:grid;
  gap:2px;
}
.bar-chart{
  display:flex;
  align-items:flex-end;
  gap:12px;
  min-height:190px;
  padding:14px 8px 0;
  margin-top:10px;
  border-bottom:1px solid var(--border);
}
.bar-item{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}
.bar-value{
  font-size:11px;
  font-weight:700;
  color:var(--muted);
}
.bar-fill{
  width:100%;
  max-width:38px;
  min-height:4px;
  border-radius:10px 10px 0 0;
  background:linear-gradient(180deg, #9f2a27 0%, #85152b 100%);
  box-shadow:0 8px 16px rgba(117,23,22,.15);
}
.bar-label{
  font-size:11px;
  font-weight:700;
  color:var(--muted);
  text-align:center;
}
.mini-bars{
  display:flex;
  gap:6px;
  align-items:flex-end;
  height:80px;
  margin:10px 0 6px;
}
.mini-bars span{
  display:block;
  width:12px;
  border-radius:6px 6px 0 0;
  background:#85152b;
  opacity:.85;
}
.chat-list{ display:grid; gap:10px; margin-top:6px; }
.chat-item{
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  background:#f8fafc;
}
.chat-title{ font-weight:800; font-size:12px; }
.chat-body{ font-size:12px; color:#334155; margin-top:4px; }
.progress-row{ display:grid; gap:6px; margin-top:10px; }
.progress-label{ font-size:12px; font-weight:700; color:#334155; }
.progress-track{
  height:10px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
}
.progress-track span{
  display:block;
  height:100%;
  background:#16a34a;
}
.role-controls{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.role-table{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.role-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
}
.role-name{ font-weight:800; font-size:11px; }
.role-actions{ display:flex; gap:8px; align-items:center; }
.report-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top:10px;
}
.report-card{
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
  background:#fff;
}
.report-value{
  font-size:18px;
  font-weight:800;
  margin:6px 0 8px;
}
.report-bar{
  height:8px;
  background:#e2e8f0;
  border-radius:999px;
  overflow:hidden;
}
.report-bar span{
  display:block;
  height:100%;
  background:#85152b;
}

.info-grid{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.info-card{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  background:#ffffff;
}
.info-title{ font-weight:800; font-size:12px; }
.info-meta{ font-size:12px; color:var(--muted); margin-top:4px; }

.employee-list,
.relationship-list{
  display:grid;
  gap:8px;
}
.imported-results-list{
  display:grid;
  gap:12px;
}
.imported-result-card{
  display:grid;
  gap:10px;
  grid-template-columns: minmax(68px, auto) minmax(105px, auto) minmax(280px, 1.45fr) minmax(250px, 1fr) minmax(230px, .95fr);
  align-items:start;
  border:1px solid #e2e8f0;
  border-radius:12px;
  padding:10px 12px;
  background:#ffffff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}
.imported-result-card.relationship-compact-card{
  grid-template-columns: minmax(260px, 1.4fr) minmax(260px, 1.2fr) minmax(220px, 1fr);
  box-shadow:none;
}
.imported-result-select{
  min-width:62px;
}
.imported-result-select label{
  display:inline-flex;
  gap:6px;
  align-items:center;
  padding:6px 8px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  background:#f8fafc;
  color:#475569;
  font-size:12px;
  font-weight:800;
}
.imported-result-status{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  min-width:0;
}
.imported-status-pill{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:5px 9px;
  border-radius:999px;
  background:#e2e8f0;
  color:#334155;
  font-size:10px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
}
.imported-status-pill.active{ background:#dcfce7; color:#166534; }
.imported-status-pill.pending{ background:#fef3c7; color:#92400e; }
.imported-status-pill.ended,
.imported-status-pill.rejected{ background:#fee2e2; color:#991b1b; }
.imported-row-id{
  color:#64748b;
  font-size:11px;
  font-weight:800;
}
.imported-result-people{
  display:grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  gap:10px;
  align-items:start;
}
.imported-person{
  min-width:0;
  padding:8px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  background:#f8fafc;
}
.imported-person-label{
  margin-bottom:4px;
  color:#64748b;
  font-size:10px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
}
.imported-person-meta{
  color:#64748b;
  font-size:11px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.imported-connector{
  font-size:10px;
  font-weight:800;
  color:#94a3b8;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding-top:3px;
}
.imported-result-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:8px;
}
.imported-metric{
  min-width:0;
  padding:8px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  background:#ffffff;
}
.imported-metric span,
.imported-result-meta span{
  display:block;
  color:#64748b;
  font-size:10px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
}
.imported-metric strong{
  display:block;
  margin-top:5px;
  color:#0f172a;
  font-size:16px;
  line-height:1.1;
}
.imported-metric em{
  display:block;
  margin-top:2px;
  color:#64748b;
  font-size:10px;
  font-style:normal;
  line-height:1.2;
}
.imported-result-meta{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:6px 8px;
}
.imported-result-meta div{
  min-width:0;
  padding-bottom:4px;
  border-bottom:1px solid #e2e8f0;
}
.imported-result-meta strong{
  display:block;
  margin-top:3px;
  color:#334155;
  font-size:11px;
  font-weight:800;
  line-height:1.25;
  overflow-wrap:anywhere;
}
@media (max-width: 1100px){
  .imported-result-card{
    grid-template-columns: 1fr;
  }
  .imported-result-people{
    grid-template-columns: 1fr;
  }
  .imported-connector{
    display:none;
  }
  .imported-result-metrics,
  .imported-result-meta{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .imported-result-metrics,
  .imported-result-meta{
    grid-template-columns: 1fr;
  }
}
.employee-item{
  display:grid;
  gap:8px;
}
.employee-row,
.relationship-row{
  display:grid;
  grid-template-columns: 28px minmax(0,1.8fr) minmax(190px,.9fr) minmax(250px,1.1fr);
  gap:12px;
  align-items:start;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  background:#ffffff;
}
.employee-check-col{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:4px;
}
.employee-primary,
.employee-status-col,
.employee-actions-col{
  display:grid;
  gap:6px;
}
.employee-name-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.employee-meta-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px 12px;
}
.employee-inline-meta{
  font-size:11px;
  color:#64748b;
  line-height:1.35;
}
.employee-primary .muted.small,
.employee-status-col .muted.small{
  font-size:11px !important;
}
.employee-actions-col{
  align-content:start;
  justify-items:end;
}
.employee-role,
.relationship-status{
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  color:#85152b;
}
@media (max-width: 900px){
  .employee-row,
  .relationship-row{
    grid-template-columns: 1fr;
  }
  .employee-actions-col{
    justify-items:start;
  }
  .employee-meta-grid{
    grid-template-columns:1fr;
  }
}
.portal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.employee-edit{
  border:1px solid var(--border);
  border-radius:12px;
  background:#f8fafc;
  padding:12px;
}
.employee-edit-grid{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.employee-edit-grid .edit-span{
  grid-column: 1 / -1;
}
.employee-edit-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.employee-function-badges{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin:6px 0;
}
.employee-function{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.02em;
}
.employee-function.youth{
  background:#ecfeff;
  color:#155e75;
  border:1px solid #a5f3fc;
}
.employee-function.digital{
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #bfdbfe;
}
.progress-wrap{
  margin-top:12px;
  display:grid;
  gap:6px;
}
.progress-bar{
  height:10px;
  background:#e2e8f0;
  border-radius:999px;
  overflow:hidden;
}
.progress-bar span{
  display:block;
  height:100%;
  background:#85152b;
}
.progress-meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#475569;
}
.pager{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.directory-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
}
.directory-head-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.directory-controls{
  display:grid;
  gap:12px;
}
.directory-primary{
  display:grid;
  grid-template-columns:minmax(280px,1.8fr) repeat(3,minmax(150px,180px)) auto;
  gap:10px;
  align-items:end;
}
.directory-secondary{
  display:grid;
  grid-template-columns:repeat(2,minmax(180px,220px));
  gap:10px;
  margin-top:12px;
}
.directory-field{
  display:grid;
  gap:6px;
}
.directory-field label{
  font-size:11px;
  font-weight:800;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.directory-primary-actions{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.activity-stat-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.activity-filters{
  display:grid;
  grid-template-columns:minmax(220px,1.4fr) minmax(120px,.7fr) minmax(150px,.8fr) minmax(170px,1fr) minmax(130px,.7fr) minmax(130px,.7fr) auto;
  gap:10px;
  align-items:end;
}
.activity-tabs{
  border-bottom:1px solid var(--border);
}
.activity-tabs .nav-link{
  color:#475569;
  font-size:12px;
  font-weight:800;
  border-radius:8px 8px 0 0;
}
.activity-tabs .nav-link.active{
  color:#0f172a;
}
.activity-tab-content{
  padding-top:12px;
}
.activity-overview-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap:12px;
}
.activity-category-list,
.activity-trend-list,
.activity-mini-list{
  display:grid;
  gap:8px;
  margin-top:12px;
}
.activity-category-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#0f172a;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
  font-size:12px;
  font-weight:800;
}
.activity-category-row:hover{
  background:#f8fafc;
}
.activity-category-row span{
  display:flex;
  align-items:center;
  gap:8px;
}
.activity-category-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#64748b;
  flex:0 0 auto;
}
.activity-category-dot.access,
.activity-category-pill.access{ background:#dbeafe; color:#1e40af; }
.activity-category-dot.profile,
.activity-category-pill.profile{ background:#dcfce7; color:#166534; }
.activity-category-dot.admin,
.activity-category-pill.admin{ background:#fee2e2; color:#991b1b; }
.activity-category-dot.mentorship,
.activity-category-pill.mentorship{ background:#fef3c7; color:#92400e; }
.activity-category-dot.engagement,
.activity-category-pill.engagement{ background:#ede9fe; color:#5b21b6; }
.activity-category-dot.reporting,
.activity-category-pill.reporting{ background:#cffafe; color:#155e75; }
.activity-trend-row{
  display:grid;
  grid-template-columns:minmax(120px,.8fr) minmax(120px,.8fr) minmax(120px,1fr) minmax(80px,.5fr);
  gap:10px;
  align-items:center;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
}
.activity-table-wrap{
  margin-top:14px;
  overflow:auto;
  border:1px solid var(--border);
  border-radius:14px;
}
.activity-table{
  width:100%;
  border-collapse:collapse;
  min-width:850px;
  background:#fff;
}
.activity-table th,
.activity-table td{
  padding:11px 12px;
  border-bottom:1px solid #e2e8f0;
  text-align:left;
  vertical-align:top;
  font-size:12px;
}
.activity-table th{
  background:#f8fafc;
  color:#475569;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.activity-table tr:last-child td{
  border-bottom:0;
}
.activity-user{
  font-weight:800;
  color:#0f172a;
}
.activity-role,
.activity-type{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:4px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  line-height:1.2;
  background:#eef2f6;
  color:#334155;
  text-transform:uppercase;
}
.activity-type{
  background:#fef3c7;
  color:#78350f;
}
.activity-category-pill{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:4px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  line-height:1.2;
  text-transform:uppercase;
  background:#eef2f6;
  color:#334155;
}
.activity-score{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:32px;
  border-radius:8px;
  background:#0f172a;
  color:#fff;
  font-size:14px;
  font-weight:800;
}
.activity-time{
  white-space:nowrap;
  color:#334155;
}
.activity-summary-list{
  display:grid;
  gap:8px;
  margin-top:12px;
}
.activity-summary-row{
  display:grid;
  grid-template-columns:minmax(220px,1.4fr) minmax(100px,.5fr) minmax(190px,1fr) minmax(190px,1fr) minmax(120px,.6fr);
  gap:10px;
  align-items:center;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  background:#fff;
}
.activity-profile-meter{
  height:8px;
  border-radius:999px;
  background:#e2e8f0;
  overflow:hidden;
}
.activity-profile-meter span{
  display:block;
  height:100%;
  background:#16a34a;
}
.activity-attention-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.activity-mini-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
}
.activity-export-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.activity-export-card{
  display:block;
  text-decoration:none;
  color:inherit;
}
.activity-export-card:hover{
  background:#f8fafc;
}
@media (max-width: 1180px){
  .activity-stat-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .activity-filters,
  .activity-summary-row,
  .activity-overview-grid,
  .activity-attention-grid,
  .activity-export-grid{
    grid-template-columns:1fr 1fr;
  }
  .activity-filters .directory-primary-actions{
    justify-content:flex-start;
  }
}
@media (max-width: 680px){
  .activity-stat-grid,
  .activity-filters,
  .activity-summary-row,
  .activity-overview-grid,
  .activity-trend-row,
  .activity-attention-grid,
  .activity-export-grid{
    grid-template-columns:1fr;
  }
}
.directory-advanced{
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#f8fafc;
  padding:12px 14px;
}
.directory-advanced summary{
  cursor:pointer;
  font-size:12px;
  font-weight:800;
  color:#334155;
  list-style:none;
}
.directory-advanced summary::-webkit-details-marker{
  display:none;
}
.directory-advanced summary::after{
  content:"Show";
  float:right;
  color:#64748b;
}
.directory-advanced[open] summary::after{
  content:"Hide";
}
@media (max-width: 1180px){
  .directory-primary{
    grid-template-columns:minmax(240px,1fr) repeat(2,minmax(150px,1fr));
  }
  .directory-primary-actions{
    grid-column:1 / -1;
    justify-content:flex-start;
  }
}
@media (max-width: 820px){
  .directory-primary,
  .directory-secondary{
    grid-template-columns:1fr;
  }
}
.status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  margin-bottom:6px;
  background:#e2e8f0;
  color:#334155;
}
.status-pill.active{ background:#dcfce7; color:#166534; }
.status-pill.suspended{ background:#fef3c7; color:#92400e; }
.status-pill.deleted{ background:#fee2e2; color:#991b1b; }
.row-actions{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-top:6px;
}
.row-actions.compact{
  gap:6px;
  margin-top:0;
  justify-content:flex-end;
}
.row-actions.compact .btn.small{
  padding:5px 8px;
  font-size:11px;
}
.bulk-toolbar{
  margin-top:12px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  padding:12px 14px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#f8fafc;
}
.bulk-select-all{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:700;
  color:#334155;
}
.bulk-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.bulk-compose{
  margin-top:12px;
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#fff;
}
.bulk-compose-grid{
  display:grid;
  gap:10px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.bulk-compose-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}
@media (max-width: 820px){
  .bulk-compose-grid{
    grid-template-columns:1fr;
  }
}
.btn.small.danger{
  background:#b91c1c;
}

.page-loader{
  position:fixed;
  inset:0;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  z-index:9999;
  opacity:1;
  transition:opacity .35s ease;
}
.page-loader.hide{
  opacity:0;
  pointer-events:none;
}
.page-loader-logo{
  width:120px;
  height:auto;
  display:block;
}
.page-loader-percent{
  font-size:14px;
  font-weight:700;
  color:#85152b;
}

:root{
  --gmt-maroon:#85152b;
  --gmt-burgundy:#5A1024;
  --gmt-orange:#E47B25;
  --gmt-gold:#D6A326;
  --gmt-teal:#1B8A8F;
  --gmt-blue:#3478A8;
  --gmt-magenta:#B62562;
  --gmt-charcoal:#2E2E2E;
  --gmt-surface:#F7F3F1;
  --gmt-white:#FFFFFF;
  --gmt-line:#e7ddda;
  --gmt-text:#241f21;
}

.gmt-public-page{
  margin:0;
  background:var(--gmt-surface);
  color:var(--gmt-text);
  font-family:var(--font-sans);
}

.gmt-public-page h1,
.gmt-public-page h2{
  font-family:var(--font-sans);
  color:var(--gmt-burgundy);
  letter-spacing:0;
  line-height:1.05;
}

.gmt-public-page h1{
  font-size:5.2rem;
  margin:0;
  max-width:920px;
}

.gmt-public-page h2{
  font-size:2.75rem;
  margin:0;
}

.gmt-public-page h3{
  color:var(--gmt-charcoal);
  font-size:1rem;
  line-height:1.25;
  margin:0;
}

.gmt-public-page p{
  color:#5f5757;
  line-height:1.65;
}

.skip-link{
  position:absolute;
  left:16px;
  top:-44px;
  z-index:10;
  background:var(--gmt-burgundy);
  color:#fff;
  padding:10px 12px;
  border-radius:6px;
}

.skip-link:focus{
  top:12px;
}

.gmt-public-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(247,243,241,.94);
  border-bottom:1px solid var(--gmt-line);
  backdrop-filter:blur(12px);
}

.gmt-public-header-inner{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  min-height:64px;
  display:flex;
  align-items:center;
  gap:16px;
}

.gmt-public-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gmt-burgundy);
  text-decoration:none;
  font-weight:800;
  min-width:max-content;
}

.gmt-public-brand img{
  width:58px;
  height:40px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:5px;
}

.gmt-public-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:1;
}

.gmt-public-nav a{
  color:#3f383a;
  text-decoration:none;
  font-weight:800;
  font-size:.86rem;
  padding:8px 10px;
  border-radius:6px;
}

.gmt-public-nav a:hover,
.gmt-public-nav a.active{
  background:#fff;
  color:var(--gmt-maroon);
}

.gmt-public-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.gmt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:9px 14px;
  border-radius:6px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:900;
  line-height:1.1;
  cursor:pointer;
}

.gmt-btn-primary{
  background:var(--gmt-maroon);
  color:#fff;
}

.gmt-btn-primary:hover{
  background:var(--gmt-burgundy);
  color:#fff;
}

.gmt-btn-secondary{
  background:#fff;
  color:var(--gmt-maroon);
  border-color:var(--gmt-line);
}

.gmt-btn-secondary:hover{
  background:#fbf8f6;
  color:var(--gmt-burgundy);
}

.gmt-hero{
  min-height:calc(100vh - 76px);
  display:grid;
  align-items:end;
  position:relative;
  overflow:hidden;
  padding:clamp(140px, 18vh, 220px) 0 54px;
}

.gmt-hero-media{
  position:absolute;
  inset:0;
}

.gmt-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gmt-hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(90,16,36,.84), rgba(90,16,36,.58) 48%, rgba(90,16,36,.18));
}

.gmt-hero-copy{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  position:relative;
  z-index:1;
}

.gmt-hero-copy h1,
.gmt-hero-copy p{
  color:#fff;
}

.gmt-hero-copy > p:not(.gmt-kicker){
  max-width:720px;
  font-size:1.08rem;
  margin:18px 0 0;
}

.gmt-kicker{
  color:var(--gmt-orange);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.14em;
  line-height:1.2;
  margin:0 0 12px;
  text-transform:uppercase;
}

.gmt-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.gmt-value-strip{
  width:min(1180px, calc(100% - 32px));
  margin:-28px auto 0;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 18px 38px rgba(46,46,46,.08);
}

.gmt-value-strip div{
  padding:20px;
  border-right:1px solid var(--gmt-line);
}

.gmt-value-strip div:last-child{
  border-right:0;
}

.gmt-value-strip strong,
.gmt-value-strip span{
  display:block;
}

.gmt-value-strip strong{
  color:var(--gmt-burgundy);
  font-size:.95rem;
}

.gmt-value-strip span{
  color:#655d5d;
  font-size:.86rem;
  line-height:1.45;
  margin-top:6px;
}

.gmt-section,
.gmt-showcase,
.gmt-journey,
.gmt-impact,
.gmt-final-cta,
.gmt-page-hero{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.gmt-section{
  padding:42px 0;
}

.gmt-section-soft{
  width:100%;
  max-width:none;
  padding:86px max(16px, calc((100vw - 1180px) / 2));
  background:#fff;
  border-top:1px solid var(--gmt-line);
  border-bottom:1px solid var(--gmt-line);
}

.gmt-section-head{
  max-width:760px;
  margin-bottom:26px;
}

.gmt-card-grid,
.gmt-step-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

.gmt-step-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.gmt-compact-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.gmt-info-card,
.gmt-step-card,
.gmt-programme-card,
.gmt-match-panel article{
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:20px;
}

.gmt-section-soft .gmt-info-card{
  background:#fbf8f6;
}

.gmt-info-card p,
.gmt-step-card p,
.gmt-programme-card p,
.gmt-match-panel p{
  margin:10px 0 0;
  font-size:.94rem;
}

.gmt-step-card span{
  display:block;
  color:var(--gmt-orange);
  font-weight:900;
  margin-bottom:18px;
}

.gmt-showcase{
  display:grid;
  grid-template-columns:minmax(0, .8fr) minmax(0, 1.2fr);
  gap:28px;
  align-items:center;
  padding:88px 0;
}

.gmt-showcase > div:first-child p:last-child{
  margin-top:18px;
}

.gmt-match-panel{
  display:grid;
  gap:12px;
}

.gmt-match-panel article{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:4px 12px;
}

.gmt-match-panel span{
  color:var(--gmt-teal);
  font-weight:900;
}

.gmt-match-panel p{
  grid-column:1 / -1;
}

.gmt-journey{
  padding:50px 0 54px;
  border-top:1px solid var(--gmt-line);
  border-bottom:1px solid var(--gmt-line);
}

.gmt-journey h2{
  max-width:620px;
  margin:0 0 6px;
  font-size:clamp(1.7rem, 3vw, 2.35rem);
}

.gmt-journey-track{
  display:grid;
  grid-template-columns:repeat(5, minmax(120px, 1fr));
  gap:16px;
  position:relative;
  padding-top:26px;
}

.gmt-journey-track::before{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  top:48px;
  height:5px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gmt-maroon), #d7a845 50%, #1d7a6c);
  box-shadow:0 8px 18px rgba(55,37,31,.10);
}

.gmt-journey-step{
  position:relative;
  z-index:1;
  display:grid;
  justify-items:center;
  gap:10px;
  min-width:0;
  text-align:center;
  transition:transform .18s ease;
}

.gmt-journey-step strong{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:3px solid #fff;
  background:linear-gradient(135deg, var(--gmt-maroon), var(--gmt-burgundy));
  color:#fff;
  font-size:.82rem;
  font-weight:900;
  box-shadow:0 12px 24px rgba(55,37,31,.22);
}

.gmt-journey-step em{
  width:100%;
  min-height:76px;
  display:grid;
  align-content:center;
  gap:4px;
  padding:12px 14px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  color:var(--gmt-burgundy);
  font-style:normal;
  font-weight:900;
  box-shadow:0 8px 18px rgba(46,46,46,.035);
}

.gmt-journey-step small{
  width:100%;
  margin-top:-8px;
  color:#6f6568;
  font-size:.78rem;
  font-weight:800;
  line-height:1.35;
}

.gmt-journey-step:nth-child(even){
  transform:translateY(18px);
}

.gmt-journey-step:hover{
  transform:translateY(-3px);
}

.gmt-journey-step:nth-child(even):hover{
  transform:translateY(12px);
}

.gmt-journey-step:hover em{
  border-color:#d9b9ab;
  box-shadow:0 16px 32px rgba(133,21,43,.10);
}

.gmt-intel-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.gmt-intel-grid div{
  background:#fbf8f6;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:18px;
}

.gmt-intel-grid strong{
  display:block;
  color:var(--gmt-charcoal);
  margin-bottom:12px;
}

.gmt-intel-grid span{
  display:block;
  height:12px;
  width:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gmt-teal) var(--w), #e9e2df var(--w));
}

.gmt-impact{
  padding:78px 0;
  max-width:900px;
}

.gmt-final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:var(--gmt-burgundy);
  border-radius:8px;
  padding:34px;
  margin-bottom:78px;
}

.gmt-final-cta h2{
  color:#fff;
  max-width:740px;
}

.gmt-page-hero{
  padding:30px 0 20px;
}

.gmt-page-hero h1{
  font-size:clamp(1.9rem, 3.4vw, 2.8rem);
  max-width:760px;
  line-height:1.12;
}

.gmt-page-hero p:not(.gmt-kicker){
  max-width:760px;
  font-size:.96rem;
  margin:10px 0 0;
}

.gmt-programme-list{
  display:grid;
  gap:16px;
}

.gmt-programme-card{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(220px, .45fr) auto;
  align-items:center;
  gap:16px;
  padding:22px 24px;
}

.gmt-programme-card h2{
  font-size:clamp(1.55rem, 2.8vw, 2.25rem);
  line-height:1.12;
  max-width:620px;
  margin-bottom:8px;
}

.gmt-programme-card p{
  font-size:.94rem;
  line-height:1.55;
}

.gmt-status{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  border-radius:999px;
  padding:5px 10px;
  background:#f5e5dc;
  color:var(--gmt-maroon);
  font-size:.75rem;
  font-weight:900;
  margin-bottom:10px;
}

.gmt-programme-card dl,
.gmt-programme-card dd{
  margin:0;
}

.gmt-programme-card dt{
  color:#7a7171;
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
}

.gmt-programme-card dd{
  color:var(--gmt-charcoal);
  font-weight:800;
  margin-bottom:10px;
}

.gmt-two-column{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.gmt-weight-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.gmt-weight-list div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  background:#fbf8f6;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:14px 16px;
}

.gmt-weight-list span{
  color:var(--gmt-maroon);
  font-weight:900;
}

.gmt-public-footer{
  background:var(--gmt-burgundy);
  color:#fff;
  position:relative;
  padding:46px 0 32px;
}

.gmt-public-footer::before{
  background:#d9a441;
  content:"";
  display:block;
  height:4px;
  left:0;
  position:absolute;
  right:0;
  top:0;
}

.gmt-public-footer-inner{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px, 1.15fr) minmax(240px, .8fr) minmax(180px, .55fr);
  align-items:start;
  gap:56px;
}

.gmt-public-footer-contact,
.gmt-public-footer-links{
  border-left:1px solid rgba(255,255,255,.16);
  min-height:190px;
  padding-left:34px;
}

.gmt-public-footer img{
  width:96px;
  background:#fff;
  border-radius:8px;
  box-shadow:0 18px 36px rgba(0,0,0,.18);
  padding:8px;
}

.gmt-public-footer p{
  color:#f6e8e3;
  font-size:1.03rem;
  line-height:1.75;
  max-width:520px;
  margin:22px 0 0;
}

.gmt-footer-address,
.gmt-shell-footer address{
  color:#f6e8e3;
  display:grid;
  font-style:normal;
  gap:5px;
  line-height:1.55;
  margin-top:16px;
}

.gmt-public-footer-contact .gmt-footer-address{
  margin-top:0;
}

.gmt-footer-address strong,
.gmt-shell-footer strong,
.gmt-public-footer-links strong,
.gmt-footer-social-title{
  color:#fff;
  display:block;
  font-family:inherit;
  font-size:1.05rem;
  font-weight:900;
  margin-bottom:6px;
}

.gmt-footer-tel{
  display:inline-block;
  margin-top:18px;
}

.gmt-public-footer-links{
  display:grid;
  gap:18px;
  justify-items:start;
}

.gmt-public-footer nav{
  display:grid;
  gap:13px;
}

.gmt-public-footer a{
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition:color .18s ease, opacity .18s ease, transform .18s ease, background .18s ease;
}

.gmt-public-footer-links nav:not(.gmt-footer-social) a{
  color:#f6e8e3;
  font-weight:800;
}

.gmt-public-footer a:hover{
  color:#ffd8cf;
}

.gmt-footer-social-title{
  margin:4px 0 -4px;
}

.gmt-public-footer .gmt-footer-social{
  display:grid;
  gap:10px;
  grid-template-columns:repeat(3, 36px);
}

.gmt-footer-social a{
  align-items:center;
  background:#fff;
  border:1px solid rgba(255,255,255,.38);
  border-radius:999px;
  box-shadow:0 12px 24px rgba(0,0,0,.16);
  display:inline-flex;
  height:36px;
  justify-content:center;
  width:36px;
}

.gmt-footer-social a:hover{
  background:#fff;
  color:currentColor;
  transform:translateY(-2px);
}

.gmt-footer-social a[aria-label="Facebook"]{
  color:#1877f2;
}

.gmt-footer-social a[aria-label="X"]{
  color:#000;
}

.gmt-footer-social a[aria-label="Instagram"]{
  color:#e4405f;
}

.gmt-footer-social a[aria-label="YouTube"]{
  color:#ff0000;
}

.gmt-footer-social a[aria-label="LinkedIn"]{
  color:#0a66c2;
}

.gmt-footer-social svg{
  fill:currentColor;
  height:18px;
  width:18px;
}

.gmt-public-footer-bottom{
  width:min(1180px, calc(100% - 32px));
  margin:38px auto 0;
  border-top:1px solid rgba(255,255,255,.22);
  color:#f6e8e3;
  font-size:.92rem;
  font-weight:700;
  padding-top:24px;
  text-align:center;
}

.gmt-shell-footer{
  background:var(--gmt-burgundy);
  color:#fff;
  display:grid;
  gap:14px;
  padding:22px 28px;
}

.gmt-shell-footer address{
  margin-top:0;
}

.gmt-shell-footer div{
  border-top:1px solid rgba(255,255,255,.22);
  color:#f8e8e8;
  font-size:.92rem;
  font-weight:700;
  padding-top:14px;
}

@media (max-width: 980px){
  .gmt-public-page h1{
    font-size:2.45rem;
  }
  .gmt-public-page h2{
    font-size:1.85rem;
  }
  .gmt-public-header-inner{
    min-height:0;
    padding:14px 0;
    flex-wrap:wrap;
  }
  .gmt-public-nav{
    order:3;
    flex-basis:100%;
    justify-content:flex-start;
    overflow:auto;
    padding-bottom:4px;
  }
  .gmt-value-strip,
  .gmt-card-grid,
  .gmt-compact-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .gmt-step-grid,
  .gmt-showcase,
  .gmt-programme-card,
  .gmt-two-column{
    grid-template-columns:1fr;
  }
  .gmt-journey-track{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
  .gmt-final-cta,
  .gmt-public-footer-inner{
    align-items:flex-start;
    grid-template-columns:1fr;
  }
  .gmt-public-footer-inner{
    gap:30px;
  }
  .gmt-public-footer-contact,
  .gmt-public-footer-links{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.16);
    min-height:0;
    padding-left:0;
    padding-top:24px;
  }
}

.gmt-request-form,
.gmt-request-list{
  display:grid;
  gap:12px;
}

.gmt-request-form label{
  display:grid;
  gap:6px;
  min-width:0;
  color:#3d3437;
  font-size:.84rem;
  font-weight:900;
}

.gmt-request-form input,
.gmt-request-form select,
.gmt-request-form textarea,
.mentorRespondForm textarea{
  width:100%;
  min-width:0;
  max-width:none;
  box-sizing:border-box;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:10px 11px;
  background:#fbf8f6;
}

.gmt-request-list article{
  display:grid;
  gap:10px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:16px;
  background:#fbf8f6;
}

.gmt-request-list article > p{
  margin:0;
}

.gmt-request-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.withdrawRequestForm,
.mentorRespondForm{
  display:grid;
  gap:10px;
}

.gmt-workspace-header{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:10px;
}

.gmt-workspace-header div{
  display:grid;
  gap:4px;
}

.gmt-workspace-header span{
  color:#7a7171;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.gmt-workspace-header strong{
  color:var(--gmt-burgundy);
}

.gmt-workspace-tabs{
  display:grid;
  gap:7px;
}

.gmt-workspace-tabs a{
  text-decoration:none;
  color:#443b3d;
  font-weight:900;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:10px 12px;
  background:#fbf8f6;
}

.gmt-workspace-tabs a:hover{
  color:var(--gmt-maroon);
  background:#fff;
}

@media (max-width: 900px){
  .gmt-workspace-header{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .gmt-request-top,
  .gmt-workspace-header{
    grid-template-columns:1fr;
    display:grid;
  }
}

@media (max-width: 640px){
  .gmt-public-page h1{
    font-size:1.85rem;
  }
  .gmt-public-page h2{
    font-size:1.4rem;
  }
  .gmt-public-actions{
    width:100%;
  }
  .gmt-public-actions .gmt-btn{
    width:100%;
  }
  .gmt-hero{
    min-height:calc(100vh - 132px);
    padding-top:120px;
  }
  .gmt-value-strip,
  .gmt-card-grid,
  .gmt-compact-grid,
  .gmt-intel-grid,
  .gmt-weight-list,
  .gmt-journey-track{
    grid-template-columns:1fr;
  }
  .gmt-journey-track{
    gap:12px;
    padding-top:0;
  }
  .gmt-journey-track::before{
    left:22px;
    right:auto;
    top:23px;
    bottom:23px;
    width:5px;
    height:auto;
  }
  .gmt-journey-step{
    grid-template-columns:46px minmax(0, 1fr);
    align-items:center;
    text-align:left;
    gap:12px;
    transform:none;
  }
  .gmt-journey-step:nth-child(even),
  .gmt-journey-step:hover,
  .gmt-journey-step:nth-child(even):hover{
    transform:none;
  }
  .gmt-journey-step em{
    min-height:0;
    justify-items:start;
    padding:12px;
  }
  .gmt-journey-step small{
    grid-column:2;
    margin-top:-6px;
  }
  .gmt-section,
  .gmt-showcase,
  .gmt-journey,
  .gmt-impact{
    padding:34px 0;
  }
  .gmt-section-soft{
    padding-top:56px;
    padding-bottom:56px;
  }
  .gmt-final-cta{
    padding:24px;
    margin-bottom:56px;
  }
}

.gmt-app-page{
  margin:0;
  background:#f5f3f1;
  color:var(--gmt-text);
  font-family:var(--font-sans);
}

.gmt-app-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:292px minmax(0, 1fr);
}

.gmt-app-sidebar{
  position:sticky;
  top:0;
  height:100vh;
  padding:20px 18px;
  background:#fffdfb;
  border-right:1px solid var(--gmt-line);
  overflow:auto;
}

.gmt-app-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--gmt-burgundy);
  font-weight:900;
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:1px solid var(--gmt-line);
  line-height:1.2;
}

.gmt-app-brand img{
  width:72px;
  height:54px;
  object-fit:contain;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:6px;
  background:#fff;
}

.gmt-app-nav{
  display:grid;
  gap:6px;
}

.gmt-app-nav span{
  margin:18px 0 7px;
  color:#7b6a5f;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gmt-app-nav a{
  position:relative;
  color:#342f31;
  text-decoration:none;
  font-weight:800;
  padding:11px 14px 11px 18px;
  border-radius:8px;
  border:1px solid transparent;
  line-height:1.25;
  transition:background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.gmt-app-nav a:hover,
.gmt-app-nav a.active{
  color:var(--gmt-maroon);
  background:#fbf7f5;
  border-color:#eadbd5;
  box-shadow:0 8px 18px rgba(46,46,46,.035);
}

.gmt-app-nav a.active::before{
  content:"";
  position:absolute;
  left:6px;
  top:10px;
  bottom:10px;
  width:4px;
  border-radius:999px;
  background:var(--gmt-maroon);
}

.gmt-app-main{
  min-width:0;
  padding:28px 32px 40px;
}

.gmt-app-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.gmt-app-topbar h1{
  margin:8px 0 0;
  color:var(--gmt-burgundy);
  font-family:var(--font-sans);
  font-size:clamp(1.55rem, 2.2vw, 2.25rem);
  line-height:1.05;
  letter-spacing:0;
}

.gmt-app-title-block{
  min-width:0;
}

.gmt-role-strip{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.gmt-role-strip span{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  border:1px solid #eed7bf;
  border-radius:999px;
  background:#fff8ef;
  color:#a75e10;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  padding:5px 9px;
}

.gmt-context-switcher label{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:30px;
  border:1px solid #eed7bf;
  border-radius:999px;
  background:#fff8ef;
  color:#7a1028;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  padding:4px 8px 4px 10px;
}

.gmt-context-switcher select{
  min-width:92px;
  border:0;
  background:transparent;
  color:#241f21;
  font:inherit;
  text-transform:none;
  outline:none;
}

.gmt-app-account{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:8px 10px;
  font-size:.84rem;
  font-weight:800;
  box-shadow:0 10px 24px rgba(46,46,46,.05);
  min-width:min(520px, 100%);
  justify-content:space-between;
}

.gmt-account-user{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.gmt-account-user span{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.gmt-app-account a{
  color:var(--gmt-maroon);
  font-weight:900;
}

.gmt-topbar-menu{
  position:relative;
  flex:0 0 auto;
}

.gmt-topbar-menu summary{
  list-style:none;
  display:grid;
  place-items:center;
  min-width:42px;
  height:42px;
  border:1px solid #eadbd5;
  border-radius:8px;
  background:#fff;
  color:var(--gmt-maroon);
  font-weight:900;
  cursor:pointer;
  user-select:none;
}

.gmt-topbar-menu summary::-webkit-details-marker{
  display:none;
}

.gmt-topbar-menu summary:hover,
.gmt-topbar-menu summary:focus-visible,
.gmt-topbar-menu[open] summary{
  background:#fbf7f5;
  border-color:#d9b9ab;
  outline:none;
}

.gmt-profile-menu summary{
  width:42px;
  border-radius:50%;
  background:var(--gmt-maroon);
  color:#fff;
}

.gmt-topbar-menu-panel{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  z-index:60;
  display:grid;
  gap:4px;
  width:min(260px, calc(100vw - 32px));
  padding:8px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 44px rgba(36,31,33,.14);
}

.gmt-topbar-menu-panel a,
.gmt-topbar-menu-panel strong{
  display:block;
  padding:10px 11px;
  border-radius:7px;
  color:#241f21;
  text-decoration:none;
  overflow:hidden;
  text-overflow:ellipsis;
}

.gmt-topbar-menu-panel strong{
  color:var(--gmt-burgundy);
  border-bottom:1px solid var(--gmt-line);
  border-radius:0;
}

.gmt-topbar-menu-panel a:hover,
.gmt-topbar-menu-panel a:focus-visible{
  background:#fbf7f5;
  color:var(--gmt-maroon);
  outline:none;
}

.gmt-topbar-bell{
  position:relative;
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  min-width:42px;
  border:1px solid #eadbd5;
  border-radius:8px;
  background:#fff;
  color:var(--gmt-maroon);
  text-decoration:none;
  transition:background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.gmt-topbar-bell:hover,
.gmt-topbar-bell:focus-visible{
  background:#fbf7f5;
  border-color:#d9b9ab;
  box-shadow:0 10px 20px rgba(133,21,43,.08);
  outline:none;
  transform:translateY(-1px);
}

.gmt-topbar-bell svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.gmt-topbar-bell span{
  position:absolute;
  top:5px;
  right:5px;
  display:grid;
  place-items:center;
  min-width:17px;
  height:17px;
  padding:0 4px;
  border:2px solid #fff;
  border-radius:999px;
  background:#0f766e;
  color:#fff;
  font-size:.62rem;
  font-weight:900;
  line-height:1;
}

.gmt-app-card{
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:20px;
  box-shadow:0 10px 24px rgba(46,46,46,.035);
  overflow:hidden;
}

.gmt-app-card h2{
  margin:0 0 10px;
  color:var(--gmt-burgundy);
  font-size:1.28rem;
}

.gmt-app-card p{
  margin:0;
  color:#655d5d;
  line-height:1.6;
}

.gmt-page-header-card{
  margin-bottom:18px;
}

.gmt-page-header-card h2{
  font-size:1.65rem;
  line-height:1.2;
}

.gmt-settings-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.gmt-settings-card{
  display:grid;
  gap:14px;
  align-content:start;
}

.gmt-settings-card label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#2f2b2d;
  font-weight:800;
  line-height:1.4;
  min-width:0;
}

.gmt-settings-card input[type="text"],
.gmt-settings-card input:not([type]){
  width:100%;
  min-width:0;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:11px 12px;
  font:inherit;
}

.gmt-alert-success,
.gmt-alert-danger{
  margin:0 0 18px;
  padding:12px 14px;
  border-radius:8px;
  font-weight:800;
}

.gmt-alert-success{
  border:1px solid #a7f3d0;
  background:#ecfdf5;
  color:#065f46;
}

.gmt-alert-danger{
  border:1px solid #fecaca;
  background:#fef2f2;
  color:#991b1b;
}

.gmt-help-hero{
  display:grid;
  gap:16px;
  margin-bottom:18px;
}

.gmt-help-hero h2{
  font-size:1.8rem;
  line-height:1.15;
}

.gmt-help-search{
  display:grid;
  grid-template-columns:minmax(220px, 1fr) minmax(190px, 260px) auto;
  gap:10px;
  align-items:center;
}

.gmt-help-search input,
.gmt-help-search select,
.gmt-form-grid input,
.gmt-form-grid select,
.gmt-form-grid textarea{
  width:100%;
  min-width:0;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:11px 12px;
  background:#fff;
  color:#241f21;
  font:inherit;
}

.gmt-help-layout{
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:18px;
}

.gmt-help-categories{
  display:grid;
  gap:8px;
  align-content:start;
}

.gmt-help-categories a{
  display:block;
  padding:9px 10px;
  border-radius:8px;
  color:#3b3437;
  text-decoration:none;
  font-weight:800;
}

.gmt-help-categories a:hover,
.gmt-help-categories a.active{
  background:#fbf7f5;
  color:var(--gmt-maroon);
}

.gmt-help-results{
  display:grid;
  gap:14px;
  min-width:0;
}

.gmt-help-article-card h2 a{
  color:var(--gmt-burgundy);
  text-decoration:none;
}

.gmt-help-article{
  display:grid;
  gap:12px;
}

.gmt-breadcrumb{
  color:#766d70;
  font-size:.82rem;
}

.gmt-breadcrumb a{
  color:var(--gmt-maroon);
  font-weight:900;
}

.gmt-help-summary{
  font-weight:800;
}

.gmt-help-content{
  color:#2f2b2d;
  line-height:1.75;
  max-width:78ch;
}

.gmt-help-contact-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:18px;
}

.gmt-support-admin-card{
  display:grid;
  gap:12px;
}

.gmt-table-wrap{
  width:100%;
  overflow:auto;
}

.gmt-table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}

.gmt-table th,
.gmt-table td{
  padding:12px 10px;
  border-bottom:1px solid var(--gmt-line);
  text-align:left;
  vertical-align:top;
}

.gmt-table th{
  color:#645b5f;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.gmt-clickable-card{
  display:block;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition:border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.gmt-clickable-card:hover,
.gmt-clickable-card:focus-visible{
  border-color:#d9b9ab;
  box-shadow:0 16px 32px rgba(133,21,43,.09);
  outline:none;
  transform:translateY(-2px);
}

.gmt-clickable-card:focus-visible{
  outline:3px solid rgba(133,21,43,.14);
  outline-offset:3px;
}

.gmt-mentorship-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}

.gmt-mentorship-card{
  display:grid;
  gap:10px;
  align-content:start;
}

.gmt-workspace-hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(260px, 360px);
  gap:20px;
  align-items:center;
}

.gmt-workspace-hero h2{
  font-size:1.75rem;
  line-height:1.18;
  margin:0 0 8px;
}

.gmt-workspace-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
  color:#655d5d;
  font-weight:800;
}

.gmt-workspace-next-session{
  display:grid;
  gap:8px;
  justify-items:start;
  padding:16px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fbf7f5;
}

.gmt-workspace-next-session span{
  color:#6d6467;
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.gmt-workspace-next-session strong{
  color:var(--gmt-burgundy);
  font-size:1.1rem;
}

.gmt-more-menu,
.gmt-session-more{
  position:relative;
}

.gmt-more-menu summary,
.gmt-session-more summary{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:9px 13px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  color:var(--gmt-maroon);
  font-weight:900;
  cursor:pointer;
  list-style:none;
}

.gmt-more-menu summary::-webkit-details-marker,
.gmt-session-more summary::-webkit-details-marker{
  display:none;
}

.gmt-more-menu div{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  z-index:55;
  display:grid;
  width:180px;
  padding:8px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 44px rgba(36,31,33,.14);
}

.gmt-more-menu a{
  padding:9px 10px;
  border-radius:7px;
  color:#241f21;
  text-decoration:none;
  font-weight:800;
}

.gmt-more-menu a:hover{
  background:#fbf7f5;
  color:var(--gmt-maroon);
}

.gmt-compact-journey{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
}

.gmt-journey-chip{
  display:grid;
  gap:6px;
  min-width:0;
  padding:14px 12px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  color:#241f21;
  text-decoration:none;
  text-align:center;
}

.gmt-journey-chip strong{
  color:var(--gmt-burgundy);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.gmt-journey-chip span{
  color:#655d5d;
  font-size:.86rem;
  font-weight:900;
}

.gmt-journey-chip.is-done{
  border-color:#99d6cf;
  background:#eefdfa;
}

.gmt-journey-chip.is-current{
  border-color:#d9b9ab;
  background:#fff7f4;
}

.gmt-next-step-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  border:1px solid #d9b9ab;
  border-radius:8px;
  background:#fff7f4;
  margin-bottom:18px;
}

.gmt-next-step-card h3{
  margin:0 0 6px;
  color:var(--gmt-burgundy);
  font-size:1.15rem;
}

.gmt-overview-summary-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.gmt-overview-summary-grid > article{
  min-width:0;
  padding:14px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
}

.gmt-overview-summary-grid h3{
  margin:0;
  color:var(--gmt-burgundy);
  font-size:1rem;
}

.gmt-compact-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--gmt-line);
}

.gmt-compact-row strong,
.gmt-compact-row span{
  min-width:0;
  overflow-wrap:anywhere;
}

.gmt-session-page-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.gmt-filter-tabs{
  display:flex;
  gap:8px;
  overflow:auto;
  padding:0 0 12px;
  margin-bottom:8px;
}

.gmt-filter-tabs a{
  flex:0 0 auto;
  padding:9px 13px;
  border:1px solid var(--gmt-line);
  border-radius:999px;
  background:#fff;
  color:#3b3437;
  text-decoration:none;
  font-weight:900;
}

.gmt-filter-tabs a.active,
.gmt-filter-tabs a:hover{
  border-color:#d9b9ab;
  background:#fff7f4;
  color:var(--gmt-maroon);
}

.gmt-session-list{
  display:grid;
  gap:14px;
}

.gmt-session-card{
  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  gap:16px;
  padding:18px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 10px 24px rgba(46,46,46,.035);
}

.gmt-session-date{
  display:grid;
  place-items:center;
  align-content:center;
  min-height:72px;
  border:1px solid #eadbd5;
  border-radius:8px;
  background:#fbf7f5;
}

.gmt-session-date span{
  color:#6d6467;
  font-size:.72rem;
  font-weight:900;
}

.gmt-session-date strong{
  color:var(--gmt-burgundy);
  font-size:1.75rem;
  line-height:1;
}

.gmt-session-main{
  display:grid;
  gap:8px;
  min-width:0;
}

.gmt-session-main > div:first-child{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.gmt-session-main strong,
.gmt-session-main p,
.gmt-session-main small{
  overflow-wrap:anywhere;
}

.gmt-session-sync{
  color:#0f766e;
  font-weight:900;
  font-size:.86rem;
}

.gmt-session-more form{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}

.gmt-stepper-form{
  display:grid;
  gap:16px;
}

.gmt-onboarding-layout{
  grid-template-columns:1fr;
  align-items:start;
}

.gmt-onboarding-main{
  display:grid;
  gap:16px;
}

.gmt-onboarding-menu{
  position:sticky;
  top:16px;
  z-index:3;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  padding:14px 16px;
}

.gmt-onboarding-menu a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  border:1px solid var(--gmt-line);
  border-radius:999px;
  background:#fff;
  color:#42383b;
  text-decoration:none;
  font-size:.84rem;
  font-weight:850;
  padding:8px 12px;
}

.gmt-onboarding-menu a:hover,
.gmt-onboarding-menu a:focus-visible{
  border-color:#ead2c7;
  background:#fff4ee;
  color:var(--gmt-maroon);
  outline:2px solid rgba(133,21,43,.16);
}

.gmt-step-label{
  color:var(--gmt-orange);
  font-size:.75rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
}

.gmt-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.gmt-form-grid label,
.gmt-field-full{
  display:grid;
  gap:6px;
  color:#3d3437;
  font-size:.86rem;
  font-weight:900;
}

.gmt-form-grid .full,
.gmt-field-full{
  grid-column:1 / -1;
}

.gmt-register-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(280px, .9fr);
  gap:28px;
  align-items:end;
  max-width:1180px;
  margin:34px auto 0;
  padding:34px 18px 24px;
}

.gmt-register-hero h1{
  margin:6px 0 12px;
  color:var(--gmt-burgundy);
  font-family:var(--font-sans);
  font-size:clamp(2rem, 4vw, 4rem);
  line-height:1.02;
}

.gmt-register-hero p{
  max-width:680px;
  color:#584e51;
  line-height:1.65;
}

.gmt-register-steps{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.gmt-register-steps span{
  border:1px solid var(--gmt-line);
  border-left:5px solid var(--gmt-maroon);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 24px rgba(46,46,46,.05);
  color:#342b2e;
  font-weight:900;
  padding:14px;
}

.gmt-register-shell{
  padding-top:10px;
}

.gmt-register-form{
  display:grid;
  gap:16px;
  max-width:1180px;
  margin:0 auto;
}

.gmt-form-panel{
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(46,46,46,.05);
  padding:18px;
}

.gmt-phone-row{
  display:grid;
  grid-template-columns:112px minmax(0, 1fr);
  gap:8px;
}

.gmt-check-panel,
.gmt-skill-panel{
  border:1px solid var(--gmt-line);
  border-radius:8px;
  display:grid;
  gap:10px;
  margin:0;
  padding:14px;
}

.gmt-check-panel legend,
.gmt-skill-panel legend{
  color:#3b3335;
  font-size:.86rem;
  font-weight:900;
  padding:0 4px;
}

.gmt-check-panel label,
.gmt-check-grid label{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-weight:800;
}

.gmt-check-panel input,
.gmt-check-grid input{
  width:16px;
  min-width:16px;
  margin-top:2px;
}

.gmt-skill-panel details{
  border-top:1px solid var(--gmt-line);
  padding-top:10px;
}

.gmt-skill-panel details:first-of-type{
  border-top:0;
  padding-top:0;
}

.gmt-skill-panel summary{
  cursor:pointer;
  color:var(--gmt-burgundy);
  font-weight:900;
}

.gmt-check-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px 12px;
  padding-top:10px;
}

.gmt-register-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  padding-bottom:20px;
}

.gmt-form-error{
  flex-basis:100%;
  border:1px solid #f1b8b8;
  border-radius:8px;
  background:#fff0f0;
  color:#9d1414;
  font-weight:800;
  padding:11px 12px;
}

.mentor-doc[hidden],
.gmt-form-error[hidden]{
  display:none !important;
}

@media (max-width: 820px){
  .gmt-register-hero{
    grid-template-columns:1fr;
    padding-top:24px;
  }

  .gmt-check-grid,
  .gmt-register-steps{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .gmt-phone-row{
    grid-template-columns:1fr;
  }

  .gmt-register-actions .gmt-btn{
    width:100%;
  }
}

.gmt-form-grid input,
.gmt-form-grid select,
.gmt-form-grid textarea,
.gmt-field-full textarea{
  width:100%;
  max-width:none;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:11px 12px;
  background:#fbf8f6;
  color:#231d1f;
  font:inherit;
}

.gmt-form-grid input:focus,
.gmt-form-grid select:focus,
.gmt-form-grid textarea:focus,
.gmt-field-full textarea:focus{
  border-color:var(--gmt-maroon);
  background:#fff;
  outline:3px solid rgba(133,21,43,.16);
}

.gmt-form-grid label span{
  color:#7a7171;
  font-size:.78rem;
  font-weight:600;
}

.gmt-skill-picker{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.gmt-skill-picker fieldset{
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:14px;
  background:#fff;
}

.gmt-skill-picker legend{
  color:var(--gmt-maroon);
  font-weight:900;
  padding:0 5px;
}

.gmt-skill-row{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) minmax(150px, auto);
  align-items:center;
  gap:8px;
  padding:8px;
  border-radius:8px;
  font-size:.86rem;
}

.gmt-skill-row:hover{
  background:#fbf8f6;
}

.gmt-skill-row input{
  width:16px;
}

.gmt-skill-row select{
  max-width:none;
  padding:7px 8px;
  border-radius:6px;
}

.gmt-checkbox-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:10px;
  margin:14px 0 18px;
}

.gmt-checkbox-grid label,
.gmt-inline-check{
  background:#fffdfb;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  font-weight:850;
}

.gmt-checkbox-grid label{
  position:relative;
  display:grid;
  grid-template-columns:18px minmax(0, 1fr);
  align-items:center;
  gap:10px;
  min-height:50px;
  padding:10px 12px;
  color:#2f292b;
  font-size:.9rem;
  line-height:1.25;
  box-shadow:0 8px 18px rgba(46,46,46,.035);
}

.gmt-checkbox-grid input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  display:grid;
  place-items:center;
  width:15px;
  height:15px;
  max-width:15px;
  min-width:15px;
  margin:0;
  padding:0;
  border:1.5px solid #9a8f8a;
  border-radius:4px;
  background:#fff;
}

.gmt-checkbox-grid input[type="checkbox"]::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:2px;
  transform:scale(0);
  transition:transform .12s ease;
  background:var(--gmt-maroon);
}

.gmt-checkbox-grid input[type="checkbox"]:checked{
  border-color:var(--gmt-maroon);
  background:#fff7f4;
}

.gmt-checkbox-grid input[type="checkbox"]:checked::before{
  transform:scale(1);
}

.gmt-checkbox-grid label:has(input[type="checkbox"]:checked){
  border-color:rgba(133,21,43,.5);
  background:#fff4ef;
  box-shadow:0 10px 22px rgba(133,21,43,.08);
}

.gmt-checkbox-grid label:hover,
.gmt-inline-check:hover{
  border-color:rgba(133,21,43,.35);
  background:#fff7f3;
  transform:translateY(-1px);
}

.gmt-checkbox-grid label:focus-within{
  outline:3px solid rgba(133,21,43,.16);
  outline-offset:2px;
}

.gmt-form-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:34px;
}

.gmt-form-message{
  font-weight:900;
  color:#655d5d;
}

.gmt-form-message.error{
  color:#991b1b;
}

.gmt-form-message.success{
  color:#166534;
}

.gmt-alert-success{
  background:#f0fdf4;
  border:1px solid #bbf7d0;
  color:#166534;
  border-radius:8px;
  padding:14px 16px;
  font-weight:900;
  margin-bottom:16px;
}

.gmt-alert-success a{
  color:#166534;
}

.gmt-dashboard-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(180px, 1fr));
  gap:16px;
  align-items:stretch;
}

.gmt-three-column{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  align-items:start;
}

.gmt-metric{
  display:block;
  color:var(--gmt-maroon);
  font-size:2.2rem;
  font-weight:900;
  line-height:1;
  margin-bottom:10px;
}

.gmt-app-section{
  margin-top:18px;
}

.gmt-action-list,
.gmt-record-list{
  display:grid;
  gap:10px;
}

.gmt-action-list a,
.gmt-record-list div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:11px 12px;
  color:var(--gmt-maroon);
  text-decoration:none;
  font-weight:900;
}

.gmt-record-list span{
  color:#7a7171;
  font-size:.82rem;
}

@media (max-width: 1020px){
  .gmt-app-shell{
    grid-template-columns:1fr;
  }
  .gmt-app-sidebar{
    position:static;
    height:auto;
  }
  .gmt-app-nav{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
  .gmt-dashboard-grid,
  .gmt-journey-timeline,
  .gmt-onboarding-layout,
  .gmt-skill-picker,
  .gmt-checkbox-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .gmt-onboarding-layout{
    grid-template-columns:1fr;
  }

  .gmt-onboarding-menu{
    position:static;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px){
  .gmt-app-main{
    padding:18px 14px;
  }
  .gmt-app-topbar,
  .gmt-form-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .gmt-app-nav,
  .gmt-dashboard-grid,
  .gmt-journey-timeline,
  .gmt-three-column,
  .gmt-calendar-layout,
  .gmt-onboarding-menu,
  .gmt-form-grid,
  .gmt-skill-picker,
  .gmt-checkbox-grid{
    grid-template-columns:1fr;
  }
  .gmt-skill-row{
    grid-template-columns:auto minmax(0, 1fr);
  }
  .gmt-skill-row select{
    grid-column:1 / -1;
  }

  .gmt-mentor-calendar-hero{
    flex-direction:column;
    align-items:stretch;
  }

  .gmt-mentor-calendar{
    grid-template-columns:repeat(2, minmax(160px, 1fr));
  }
}

.gmt-admin-table{
  display:grid;
  gap:8px;
}

.gmt-admin-table .head,
.gmt-admin-row{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr .7fr 1.1fr;
  gap:10px;
  align-items:center;
}

.gmt-admin-table .head{
  color:#7a7171;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:0 10px;
}

.gmt-admin-row{
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:10px;
  background:#fbf8f6;
}

.gmt-admin-row input,
.gmt-admin-row select{
  width:100%;
  max-width:none;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:8px;
  margin-bottom:6px;
}

@media (max-width: 980px){
  .gmt-admin-table .head{
    display:none;
  }
  .gmt-admin-row{
    grid-template-columns:1fr;
  }
}

.gmt-directory-search{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:10px;
}

.gmt-directory-search input{
  width:100%;
  max-width:none;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:12px;
  background:#fbf8f6;
}

.gmt-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.gmt-tabs a{
  text-decoration:none;
  color:#443b3d;
  border:1px solid var(--gmt-line);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  background:#fff;
}

.gmt-tabs a.active{
  background:var(--gmt-maroon);
  color:#fff;
  border-color:var(--gmt-maroon);
}

.gmt-mentor-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap:16px;
  margin-top:16px;
  align-items:start;
}

.gmt-mentor-card{
  display:grid;
  gap:13px;
  min-width:0;
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:18px;
  box-shadow:0 12px 28px rgba(46,46,46,.04);
}

.gmt-mentor-head{
  display:grid;
  grid-template-columns:56px minmax(0, 1fr);
  gap:12px;
  align-items:center;
  min-width:0;
}

.gmt-mentor-head.large{
  grid-template-columns:86px minmax(0, 1fr);
  margin-bottom:20px;
}

.gmt-mentor-head img,
.gmt-mentor-head > div:first-child{
  width:56px;
  height:56px;
  border-radius:8px;
  object-fit:cover;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f7f3f1;
  color:var(--gmt-maroon);
  font-weight:900;
  border:1px solid var(--gmt-line);
}

.gmt-mentor-head.large img,
.gmt-mentor-head.large > div:first-child{
  width:86px;
  height:86px;
}

.gmt-mentor-head h2{
  margin:0;
  color:var(--gmt-burgundy);
  font-size:1.15rem;
  line-height:1.25;
  overflow-wrap:anywhere;
}

.gmt-mentor-head p{
  margin:4px 0 0;
  color:#655d5d;
  overflow-wrap:anywhere;
}

.gmt-tag-list,
.gmt-match-reasons{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  min-width:0;
}

.gmt-tag-list span{
  max-width:100%;
  background:#f7f3f1;
  border:1px solid var(--gmt-line);
  border-radius:999px;
  color:#443b3d;
  font-size:.78rem;
  font-weight:900;
  padding:6px 9px;
  overflow-wrap:anywhere;
  white-space:normal;
}

.gmt-match-reasons span{
  max-width:100%;
  background:#ecfdfd;
  border:1px solid #bde7e9;
  border-radius:6px;
  color:#12696d;
  font-size:.8rem;
  font-weight:900;
  padding:7px 9px;
  overflow-wrap:anywhere;
  white-space:normal;
}

.gmt-mini-meta{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
  margin:0;
  min-width:0;
}

.gmt-mini-meta.stacked{
  grid-template-columns:1fr;
  margin:16px 0;
}

.gmt-mini-meta div{
  min-width:0;
  max-width:100%;
  background:#fbf8f6;
  border:1px solid var(--gmt-line);
  border-radius:6px;
  padding:9px;
}

.gmt-mini-meta dt{
  color:#7a7171;
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
}

.gmt-mini-meta dd{
  margin:4px 0 0;
  color:#2f292b;
  font-weight:900;
  overflow-wrap:anywhere;
  word-break:break-word;
  line-height:1.35;
}

.gmt-card-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:auto;
  min-width:0;
}

.gmt-profile-layout{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
  align-items:start;
}

.gmt-profile-layout .gmt-app-card h2:not(:first-child){
  margin-top:18px;
}

.gmt-profile-main-card{
  align-self:start;
}

.gmt-request-sidebar{
  align-self:start;
  min-width:0;
}

.gmt-request-placeholder{
  border-top:1px solid var(--gmt-line);
  margin-top:16px;
  padding-top:16px;
}

@media (max-width: 1120px){
  .gmt-mentor-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .gmt-profile-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 680px){
  .gmt-directory-search,
  .gmt-mentor-grid,
  .gmt-mini-meta{
    grid-template-columns:1fr;
  }
}

.gmt-workspace-header{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:12px;
  margin-bottom:16px;
}

.gmt-workspace-header div{
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fbf8f6;
  padding:12px;
}

.gmt-workspace-header span,
.gmt-metric-card span{
  display:block;
  color:#7a7171;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
}

.gmt-workspace-header strong,
.gmt-metric-card strong{
  display:block;
  color:#2f292b;
  font-weight:900;
  margin-top:4px;
}

.gmt-workspace-layout{
  grid-template-columns:220px minmax(0, 1fr);
  align-items:start;
}

.gmt-workspace-main{
  display:grid;
  gap:16px;
}

.gmt-workspace-tabs{
  display:grid;
  gap:6px;
  position:sticky;
  top:16px;
}

.gmt-workspace-tabs a{
  color:#42383b;
  text-decoration:none;
  font-weight:900;
  border-radius:8px;
  padding:10px 11px;
}

.gmt-workspace-tabs a:hover,
.gmt-workspace-tabs a:focus-visible{
  background:#f7f3f1;
  color:var(--gmt-maroon);
  outline:2px solid rgba(133,21,43,.18);
}

.gmt-section-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.gmt-section-heading h2{
  margin:2px 0 0;
  color:var(--gmt-burgundy);
}

.gmt-metric-card{
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:14px;
  box-shadow:0 10px 22px rgba(46,46,46,.04);
}

.gmt-metric-card strong{
  font-size:1.25rem;
}

.gmt-health-list{
  display:grid;
  gap:8px;
  margin-top:14px;
}

.gmt-health-list p{
  margin:0;
  border-left:4px solid var(--gmt-maroon);
  background:#fbf8f6;
  padding:10px 12px;
}

.gmt-acceptance{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.gmt-acceptance span{
  border:1px solid var(--gmt-line);
  border-radius:999px;
  background:#fff;
  color:#42383b;
  font-weight:900;
  padding:7px 10px;
}

.gmt-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.gmt-form-grid label{
  display:grid;
  gap:6px;
  color:#3b3335;
  font-size:.86rem;
  font-weight:900;
}

.gmt-form-grid input,
.gmt-form-grid select,
.gmt-form-grid textarea{
  width:100%;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  color:#201a1c;
  font:inherit;
  padding:10px 11px;
}

.gmt-form-grid textarea{
  min-height:96px;
  resize:vertical;
}

.gmt-form-grid input:focus,
.gmt-form-grid select:focus,
.gmt-form-grid textarea:focus{
  border-color:var(--gmt-maroon);
  outline:3px solid rgba(133,21,43,.16);
}

.gmt-checkbox{
  display:flex !important;
  grid-template-columns:auto 1fr;
  align-items:center;
  flex-direction:row;
  gap:8px;
}

.gmt-checkbox input{
  width:auto;
}

.gmt-inline-form{
  margin-top:16px;
  border-top:1px solid var(--gmt-line);
  padding-top:16px;
}

.gmt-list-grid{
  display:grid;
  gap:10px;
}

.gmt-record-card{
  display:grid;
  gap:8px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  padding:14px;
}

.gmt-record-card > div:first-child{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.gmt-record-card p{
  margin:0;
  color:#5f5558;
  line-height:1.55;
}

.gmt-record-card small{
  color:#7a7171;
  font-weight:800;
}

.gmt-progress{
  height:8px;
  overflow:hidden;
  border-radius:999px;
  background:#f1e8e2;
}

.gmt-progress span{
  display:block;
  height:100%;
  background:var(--gmt-maroon);
}

.gmt-button-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:4px;
}

.gmt-language-control{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:38px;
  border:1px solid var(--gmt-line, #e7ddd8);
  border-radius:8px;
  background:#fff;
  color:#42383b;
  padding:6px 8px;
  font-size:.82rem;
  font-weight:900;
}

.gmt-language-control span{
  color:#7a7171;
  font-size:.72rem;
  text-transform:uppercase;
}

.gmt-language-control select{
  border:0;
  background:transparent;
  color:#241d1f;
  font:inherit;
  max-width:128px;
}

.gmt-language-control select:focus{
  outline:2px solid rgba(133,21,43,.18);
  outline-offset:2px;
}

#google_translate_element,
.goog-te-gadget{
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
  position:fixed;
  left:-9999px;
  bottom:0;
}

body > .skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt{
  display:none !important;
}

body{
  top:0 !important;
}

.gmt-public-page,
.admin-page,
.gmt-app-page,
.auth-page{
  font-family:var(--font-sans);
}

.gmt-public-page h1,
.gmt-public-page h2,
.gmt-public-page h3,
.gmt-app-page h1,
.gmt-app-page h2,
.gmt-app-page h3,
.admin-page h1,
.admin-page h2,
.admin-page h3,
.auth-page h1,
.auth-page h2,
.auth-page h3,
.h1,
.h2,
.admin-top-title{
  font-family:var(--font-sans) !important;
  letter-spacing:0;
}

.gmt-language-control{
  min-height:38px;
  padding:6px 9px;
}

.gmt-language-control select{
  min-width:128px;
  max-width:180px;
}

@media (max-width: 780px){
  .gmt-app-account{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .gmt-account-user{
    justify-content:space-between;
  }

  .gmt-language-control{
    justify-content:space-between;
  }
}

.gmt-back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--gmt-maroon);
  color:#fff;
  box-shadow:0 16px 34px rgba(55,37,31,.22);
  cursor:pointer;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, background .2s ease;
  z-index:1000;
}

.gmt-back-to-top.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.gmt-back-to-top:hover{
  background:#5f1020;
}

.gmt-back-to-top svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.gmt-muted{
  color:#756b6e;
  line-height:1.55;
}

.gmt-journey-board{
  overflow:hidden;
}

.gmt-roadmap{
  display:grid;
  grid-template-columns:repeat(7, minmax(116px, 1fr));
  gap:10px;
  position:relative;
  margin-top:18px;
  padding:10px 4px 4px;
}

.gmt-roadmap:before{
  content:"";
  position:absolute;
  left:7%;
  right:7%;
  top:31px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, #0f766e, #d7a845, #e7ddda);
}

.gmt-roadmap-sign{
  position:relative;
  display:grid;
  align-content:start;
  justify-items:center;
  gap:10px;
  min-width:0;
  text-align:center;
  text-decoration:none;
  color:#251f21;
  padding:0 2px;
}

.gmt-roadmap-marker{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:var(--gmt-maroon);
  font-weight:900;
  border:3px solid #eadbd5;
  box-shadow:0 10px 22px rgba(55,37,31,.10);
  z-index:2;
}

.gmt-roadmap-copy{
  width:100%;
  min-height:78px;
  display:grid;
  align-content:center;
  gap:4px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  padding:12px 10px;
  box-shadow:0 10px 22px rgba(46,46,46,.035);
  transition:border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.gmt-roadmap-sign:hover .gmt-roadmap-copy,
.gmt-roadmap-sign:focus-visible .gmt-roadmap-copy{
  border-color:#d9b9ab;
  box-shadow:0 14px 28px rgba(133,21,43,.08);
  transform:translateY(-2px);
}

.gmt-roadmap-sign:focus-visible{
  outline:none;
}

.gmt-roadmap-sign.is-done .gmt-roadmap-marker{
  background:#0f766e;
  border-color:#0f766e;
  color:#fff;
}

.gmt-roadmap-sign.is-current .gmt-roadmap-marker{
  background:var(--gmt-maroon);
  border-color:var(--gmt-maroon);
  color:#fff;
}

.gmt-roadmap-sign.is-current .gmt-roadmap-copy{
  border-color:#d9b9ab;
  background:#fff7f4;
}

.gmt-roadmap-sign strong{
  color:var(--gmt-burgundy);
  font-size:.95rem;
  line-height:1.2;
}

.gmt-roadmap-sign small{
  color:#756b6e;
  font-weight:900;
  font-size:.74rem;
  line-height:1.2;
}

.gmt-journey-section{
  scroll-margin-top:24px;
}

.gmt-availability-hero{
  min-height:0;
  padding-top:34px;
  padding-bottom:22px;
}

.gmt-availability-hero h1{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.08;
  max-width:780px;
}

.gmt-availability-hero p:not(.gmt-kicker){
  max-width:620px;
}

.gmt-availability-panel{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  background:#fff;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:20px;
  box-shadow:0 14px 30px rgba(55,37,31,.06);
}

.gmt-availability-panel .gmt-section-heading h2{
  font-size:clamp(1.7rem, 3vw, 2.35rem);
}

.gmt-availability-month{
  min-width:150px;
  text-align:center;
  color:var(--gmt-burgundy);
}

.gmt-availability-grid{
  display:grid;
  grid-template-columns:repeat(7, minmax(0, 1fr));
  gap:8px;
  margin:14px 0 12px;
}

.gmt-availability-day{
  min-height:94px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fffdfb;
  padding:8px;
  display:grid;
  align-content:start;
  gap:8px;
}

.gmt-availability-day.empty{
  background:#f6f0ed;
}

.gmt-availability-day > strong{
  color:#302729;
  font-size:.88rem;
}

.gmt-availability-head{
  min-height:36px;
  place-items:center;
  background:#f1e8e2;
  color:#5b202f;
  font-weight:900;
}

.gmt-availability-slots{
  display:grid;
  gap:6px;
}

.gmt-slot-pill{
  border:0;
  border-radius:6px;
  background:#1d7a6c;
  color:#fff;
  padding:6px 7px;
  text-align:left;
  display:grid;
  gap:1px;
  cursor:pointer;
  font:inherit;
  font-size:.78rem;
  font-weight:900;
}

.gmt-slot-pill small{
  color:rgba(255,255,255,.78);
  font-size:.68rem;
  font-weight:800;
}

.gmt-mentor-calendar-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.gmt-calendar-summary{
  min-width:170px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff8ef;
  padding:14px;
  text-align:center;
}

.gmt-calendar-summary strong{
  display:block;
  color:var(--gmt-burgundy);
  font-size:2rem;
  line-height:1;
}

.gmt-calendar-summary span{
  color:#685d60;
  font-size:.82rem;
  font-weight:800;
}

.gmt-calendar-layout{
  grid-template-columns:minmax(0, 7fr) minmax(300px, 3fr);
  align-items:start;
}

.gmt-calendar-layout > .gmt-app-card:first-child{
  background:#202020;
  border-color:#444;
  color:#f4f4f4;
  padding:0;
  overflow:hidden;
}

.gmt-teams-calendar-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid #515151;
  margin:0;
  padding:12px 14px;
  background:#292929;
}

.gmt-teams-left,
.gmt-teams-right{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.gmt-teams-left h2{
  margin:0 0 0 8px;
  min-width:190px;
  color:#f3f2f1;
  font-size:1.15rem;
}

.gmt-calendar-icon-btn,
.gmt-calendar-view-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  border:1px solid #5a5a5a;
  border-radius:7px;
  background:#2f2f2f;
  color:#f3f2f1;
  cursor:pointer;
  font:inherit;
  font-size:.86rem;
  font-weight:850;
  padding:7px 11px;
}

.gmt-calendar-icon-btn:hover{
  background:#3a3a3a;
  border-color:#777;
}

.gmt-calendar-icon-btn[aria-label]{
  min-width:36px;
  padding:7px 10px;
  font-size:1.15rem;
  line-height:1;
}

.gmt-calendar-weekdays{
  display:grid;
  grid-template-columns:repeat(7, minmax(112px, 1fr));
  border:1px solid var(--gmt-line);
  border-bottom:0;
  border-color:#515151;
  border-radius:0;
  overflow:hidden;
  background:#252525;
}

.gmt-calendar-weekdays span{
  min-height:34px;
  border-right:1px solid #515151;
  color:#c8c6c4;
  font-size:.76rem;
  font-weight:850;
  padding:9px 10px;
}

.gmt-calendar-weekdays span:last-child{
  border-right:0;
}

.gmt-mentor-calendar{
  display:grid;
  grid-template-columns:repeat(7, minmax(112px, 1fr));
  gap:1px;
  overflow-x:auto;
  padding:0;
  border:1px solid #515151;
  border-radius:0;
  background:#515151;
}

.gmt-mentor-calendar-day{
  min-height:126px;
  border:0;
  border-radius:0;
  background:#202020;
  cursor:pointer;
  display:grid;
  grid-template-rows:auto 1fr;
  gap:8px;
  padding:0;
  overflow:hidden;
}

.gmt-mentor-calendar-day.selected{
  box-shadow:inset 0 0 0 2px #6264a7;
}

.gmt-mentor-calendar-day.has-slots{
  background:#22232f;
}

.gmt-mentor-calendar-day:hover{
  background:#282828;
}

.gmt-mentor-calendar-day.has-slots:hover{
  background:#292a3a;
}

.gmt-mentor-calendar-day.outside-month{
  background:#1c1c1c;
}

.gmt-mentor-calendar-day.outside-month .gmt-calendar-date-button{
  background:#1c1c1c;
  color:#858585;
}

.gmt-mentor-calendar-day.today .gmt-calendar-date-button strong{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#6264a7;
  color:#fff;
}

.gmt-calendar-date-button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:38px;
  border:0;
  border-bottom:1px solid #3d3d3d;
  background:#202020;
  color:#f3f2f1;
  cursor:pointer;
  font:inherit;
  padding:7px 9px;
  text-align:left;
}

.gmt-calendar-date-button:hover,
.gmt-mentor-calendar-day.selected .gmt-calendar-date-button{
  background:#2c2c38;
}

.gmt-calendar-date-button span{
  color:#c8c6c4;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
}

.gmt-calendar-date-button strong{
  color:#f3f2f1;
  font-size:.95rem;
}

.gmt-mentor-slot-list{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:0 7px 8px;
}

.gmt-mentor-slot{
  border:1px solid rgba(124,124,205,.55);
  border-left:4px solid #8b8cf7;
  border-radius:4px;
  background:#3b3a75;
  color:#f4f4ff;
  cursor:pointer;
  font:inherit;
  font-size:.75rem;
  font-weight:900;
  min-height:26px;
  padding:5px 7px;
  text-align:left;
}

.gmt-mentor-slot:hover{
  background:#4a4992;
  border-color:#8b8cf7;
}

.gmt-availability-editor{
  position:sticky;
  top:18px;
}

.gmt-time-editor{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.gmt-time-editor label{
  display:grid;
  gap:6px;
  color:#3d3437;
  font-size:.86rem;
  font-weight:900;
}

.gmt-time-editor input{
  width:100%;
  max-width:none;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fff;
  font:inherit;
  padding:11px 12px;
}

.gmt-selected-slots{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.gmt-selected-slots p{
  color:#6b5f63;
  margin:0;
}

.gmt-selected-slot{
  border:1px solid rgba(29,122,108,.35);
  border-radius:999px;
  background:#eaf8f5;
  color:#115e54;
  cursor:pointer;
  font:inherit;
  font-size:.82rem;
  font-weight:900;
  padding:7px 10px;
}

.gmt-availability-note{
  display:grid;
  gap:6px;
  margin-top:16px;
  border:1px solid #eed7bf;
  border-radius:8px;
  background:#fff8ef;
  padding:12px;
}

.gmt-availability-note p{
  margin:0;
}

.gmt-availability-prompt{
  margin-bottom:18px;
  border-left:5px solid #1d7a6c;
}

.gmt-matched-mentees-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.gmt-messages-layout{
  display:grid;
  grid-template-columns:minmax(260px, 360px) minmax(0, 1fr);
  gap:18px;
}

.gmt-message-thread{
  display:grid;
  gap:4px;
  text-decoration:none;
  color:#2b2325;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:12px;
  background:#fffaf7;
}

.gmt-message-thread:hover,
.gmt-message-thread.active{
  border-color:rgba(133,21,43,.36);
  background:#fff;
}

.gmt-message-thread small{
  color:#756b6e;
  font-weight:900;
}

.gmt-chat-panel{
  min-height:620px;
}

.gmt-chatbox{
  height:430px;
  overflow:auto;
  display:grid;
  align-content:start;
  gap:10px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  background:#fbf8f6;
  padding:14px;
}

.gmt-chat-empty{
  min-height:360px;
  display:grid;
  place-items:center;
  color:#756b6e;
  font-weight:800;
}

.gmt-msg-row{
  display:flex;
}

.gmt-msg-row.me{
  justify-content:flex-end;
}

.gmt-msg-row.them{
  justify-content:flex-start;
}

.gmt-msg{
  max-width:min(72%, 560px);
  display:grid;
  gap:8px;
  border-radius:8px;
  padding:12px 14px;
  line-height:1.5;
  word-break:break-word;
  white-space:pre-wrap;
}

.gmt-msg.me{
  background:var(--gmt-maroon);
  color:#fff;
}

.gmt-msg.them{
  background:#fff;
  border:1px solid var(--gmt-line);
  color:#2b2325;
}

.gmt-msg small{
  font-size:.74rem;
  opacity:.78;
  font-weight:800;
}

.gmt-chat-compose{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:10px;
  margin-top:12px;
}

.gmt-chat-compose input{
  width:100%;
  min-height:44px;
  border:1px solid var(--gmt-line);
  border-radius:8px;
  padding:0 12px;
  font:inherit;
}

@media (max-width: 1180px){
  .gmt-workspace-header{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  .gmt-roadmap{
    grid-template-columns:1fr;
    gap:12px;
    padding-left:0;
  }
  .gmt-roadmap:before{
    left:22px;
    right:auto;
    top:24px;
    bottom:24px;
    width:3px;
    height:auto;
  }
  .gmt-roadmap-sign{
    grid-template-columns:44px minmax(0, 1fr);
    gap:12px;
    align-items:center;
    justify-items:start;
    text-align:left;
  }
  .gmt-roadmap-copy{
    min-height:0;
    padding:11px 12px;
  }
  .gmt-roadmap-sign strong{
    font-size:.92rem;
  }
  .gmt-availability-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .gmt-availability-head{
    display:none;
  }
  .gmt-messages-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .gmt-workspace-header,
  .gmt-workspace-layout,
  .gmt-form-grid{
    grid-template-columns:1fr;
  }
  .gmt-workspace-tabs{
    position:static;
  }
  .gmt-section-heading{
    display:grid;
  }
  .gmt-availability-panel{
    width:100%;
    padding:16px;
  }
  .gmt-availability-grid{
    grid-template-columns:1fr;
  }
  .gmt-chat-compose{
    grid-template-columns:1fr;
  }
  .gmt-msg{
    max-width:100%;
  }
}

@media (max-width: 1180px){
  .gmt-calendar-layout{
    grid-template-columns:minmax(0, 1fr);
  }

  .gmt-availability-editor{
    position:static;
  }

  .gmt-matched-mentees-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  .gmt-mentor-calendar-hero{
    flex-direction:column;
    align-items:stretch;
  }

  .gmt-teams-calendar-toolbar{
    align-items:flex-start;
    flex-direction:column;
  }

  .gmt-calendar-weekdays{
    grid-template-columns:repeat(7, minmax(112px, 1fr));
    overflow-x:auto;
  }

  .gmt-mentor-calendar{
    grid-template-columns:repeat(7, minmax(112px, 1fr));
  }
}

@media (max-width: 520px){
  .gmt-calendar-weekdays,
  .gmt-mentor-calendar{
    grid-template-columns:repeat(7, minmax(96px, 1fr));
  }

  .gmt-mentor-calendar-day{
    min-height:112px;
  }

  .gmt-matched-mentees-grid{
    grid-template-columns:1fr;
  }
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.gmt-mobile-menu-button{
  display:none;
  position:fixed;
  left:16px;
  top:14px;
  z-index:1200;
  border:1px solid #d7dee8;
  background:#fff;
  color:#1f2a37;
  border-radius:8px;
  padding:9px 12px;
  font-weight:800;
  box-shadow:0 12px 24px rgba(15,23,42,.12);
}

.gmt-global-search input{
  border:1px solid #d7dee8;
  border-radius:8px;
  background:#fff;
  min-height:40px;
  padding:0 12px;
  font:inherit;
}

.gmt-global-search input:focus,
.gmt-language-control:focus-within{
  border-color:#c8a99b;
  outline:3px solid rgba(133,21,43,.12);
  outline-offset:1px;
}

.gmt-global-search{
  flex:1 1 320px;
  max-width:460px;
}

.gmt-global-search input{
  width:100%;
}

.gmt-command-link{
  font-weight:800;
  color:#334155;
  text-decoration:none;
  border-radius:6px;
  padding:7px 8px;
  white-space:nowrap;
}

.gmt-command-link:hover,
.gmt-command-link:focus-visible{
  background:#fbf7f5;
  color:var(--gmt-maroon);
  outline:none;
}

.gmt-support-widget{
  position:fixed;
  right:24px;
  bottom:86px;
  z-index:1250;
}

.gmt-support-launcher{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:48px;
  border:1px solid #711126;
  border-radius:999px;
  background:var(--gmt-maroon);
  color:#fff;
  padding:0 18px;
  font:inherit;
  font-weight:900;
  box-shadow:0 18px 36px rgba(47,11,22,.22);
  cursor:pointer;
}

.gmt-support-launcher::before{
  content:"";
  width:18px;
  height:18px;
  border:2px solid currentColor;
  border-radius:50%;
  box-shadow:inset 0 -5px 0 rgba(255,255,255,.18);
}

.gmt-support-launcher:hover,
.gmt-support-launcher:focus-visible{
  background:#6f1126;
  outline:3px solid rgba(133,21,43,.18);
  outline-offset:3px;
}

.gmt-support-panel{
  position:absolute;
  right:0;
  bottom:62px;
  width:min(360px, calc(100vw - 32px));
  overflow:hidden;
  border:1px solid #eadbd5;
  border-radius:8px;
  background:#fff;
  box-shadow:0 24px 60px rgba(15,23,42,.20);
}

.gmt-support-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  background:#fbf7f5;
  border-bottom:1px solid #eadbd5;
}

.gmt-support-header strong,
.gmt-support-header span{
  display:block;
}

.gmt-support-header strong{
  color:var(--gmt-burgundy);
  font-size:1rem;
}

.gmt-support-header span{
  margin-top:2px;
  color:#655d5d;
  font-size:.82rem;
  font-weight:800;
}

.gmt-support-header button{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border:1px solid #eadbd5;
  border-radius:8px;
  background:#fff;
  color:#4b1b25;
  font-size:1.2rem;
  line-height:1;
  cursor:pointer;
}

.gmt-support-body{
  display:grid;
  gap:12px;
  padding:16px;
}

.gmt-support-message{
  max-width:92%;
  border-radius:8px;
  padding:11px 12px;
  line-height:1.5;
  font-size:.9rem;
}

.gmt-support-message.response{
  justify-self:start;
  background:#fbf7f5;
  color:#42383b;
  border:1px solid #eadbd5;
}

.gmt-support-message.user{
  justify-self:end;
  background:#0f766e;
  color:#fff;
}

.gmt-support-body p{
  margin:0;
  color:#42383b;
  line-height:1.55;
}

.gmt-support-quick-actions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
}

.gmt-support-quick-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  border-radius:8px;
  border:1px solid #d7dee8;
  background:#fff;
  color:#334155;
  text-decoration:none;
  font-weight:900;
  font-size:.8rem;
  padding:0 10px;
  text-align:center;
}

.gmt-support-quick-actions a:hover,
.gmt-support-quick-actions a:focus-visible{
  border-color:#0f766e;
  color:#0f766e;
  outline:none;
}

.gmt-support-compose{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:8px;
  padding-top:4px;
}

.gmt-support-compose input{
  min-height:40px;
  min-width:0;
  border:1px solid #d7dee8;
  border-radius:8px;
  padding:0 11px;
  font:inherit;
}

.gmt-support-compose input:focus{
  border-color:#0f766e;
  outline:3px solid rgba(15,118,110,.14);
}

.gmt-support-compose button{
  min-height:40px;
  border:0;
  border-radius:8px;
  background:#0f766e;
  color:#fff;
  font:inherit;
  font-weight:900;
  padding:0 13px;
  cursor:pointer;
}

@media (max-width: 680px){
  .gmt-support-widget{
    right:16px;
    bottom:82px;
  }

  .gmt-back-to-top{
    right:16px;
    bottom:18px;
  }
}

body:has(#requestMentorshipForm) .gmt-support-widget{
  left:24px;
  right:auto;
  bottom:24px;
}

body:has(#requestMentorshipForm) .gmt-support-panel{
  left:0;
  right:auto;
}

body:has(#requestMentorshipForm) .gmt-back-to-top{
  left:24px;
  right:auto;
  bottom:86px;
}

@media (max-width: 680px){
  body:has(#requestMentorshipForm) .gmt-support-widget{
    left:16px;
    right:auto;
    bottom:82px;
  }

  body:has(#requestMentorshipForm) .gmt-back-to-top{
    left:16px;
    right:auto;
    bottom:18px;
  }
}

.gmt-empty-state{
  grid-column:1/-1;
  border:1px dashed #cbd5e1;
  border-radius:8px;
  padding:24px;
  background:#f8fafc;
  color:#475569;
}

.gmt-empty-state h2{
  margin:0 0 6px;
  color:#172033;
}

.gmt-empty-icon{
  width:34px;
  height:34px;
  border-radius:8px;
  background:linear-gradient(135deg,#0f766e,#b88a2e);
  margin-bottom:12px;
}

.gmt-status.success{ background:#e8f7ef; color:#146c43; border-color:#b7e4c7; }
.gmt-status.warning{ background:#fff7e6; color:#8a5a00; border-color:#f2d28a; }
.gmt-status.danger{ background:#fdeeee; color:#b42318; border-color:#f2b8b5; }
.gmt-status.neutral{ background:#eef2f7; color:#334155; border-color:#d7dee8; }

.gmt-directory-command{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,460px);
  gap:18px;
  align-items:end;
}

.gmt-directory-command .gmt-tabs{
  grid-column:1/-1;
}

.gmt-card-utilities{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  min-width:0;
  margin-bottom:10px;
}

.gmt-compare-check{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-width:0;
  font-size:13px;
  font-weight:800;
  color:#334155;
}

.gmt-icon-button{
  flex:0 0 auto;
  border:1px solid #d7dee8;
  background:#fff;
  border-radius:8px;
  color:#334155;
  min-height:34px;
  padding:0 13px;
  font-weight:900;
}

.gmt-icon-button.active{
  background:#0f766e;
  border-color:#0f766e;
  color:#fff;
}

.gmt-card-score{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:14px 0;
}

.gmt-card-score span{
  font-size:32px;
  line-height:1;
  font-weight:900;
  color:#0f766e;
}

.gmt-selection-bar{
  position:sticky;
  top:12px;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  border:1px solid #d7dee8;
  background:#fff;
  border-radius:8px;
  padding:12px 16px;
  margin-bottom:18px;
  box-shadow:0 14px 30px rgba(15,23,42,.10);
}

.gmt-compare-grid{
  display:grid;
  grid-template-columns:repeat(var(--compare-count), minmax(0,1fr));
  gap:16px;
}

.gmt-compare-card{
  border:1px solid #e2e8f0;
  border-radius:8px;
  padding:18px;
  background:#fff;
}

.gmt-compare-list{
  display:grid;
  gap:0;
  margin:18px 0;
}

.gmt-compare-list div{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #eef2f7;
}

.gmt-compare-list dt{
  color:#64748b;
  font-weight:800;
}

.gmt-compare-list dd{
  margin:0;
  color:#172033;
}

.gmt-wizard{
  display:grid;
  gap:16px;
}

.gmt-stepper{
  display:grid;
  grid-template-columns:repeat(5, minmax(76px, 1fr));
  gap:6px;
  list-style:none;
  padding:0;
  margin:0;
  overflow-x:auto;
  scrollbar-width:thin;
}

.gmt-stepper li{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border:1px solid #d7dee8;
  border-radius:8px;
  padding:8px 9px;
  color:#64748b;
  font-size:12px;
  font-weight:900;
  text-align:center;
  white-space:nowrap;
}

.gmt-stepper li span{
  display:inline-grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#eef2f7;
  color:#334155;
  font-size:11px;
  line-height:1;
}

.gmt-stepper li.active{
  color:#0f766e;
  border-color:#0f766e;
  background:#e8f7ef;
}

.gmt-stepper li.active span{
  background:#0f766e;
  color:#fff;
}

.gmt-stepper li.complete{
  color:#6b1024;
  border-color:#eadbd5;
  background:#fbf7f5;
}

.gmt-stepper li.complete span{
  background:#6b1024;
  color:#fff;
}

.gmt-wizard-panel{
  display:none;
}

.gmt-wizard-panel.active{
  display:grid;
  gap:12px;
}

.gmt-wizard-panel h3{
  margin:0;
  font-size:16px;
}

.gmt-wizard-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
  border-top:1px solid #eef2f7;
  padding-top:14px;
}

.gmt-wizard-actions .gmt-btn{
  flex:0 0 auto;
  min-width:max-content;
}

.gmt-wizard-spacer{
  flex:1 1 auto;
}

.gmt-confirmation-state{
  border:1px solid #b7e4c7;
  border-radius:8px;
  background:#e8f7ef;
  padding:14px;
  color:#146c43;
  font-weight:700;
}

.gmt-sticky-tabs{
  position:sticky;
  top:0;
  z-index:10;
  background:#f8fafc;
  padding:10px 0;
}

.gmt-timeline{
  display:grid;
  gap:12px;
}

.gmt-timeline > div{
  border-left:3px solid #0f766e;
  background:#f8fafc;
  border-radius:0 8px 8px 0;
  padding:12px 14px;
}

.gmt-journey-progress-card{
  margin-top:14px;
}

.gmt-journey-progress-card .gmt-section-heading{
  margin-bottom:16px;
}

.gmt-journey-timeline{
  grid-template-columns:repeat(4, minmax(150px, 1fr));
  gap:12px;
}

.gmt-journey-timeline > div{
  min-height:86px;
  border:1px solid #e8edf3;
  border-left:4px solid #0f766e;
  border-radius:8px;
  background:#fbfcfe;
  padding:14px 16px;
  box-shadow:0 8px 18px rgba(15,23,42,.035);
}

.gmt-journey-timeline strong{
  color:#111827;
  font-size:.96rem;
  line-height:1.25;
}

.gmt-journey-timeline span{
  color:#5e6b7c;
  font-size:.92rem;
  line-height:1.3;
}

.gmt-timeline strong{
  display:block;
  color:#172033;
}

.gmt-timeline span,
.gmt-timeline p{
  color:#64748b;
  margin:4px 0 0;
}

.gmt-session-hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.gmt-premium-profile .gmt-mentor-head{
  padding-bottom:18px;
  border-bottom:1px solid #eef2f7;
  margin-bottom:18px;
}

@media (max-width: 900px){
  .gmt-mobile-menu-button{
    display:block;
  }

  .gmt-app-page .gmt-app-sidebar{
    position:fixed;
    inset:0 auto 0 0;
    width:min(84vw,320px);
    transform:translateX(-105%);
    transition:transform .18s ease;
    z-index:1100;
    box-shadow:18px 0 40px rgba(15,23,42,.22);
  }

  .gmt-app-page .gmt-app-sidebar.open{
    transform:translateX(0);
  }

  .gmt-app-page .gmt-app-main{
    padding-top:64px;
  }

  .gmt-app-topbar{
    align-items:stretch;
  }

  .gmt-global-search{
    max-width:none;
    width:100%;
  }

  .gmt-directory-command,
  .gmt-profile-layout,
  .gmt-compare-grid{
    grid-template-columns:1fr;
  }

  .gmt-selection-bar,
  .gmt-session-hero{
    align-items:flex-start;
    flex-direction:column;
  }

  .gmt-stepper{
    grid-template-columns:1fr;
  }
}

.gmt-admin-page{
  margin:0;
  background:#f6f8fb;
  color:#172033;
  font-family:Manrope, Arial, sans-serif;
}

.gmt-admin-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
}

.gmt-admin-sidebar{
  background:#111827;
  color:#e5e7eb;
  padding:22px 18px;
  position:sticky;
  top:0;
  height:100vh;
  overflow:auto;
}

.gmt-admin-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  margin-bottom:22px;
}

.gmt-admin-brand img{
  width:38px;
  height:38px;
  background:#fff;
  border-radius:8px;
  padding:4px;
}

.gmt-admin-nav{
  display:grid;
  gap:5px;
}

.gmt-admin-nav strong{
  color:#9ca3af;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.08em;
  margin:16px 0 4px;
}

.gmt-admin-nav a{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d1d5db;
  text-decoration:none;
  border-radius:8px;
  padding:10px 12px;
  font-weight:800;
}

.gmt-admin-nav a span{
  width:22px;
  height:22px;
  border-radius:7px;
  display:inline-grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  font-size:11px;
}

.gmt-admin-nav a.active,
.gmt-admin-nav a:hover{
  background:#fff;
  color:#111827;
}

.gmt-admin-main{
  min-width:0;
  padding:22px;
}

.gmt-admin-topbar{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.gmt-admin-search{
  flex:1 1 420px;
}

.gmt-admin-search input,
.gmt-admin-context select,
.gmt-admin-filters input,
.gmt-admin-filters select{
  width:100%;
  min-height:42px;
  border:1px solid #d7dee8;
  border-radius:8px;
  background:#fff;
  padding:0 12px;
  font:inherit;
}

.gmt-admin-topbar a{
  color:#334155;
  text-decoration:none;
  font-weight:800;
}

.gmt-admin-profile{
  padding:9px 12px;
  border:1px solid #d7dee8;
  border-radius:8px;
  background:#fff;
  font-weight:800;
}

.gmt-admin-page-header{
  margin-bottom:18px;
}

.gmt-admin-page-header h1{
  margin:0;
  font-size:28px;
  letter-spacing:0;
}

.gmt-admin-hero,
.gmt-admin-filter-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:8px;
  padding:20px;
  margin-bottom:18px;
}

.gmt-admin-hero h2{
  margin:0 0 8px;
  font-size:28px;
}

.gmt-admin-filters{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
  align-items:end;
}

.gmt-admin-filters label{
  display:grid;
  gap:6px;
  color:#475569;
  font-weight:800;
  font-size:12px;
}

.gmt-admin-kpi{
  text-decoration:none;
  color:inherit;
}

.gmt-admin-action-list{
  display:grid;
  gap:10px;
}

.gmt-admin-action-list a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  color:#172033;
  text-decoration:none;
  background:#fff;
}

.gmt-admin-menu-toggle{
  display:none;
  position:fixed;
  top:14px;
  left:14px;
  z-index:1200;
  border:1px solid #d7dee8;
  border-radius:8px;
  background:#fff;
  padding:9px 12px;
  font-weight:900;
}

.gmt-admin-table-card{
  overflow:auto;
}

.gmt-enterprise-table{
  width:100%;
  border-collapse:collapse;
  min-width:860px;
}

.gmt-enterprise-table th,
.gmt-enterprise-table td{
  border-bottom:1px solid #eef2f7;
  padding:12px;
  text-align:left;
  vertical-align:top;
}

.gmt-enterprise-table th{
  color:#64748b;
  font-size:12px;
  text-transform:uppercase;
}

.gmt-roadmap-v2{
  display:grid !important;
  grid-template-columns:repeat(auto-fit, minmax(128px, 1fr)) !important;
  gap:14px !important;
  position:relative !important;
  padding:18px 0 4px !important;
  margin-top:14px !important;
}

.gmt-roadmap-v2::before{
  content:"" !important;
  position:absolute !important;
  left:7% !important;
  right:7% !important;
  top:39px !important;
  height:3px !important;
  border-radius:999px !important;
  background:linear-gradient(90deg, #0f766e, #d7a845, #e7ddda) !important;
  z-index:0 !important;
}

.gmt-roadmap-v2 .gmt-roadmap-sign{
  position:relative !important;
  z-index:1 !important;
  display:grid !important;
  grid-template-rows:auto 1fr !important;
  justify-items:center !important;
  gap:10px !important;
  min-height:0 !important;
  padding:0 !important;
  text-align:center !important;
  text-decoration:none !important;
  background:transparent !important;
  border:0 !important;
  color:#241f21 !important;
}

.gmt-roadmap-v2 .gmt-roadmap-marker{
  width:42px !important;
  height:42px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:50% !important;
  background:#fff !important;
  border:3px solid #eadbd5 !important;
  color:var(--gmt-maroon) !important;
  font-weight:900 !important;
  box-shadow:0 8px 18px rgba(55,37,31,.10) !important;
}

.gmt-roadmap-v2 .gmt-roadmap-copy{
  width:100% !important;
  min-height:70px !important;
  display:grid !important;
  align-content:center !important;
  gap:3px !important;
  border:1px solid var(--gmt-line) !important;
  border-radius:8px !important;
  background:#fff !important;
  padding:11px 10px !important;
  box-shadow:0 8px 18px rgba(46,46,46,.035) !important;
}

.gmt-roadmap-v2 .gmt-roadmap-sign.is-done .gmt-roadmap-marker{
  background:#0f766e !important;
  border-color:#0f766e !important;
  color:#fff !important;
}

.gmt-roadmap-v2 .gmt-roadmap-sign.is-current .gmt-roadmap-marker{
  background:var(--gmt-maroon) !important;
  border-color:var(--gmt-maroon) !important;
  color:#fff !important;
}

.gmt-roadmap-v2 .gmt-roadmap-sign.is-current .gmt-roadmap-copy{
  border-color:#d9b9ab !important;
  background:#fff7f4 !important;
}

.gmt-roadmap-v2 .gmt-roadmap-sign strong{
  color:var(--gmt-burgundy) !important;
  font-size:.94rem !important;
  line-height:1.2 !important;
}

.gmt-roadmap-v2 .gmt-roadmap-sign small{
  color:#756b6e !important;
  font-size:.72rem !important;
  font-weight:900 !important;
}

@media (max-width: 760px){
  .gmt-roadmap-v2{
    grid-template-columns:1fr !important;
    padding-left:0 !important;
  }

  .gmt-roadmap-v2::before{
    left:20px !important;
    right:auto !important;
    top:22px !important;
    bottom:22px !important;
    width:3px !important;
    height:auto !important;
  }

  .gmt-roadmap-v2 .gmt-roadmap-sign{
    grid-template-columns:42px minmax(0, 1fr) !important;
    grid-template-rows:auto !important;
    text-align:left !important;
    align-items:center !important;
  }

  .gmt-roadmap-v2 .gmt-roadmap-copy{
    min-height:0 !important;
  }
}

@media (max-width: 1100px){
  .gmt-admin-filters{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .gmt-admin-menu-toggle{
    display:block;
  }

  .gmt-admin-shell{
    grid-template-columns:1fr;
  }

  .gmt-admin-sidebar{
    position:fixed;
    inset:0 auto 0 0;
    z-index:1100;
    width:min(86vw,320px);
    transform:translateX(-105%);
    transition:transform .18s ease;
  }

  .gmt-admin-sidebar.open{
    transform:translateX(0);
  }

  .gmt-admin-main{
    padding-top:64px;
  }

  .gmt-admin-topbar{
    align-items:stretch;
    flex-direction:column;
  }

  .gmt-admin-filters{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .gmt-app-topbar{
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .gmt-global-search{
    order:3;
    flex:1 1 100%;
  }

  .gmt-app-account{
    min-width:0;
    flex:0 0 auto;
  }

  .gmt-help-layout,
  .gmt-settings-grid{
    grid-template-columns:1fr;
  }

  .gmt-help-search{
    grid-template-columns:1fr;
  }

  .gmt-help-contact-band{
    align-items:flex-start;
    flex-direction:column;
  }

  .gmt-workspace-hero,
  .gmt-overview-summary-grid{
    grid-template-columns:1fr;
  }

  .gmt-compact-journey{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .gmt-session-page-header,
  .gmt-next-step-card{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width: 560px){
  .gmt-app-account{
    width:100%;
    justify-content:flex-end;
  }

  .gmt-language-control{
    display:none;
  }

  .gmt-context-switcher label{
    width:100%;
    justify-content:space-between;
  }

  .gmt-compact-journey{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .gmt-session-card{
    grid-template-columns:1fr;
  }

  .gmt-session-date{
    width:72px;
  }

  .gmt-session-main > div:first-child{
    flex-direction:column;
  }
}
