/* ========================================
   BIVA V2 — TALENT OPERATIONS DASHBOARD
======================================== */


/* ========================================
   PAGE SHELL RESET
======================================== */

body:has(.talent-admin-shell) {
  overflow-x: hidden;
}

body:has(.talent-admin-shell)
.portal-shell {
  width: 100%;
  min-height: 100vh;

  display: block;

  padding: 0;
}

body:has(.talent-admin-shell)
.portal-card {
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 100vh;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  background: transparent;

  box-shadow: none;
  backdrop-filter: none;
}


/* ========================================
   ADMIN ROOT
======================================== */

.talent-admin-shell {
  --talent-sidebar-width: 270px;

  width: 100%;
  min-width: 0;
  min-height: 100vh;

  display: grid;

  grid-template-columns:
    var(--talent-sidebar-width)
    minmax(0, 1fr);

  color:
    var(--biva-text);

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(53, 112, 243, 0.08),
      transparent 27%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 200, 46, 0.07),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #f9fbff 0%,
      var(--biva-page-bg) 100%
    );
}


/* ========================================
   SIDEBAR
======================================== */

.talent-ops-sidebar {
  position: sticky;
  top: 0;

  z-index: 1000;

  width:
    var(--talent-sidebar-width);

  min-width: 220px;
  max-width: 380px;
  height: 100vh;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.08);

  color: #ffffff;

  background:
    radial-gradient(
      circle at 90% 2%,
      rgba(53, 112, 243, 0.28),
      transparent 32%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(255, 200, 46, 0.07),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      var(--biva-black) 0%,
      var(--biva-black-soft) 58%,
      #111d37 100%
    );

  box-shadow:
    14px 0 45px
    rgba(7, 11, 20, 0.12);
}

.talent-ops-sidebar__inner {
  width: 100%;
  height: 100%;

  padding:
    22px 16px 18px;

  display: flex;
  flex-direction: column;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;

  scrollbar-color:
    rgba(255, 255, 255, 0.18)
    transparent;
}

.talent-ops-sidebar__inner::-webkit-scrollbar {
  width: 6px;
}

.talent-ops-sidebar__inner::-webkit-scrollbar-track {
  background: transparent;
}

.talent-ops-sidebar__inner::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.16);
}


/* ========================================
   SIDEBAR BRAND
======================================== */

.talent-ops-nav-brand {
  min-width: 0;

  padding:
    4px 4px 18px;

  display: flex;
  align-items: center;

  gap: 12px;
}

.talent-ops-brand-mark {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 15px;

  color:
    var(--biva-black);

  background:
    linear-gradient(
      145deg,
      var(--biva-yellow-400),
      var(--biva-yellow-500)
    );

  box-shadow:
    0 14px 28px
    rgba(242, 183, 5, 0.18);

  font-size: 1.1rem;
  font-weight: 900;
}

.talent-ops-brand-text {
  min-width: 0;

  display: grid;

  gap: 1px;
}

.talent-ops-brand-text strong {
  overflow: hidden;

  color: #ffffff;

  font-size: 0.96rem;
  font-weight: 900;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-ops-brand-text span {
  overflow: hidden;

  color:
    rgba(255, 255, 255, 0.52);

  font-size: 0.68rem;
  font-weight: 750;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-ops-nav-divider {
  height: 1px;

  margin-bottom: 17px;

  background:
    rgba(255, 255, 255, 0.08);
}


/* ========================================
   SIDEBAR NAVIGATION
======================================== */

.talent-ops-nav {
  min-width: 0;

  display: grid;

  gap: 23px;
}

.talent-ops-nav-group {
  min-width: 0;
}

.talent-ops-nav-section-title {
  margin:
    0 8px 8px;

  color:
    rgba(255, 255, 255, 0.37);

  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.talent-ops-nav-links {
  display: grid;

  gap: 4px;
}

.talent-ops-nav-btn {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 44px;

  padding:
    9px 11px;

  display: flex;
  align-items: center;

  gap: 11px;

  border:
    1px solid transparent;

  border-radius: 13px;

  color:
    rgba(255, 255, 255, 0.66);

  background: transparent;

  font: inherit;

  cursor: pointer;

  text-align: left;

  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.talent-ops-nav-btn:hover {
  color: #ffffff;

  border-color:
    rgba(255, 255, 255, 0.08);

  background:
    rgba(255, 255, 255, 0.06);

  transform:
    translateX(2px);
}

.talent-ops-nav-btn.active {
  color: #ffffff;

  border-color:
    rgba(97, 144, 255, 0.18);

  background:
    linear-gradient(
      90deg,
      rgba(53, 112, 243, 0.24),
      rgba(53, 112, 243, 0.08)
    );

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.06);
}

.talent-ops-nav-icon {
  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  color:
    rgba(255, 255, 255, 0.58);

  background:
    rgba(255, 255, 255, 0.045);
}

.talent-ops-nav-btn:hover
.talent-ops-nav-icon,
.talent-ops-nav-btn.active
.talent-ops-nav-icon {
  color:
    var(--biva-blue-400);

  background:
    rgba(53, 112, 243, 0.13);
}

.talent-ops-nav-icon svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-ops-nav-label {
  min-width: 0;

  overflow: hidden;

  font-size: 0.74rem;
  font-weight: 760;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-ops-nav-active-mark {
  width: 5px;
  height: 5px;

  margin-left: auto;

  flex: 0 0 5px;

  border-radius: 50%;

  background:
    var(--biva-yellow-400);

  box-shadow:
    0 0 0 5px
    rgba(255, 200, 46, 0.09);
}


/* Notification badge */

.notification-badge {
  min-width: 20px;
  min-height: 20px;

  margin-left: auto;
  padding: 2px 6px;

  display: none;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color:
    var(--biva-black);

  background:
    var(--biva-yellow-400);

  font-size: 0.59rem;
  font-weight: 900;
  line-height: 1;
}

.notification-badge:not(:empty) {
  display: inline-flex;
}


/* ========================================
   SIDEBAR FOOTER
======================================== */

.talent-ops-nav-footer {
  margin-top: auto;
  padding:
    16px 8px 2px;

  display: flex;
  align-items: center;

  gap: 10px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.talent-ops-nav-footer-dot {
  width: 9px;
  height: 9px;

  flex: 0 0 9px;

  border-radius: 50%;

  background:
    #4bdd9d;

  box-shadow:
    0 0 0 5px
    rgba(75, 221, 157, 0.1);
}

.talent-ops-nav-footer-copy {
  min-width: 0;

  display: grid;

  gap: 1px;
}

.talent-ops-nav-footer-copy strong {
  color:
    rgba(255, 255, 255, 0.8);

  font-size: 0.68rem;
  font-weight: 820;
}

.talent-ops-nav-footer-copy span {
  color:
    rgba(255, 255, 255, 0.38);

  font-size: 0.6rem;
}


/* ========================================
   SIDEBAR RESIZER
======================================== */

.talent-sidebar-resizer {
  position: absolute;

  top: 0;
  right: -4px;
  bottom: 0;

  z-index: 10;

  width: 8px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: col-resize;
}

.talent-sidebar-resizer::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: 3px;

  width: 2px;

  background: transparent;

  transition:
    background-color 160ms ease;
}

.talent-sidebar-resizer:hover::before,
.talent-sidebar-resizer:focus-visible::before {
  background:
    var(--biva-blue-500);
}


/* ========================================
   MAIN CONTENT
======================================== */

.talent-admin-main {
  min-width: 0;

  padding:
    clamp(22px, 3vw, 48px);

  overflow: hidden;
}


/* ========================================
   ADMIN HERO
======================================== */

.talent-admin-hero {
  position: relative;

  width: 100%;
  min-height: 250px;

  padding:
    clamp(28px, 4vw, 52px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(310px, 0.85fr);

  align-items: center;

  gap:
    clamp(30px, 5vw, 70px);

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius:
    var(--biva-radius-xl);

  color: #ffffff;

  background:
    radial-gradient(
      circle at 92% 7%,
      rgba(53, 112, 243, 0.42),
      transparent 35%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(255, 200, 46, 0.09),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      var(--biva-black),
      var(--biva-black-soft) 56%,
      #173675
    );

  box-shadow:
    0 28px 75px
    rgba(7, 11, 20, 0.19);

  overflow: hidden;
}

.talent-admin-hero::before {
  content: "";

  position: absolute;
  inset: 0 0 auto 0;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--biva-blue-500),
      var(--biva-yellow-400),
      transparent 88%
    );
}

.talent-admin-hero::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -110px;
  bottom: -205px;

  border:
    1px solid
    rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  box-shadow:
    0 0 0 52px
    rgba(255, 255, 255, 0.024),

    0 0 0 104px
    rgba(255, 255, 255, 0.012);

  pointer-events: none;
}

.talent-admin-hero > * {
  position: relative;
  z-index: 1;
}

.talent-admin-hero__kicker {
  display: block;

  margin-bottom: 11px;

  color:
    var(--biva-yellow-400);

  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.talent-admin-hero__content h1 {
  max-width: 850px;

  margin: 0;

  color: #ffffff;

  font-size:
    clamp(2.4rem, 4.4vw, 4.8rem);

  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.talent-admin-hero__content p {
  max-width: 700px;

  margin: 18px 0 0;

  color:
    rgba(255, 255, 255, 0.66);

  font-size:
    clamp(0.88rem, 1.2vw, 1rem);

  line-height: 1.7;
}


/* Hero summary */

.talent-admin-hero__summary {
  min-width: 0;

  padding:
    clamp(19px, 2.5vw, 28px);

  display: grid;

  gap: 10px;

  border:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-radius:
    var(--biva-radius-xl);

  background:
    rgba(255, 255, 255, 0.055);

  backdrop-filter:
    blur(10px);
}

.talent-admin-hero__status {
  margin-bottom: 7px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color:
    #dcfbed;

  font-size: 0.7rem;
  font-weight: 800;
}

.talent-admin-hero__status > span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #4bdd9d;

  box-shadow:
    0 0 0 5px
    rgba(75, 221, 157, 0.11);
}

.talent-admin-hero__summary > div {
  padding: 13px 14px;

  border:
    1px solid
    rgba(255, 255, 255, 0.07);

  border-radius:
    var(--biva-radius-md);

  background:
    rgba(255, 255, 255, 0.045);
}

.talent-admin-hero__summary > div > span {
  display: block;

  margin-bottom: 3px;

  color:
    rgba(255, 255, 255, 0.47);

  font-size: 0.64rem;
}

.talent-admin-hero__summary strong {
  display: block;

  overflow-wrap: anywhere;

  color: #ffffff;

  font-size: 0.8rem;
  font-weight: 820;
}


/* ========================================
   SECTION TITLE
======================================== */

.talent-admin-overview {
  margin-top:
    clamp(38px, 5vw, 66px);
}

.talent-admin-section-title {
  margin-bottom: 22px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(240px, 0.55fr);

  align-items: end;

  gap: 30px;
}

.talent-admin-section-title > div > span,
.talent-admin-panel__header > div > span {
  display: block;

  margin-bottom: 7px;

  color:
    var(--biva-blue-600);

  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.talent-admin-section-title h2,
.talent-admin-panel__header h2 {
  margin: 0;

  color:
    var(--biva-ink);

  font-size:
    clamp(1.75rem, 2.8vw, 2.7rem);

  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.talent-admin-section-title > p {
  margin: 0;

  color:
    var(--biva-muted);

  font-size: 0.8rem;
  line-height: 1.55;
}


/* ========================================
   STATISTICS
======================================== */

.talent-admin-stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 15px;
}

.talent-admin-stat {
  min-width: 0;
  min-height: 172px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border:
    1px solid var(--biva-line);

  border-radius:
    var(--biva-radius-lg);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(53, 112, 243, 0.06),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      var(--biva-surface-soft)
    );

  box-shadow:
    var(--biva-shadow-xs);
}

.talent-admin-stat__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.talent-admin-stat__icon {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);
}

.talent-admin-stat--success
.talent-admin-stat__icon {
  color:
    var(--biva-success);

  background:
    var(--biva-success-soft);
}

.talent-admin-stat--warning
.talent-admin-stat__icon,
.talent-admin-stat--gold
.talent-admin-stat__icon {
  color: #805800;

  background:
    var(--biva-yellow-50);
}

.talent-admin-stat--blue
.talent-admin-stat__icon {
  color:
    #6549d6;

  background:
    #f3efff;
}

.talent-admin-stat__icon svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-admin-stat__trend {
  padding: 5px 8px;

  border:
    1px solid var(--biva-line);

  border-radius: 999px;

  color:
    var(--biva-muted);

  background:
    rgba(255, 255, 255, 0.7);

  font-size: 0.59rem;
  font-weight: 800;
  text-transform: uppercase;
}

.talent-admin-stat__content {
  margin-top: 21px;
}

.talent-admin-stat__content > span {
  display: block;

  margin-bottom: 6px;

  color:
    var(--biva-muted);

  font-size: 0.69rem;
  font-weight: 700;
}

.talent-admin-stat__content > strong {
  display: block;

  overflow-wrap: anywhere;

  color:
    var(--biva-ink);

  font-size:
    clamp(1.55rem, 2.6vw, 2.35rem);

  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}


/* ========================================
   LOWER PANELS
======================================== */

.talent-admin-panels {
  margin-top:
    clamp(40px, 5vw, 68px);

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(18px, 2.5vw, 30px);

  align-items: start;
}

.talent-admin-panel {
  min-width: 0;

  border:
    1px solid var(--biva-line);

  border-radius:
    var(--biva-radius-xl);

  background:
    rgba(255, 255, 255, 0.95);

  box-shadow:
    var(--biva-shadow-sm);

  overflow: hidden;
}

.talent-admin-panel__header {
  padding:
    24px 25px 20px;

  border-bottom:
    1px solid var(--biva-line);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(53, 112, 243, 0.07),
      transparent 36%
    ),
    var(--biva-surface-soft);
}

.talent-admin-panel__header h2 {
  font-size:
    clamp(1.35rem, 2vw, 1.8rem);
}

.talent-admin-panel__header p {
  margin: 8px 0 0;

  color:
    var(--biva-muted);

  font-size: 0.76rem;
  line-height: 1.5;
}


/* ========================================
   RECORD LISTS
======================================== */

.talent-admin-records {
  min-width: 0;

  display: grid;
}

.talent-admin-record {
  min-width: 0;

  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-bottom:
    1px solid var(--biva-line);
}

.talent-admin-record:last-child {
  border-bottom: 0;
}

.talent-admin-record:hover {
  background:
    var(--biva-surface-soft);
}

.talent-admin-record__identity {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 12px;
}

.talent-admin-record__avatar {
  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);

  font-size: 0.82rem;
  font-weight: 900;
}

.talent-admin-record__avatar.is-assignment {
  color:
    #6549d6;

  background:
    #f3efff;
}

.talent-admin-record__identity > div {
  min-width: 0;
}

.talent-admin-record__identity h3 {
  margin: 0;

  overflow: hidden;

  color:
    var(--biva-ink);

  font-size: 0.86rem;
  font-weight: 850;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-admin-record__identity p {
  margin: 3px 0 0;

  overflow: hidden;

  color:
    var(--biva-text);

  font-size: 0.73rem;
  font-weight: 650;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-admin-record__identity small {
  display: block;

  margin-top: 4px;

  overflow: hidden;

  color:
    var(--biva-muted);

  font-size: 0.65rem;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-admin-record__meta {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 9px;
}


/* ========================================
   STATUS BADGES
======================================== */

.talent-admin-status {
  min-height: 27px;

  padding: 4px 9px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  border:
    1px solid transparent;

  border-radius: 999px;

  font-size: 0.62rem;
  font-weight: 850;
  text-transform: capitalize;

  white-space: nowrap;
}

.talent-admin-status > span {
  width: 6px;
  height: 6px;

  border-radius: 50%;
}

.talent-admin-status.is-success {
  color:
    var(--biva-success);

  border-color:
    rgba(7, 148, 85, 0.12);

  background:
    var(--biva-success-soft);
}

.talent-admin-status.is-success > span {
  background:
    var(--biva-success);
}

.talent-admin-status.is-warning {
  color: #805800;

  border-color:
    rgba(242, 183, 5, 0.18);

  background:
    var(--biva-yellow-50);
}

.talent-admin-status.is-warning > span {
  background:
    var(--biva-yellow-500);
}

.talent-admin-status.is-blue {
  color:
    var(--biva-blue-700);

  border-color:
    rgba(53, 112, 243, 0.14);

  background:
    var(--biva-blue-50);
}

.talent-admin-status.is-blue > span {
  background:
    var(--biva-blue-500);
}

.talent-admin-status.is-danger {
  color:
    var(--biva-danger);

  border-color:
    rgba(217, 45, 32, 0.12);

  background:
    var(--biva-danger-soft);
}

.talent-admin-status.is-danger > span {
  background:
    var(--biva-danger);
}

.talent-admin-status.is-neutral {
  color:
    var(--biva-muted);

  border-color:
    var(--biva-line);

  background:
    var(--biva-surface-muted);
}

.talent-admin-status.is-neutral > span {
  background:
    var(--biva-subtle);
}

.talent-admin-record__hours {
  color:
    var(--biva-muted);

  font-size: 0.65rem;
  font-weight: 700;

  white-space: nowrap;
}

.talent-admin-record__button {
  width: auto;

  flex: 0 0 auto;

  white-space: nowrap;
}


/* ========================================
   LOADING, EMPTY AND ERROR STATES
======================================== */

.talent-admin-loading {
  width: 100%;

  padding: 34px 22px;

  color:
    var(--biva-muted);

  font-size: 0.78rem;

  text-align: center;
}

.talent-admin-empty {
  padding: 38px 24px;

  text-align: center;
}

.talent-admin-empty strong {
  display: block;

  color:
    var(--biva-ink);

  font-size: 0.9rem;
  font-weight: 850;
}

.talent-admin-empty p {
  margin: 6px 0 0;

  color:
    var(--biva-muted);

  font-size: 0.74rem;
}

.talent-admin-error {
  grid-column: 1 / -1;

  padding: 28px;

  border:
    1px solid
    rgba(217, 45, 32, 0.14);

  border-radius:
    var(--biva-radius-lg);

  background:
    var(--biva-danger-soft);

  text-align: center;
}

.talent-admin-error strong {
  display: block;

  color:
    var(--biva-danger);

  font-size: 0.92rem;
  font-weight: 850;
}

.talent-admin-error p {
  margin: 7px 0 0;

  color:
    var(--biva-danger);

  font-size: 0.75rem;
}


/* ========================================
   MEDIUM DESKTOP
======================================== */

@media (max-width: 1280px) {

  .talent-admin-stats-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .talent-admin-panels {
    grid-template-columns: 1fr;
  }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 980px) {

  .talent-admin-shell {
    --talent-sidebar-width: 84px;
  }

  .talent-ops-sidebar {
    min-width: 84px;
    max-width: 84px;
  }

  .talent-ops-sidebar__inner {
    padding:
      18px 11px;
  }

  .talent-ops-nav-brand {
    justify-content: center;

    padding-left: 0;
    padding-right: 0;
  }

  .talent-ops-brand-text,
  .talent-ops-nav-section-title,
  .talent-ops-nav-label,
  .talent-ops-nav-active-mark,
  .talent-ops-nav-footer-copy {
    display: none;
  }

  .talent-ops-nav-btn {
    justify-content: center;

    padding:
      8px;
  }

  .talent-ops-nav-icon {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  .notification-badge {
    position: absolute;

    top: 4px;
    right: 4px;

    min-width: 17px;
    min-height: 17px;

    padding: 2px 4px;
  }

  .talent-ops-nav-footer {
    justify-content: center;
  }

  .talent-sidebar-resizer {
    display: none;
  }

  .talent-admin-hero {
    grid-template-columns: 1fr;
  }

  .talent-admin-section-title {
    grid-template-columns: 1fr;

    gap: 8px;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

  .talent-admin-shell {
    display: block;
  }

  .talent-ops-sidebar {
    position: sticky;
    top: 0;

    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.08);
  }

  .talent-ops-sidebar__inner {
    height: auto;

    padding:
      10px 12px;

    display: block;

    overflow: visible;
  }

  .talent-ops-nav-brand {
    padding:
      0 0 9px;

    justify-content: flex-start;
  }

  .talent-ops-brand-mark {
    width: 38px;
    height: 38px;

    flex-basis: 38px;

    border-radius: 12px;
  }

  .talent-ops-brand-text {
    display: grid;
  }

  .talent-ops-nav-divider,
  .talent-ops-nav-section-title,
  .talent-ops-nav-footer {
    display: none;
  }

  .talent-ops-nav {
    display: block;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .talent-ops-nav::-webkit-scrollbar {
    display: none;
  }

  .talent-ops-nav-group {
    display: contents;
  }

  .talent-ops-nav-links {
    display: flex;

    width: max-content;

    gap: 6px;
  }

  .talent-ops-nav-btn {
    width: auto;
    min-width: 46px;
    min-height: 42px;

    flex: 0 0 auto;

    justify-content: center;

    padding:
      7px;
  }

  .talent-ops-nav-icon {
    width: 32px;
    height: 32px;

    flex-basis: 32px;
  }

  .talent-ops-nav-label,
  .talent-ops-nav-active-mark {
    display: none;
  }

  .talent-admin-main {
    padding:
      14px 12px 30px;
  }

  .talent-admin-hero {
    min-height: auto;

    padding:
      26px 18px;

    border-radius: 22px;
  }

  .talent-admin-hero__content h1 {
    font-size:
      clamp(2.15rem, 11vw, 3.15rem);
  }

  .talent-admin-hero__content p {
    margin-top: 14px;

    font-size: 0.82rem;
  }

  .talent-admin-hero__summary {
    padding: 16px;

    border-radius: 19px;
  }

  .talent-admin-overview {
    margin-top: 38px;
  }

  .talent-admin-section-title {
    margin-bottom: 17px;
  }

  .talent-admin-section-title h2 {
    font-size: 2rem;
  }

  .talent-admin-stats-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .talent-admin-stat {
    min-height: 150px;

    padding: 16px;
  }

  .talent-admin-stat__content > strong {
    font-size: 1.45rem;
  }

  .talent-admin-panels {
    margin-top: 40px;

    gap: 15px;
  }

  .talent-admin-panel {
    border-radius: 21px;
  }

  .talent-admin-panel__header {
    padding:
      20px 17px 17px;
  }

  .talent-admin-record {
    align-items: flex-start;
    flex-direction: column;

    gap: 14px;

    padding:
      16px;
  }

  .talent-admin-record__identity {
    width: 100%;
  }

  .talent-admin-record__identity h3,
  .talent-admin-record__identity p,
  .talent-admin-record__identity small {
    white-space: normal;
  }

  .talent-admin-record__meta {
    width: 100%;

    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .talent-admin-record__button {
    width: 100%;
  }

}


/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 390px) {

  .talent-admin-main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .talent-admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .talent-admin-stat {
    min-height: 132px;
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  .talent-ops-nav-btn,
  .talent-sidebar-resizer {
    transition: none;
  }

}