/* ========================================
   BIVA V2 — ASSIGNMENT PROFILE
======================================== */


/* ========================================
   BACK BUTTON
======================================== */

.talent-assignment-profile-back-btn {
  width: fit-content;

  margin-bottom: 18px;
  padding: 0;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  border: 0;

  color:
    var(--biva-muted);

  background:
    transparent;

  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    color 160ms ease,
    transform 160ms ease;
}

.talent-assignment-profile-back-btn:hover {
  color:
    var(--biva-blue-700);

  transform:
    translateX(-2px);
}

.talent-assignment-profile-back-btn svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========================================
   CONTENT ROOT
======================================== */

.talent-assignment-profile-content {
  width: 100%;
  min-width: 0;
}


/* ========================================
   HERO
======================================== */

.talent-assignment-profile-hero {
  position: relative;

  width: 100%;
  min-height: 290px;

  padding:
    clamp(28px, 4vw, 52px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(330px, 0.88fr);

  align-items: center;

  gap:
    clamp(32px, 5vw, 72px);

  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-assignment-profile-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-assignment-profile-hero::after {
  content: "";

  position: absolute;

  width: 290px;
  height: 290px;

  right: -115px;
  bottom: -210px;

  border:
    1px solid
    rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  box-shadow:
    0 0 0 54px
    rgba(255, 255, 255, 0.024),
    0 0 0 108px
    rgba(255, 255, 255, 0.012);

  pointer-events: none;
}

.talent-assignment-profile-hero > * {
  position: relative;
  z-index: 1;
}

.talent-assignment-profile-hero__kicker {
  display: block;

  margin-bottom: 16px;

  color:
    var(--biva-yellow-400);

  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.talent-assignment-profile-hero__identity {
  display: flex;
  align-items: center;

  gap: 18px;
}

.talent-assignment-profile-hero__identity
> span {
  width: 72px;
  height: 72px;

  flex: 0 0 72px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 22px;

  color:
    #ffffff;

  background:
    rgba(255, 255, 255, 0.08);

  font-size: 1.15rem;
  font-weight: 900;
}

.talent-assignment-profile-hero__identity
> div {
  min-width: 0;
}

.talent-assignment-profile-hero__identity h1 {
  max-width: 860px;

  margin: 0;

  overflow-wrap: anywhere;

  color:
    #ffffff;

  font-size:
    clamp(2.3rem, 4.5vw, 4.7rem);

  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.talent-assignment-profile-hero__identity p {
  margin: 14px 0 0;

  color:
    rgba(255, 255, 255, 0.66);

  font-size:
    clamp(0.86rem, 1.2vw, 1rem);

  line-height: 1.6;
}


/* ========================================
   HERO SUMMARY
======================================== */

.talent-assignment-profile-hero__summary {
  min-width: 0;

  padding:
    clamp(19px, 2.5vw, 28px);

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  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-assignment-profile-hero__status {
  grid-column:
    1 / -1;

  margin-bottom: 4px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color:
    #dcfbed;

  font-size: 0.7rem;
  font-weight: 800;
}

.talent-assignment-profile-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-assignment-profile-hero__summary
> div {
  min-width: 0;

  padding: 14px;

  border:
    1px solid
    rgba(255, 255, 255, 0.07);

  border-radius:
    var(--biva-radius-md);

  background:
    rgba(255, 255, 255, 0.045);
}

.talent-assignment-profile-hero__summary
> div
> span {
  display: block;

  margin-bottom: 4px;

  color:
    rgba(255, 255, 255, 0.47);

  font-size: 0.64rem;
}

.talent-assignment-profile-hero__summary
strong {
  display: block;

  overflow-wrap: anywhere;

  color:
    #ffffff;

  font-size: 0.79rem;
  font-weight: 830;
  line-height: 1.45;
}


/* ========================================
   SUMMARY CARDS
======================================== */

.talent-assignment-profile-summary {
  margin-top:
    clamp(30px, 4vw, 46px);

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.talent-assignment-profile-summary-card {
  min-width: 0;
  min-height: 132px;

  padding: 18px;

  display: flex;
  align-items: flex-start;

  gap: 14px;

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-lg);

  background:
    linear-gradient(
      180deg,
      #ffffff,
      var(--biva-surface-soft)
    );

  box-shadow:
    var(--biva-shadow-xs);
}

.talent-assignment-profile-summary-card
> span {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);
}

.talent-assignment-profile-summary-card.is-associate-pay
> span {
  color:
    #6549d6;

  background:
    #f3efff;
}

.talent-assignment-profile-summary-card.is-margin
> span {
  color:
    #805800;

  background:
    var(--biva-yellow-50);
}

.talent-assignment-profile-summary-card.is-active
> span,
.talent-assignment-profile-summary-card.is-completed
> span {
  color:
    var(--biva-success);

  background:
    var(--biva-success-soft);
}

.talent-assignment-profile-summary-card.is-paused
> span,
.talent-assignment-profile-summary-card.is-pending
> span {
  color:
    #805800;

  background:
    var(--biva-yellow-50);
}

.talent-assignment-profile-summary-card.is-terminated
> span {
  color:
    var(--biva-danger);

  background:
    var(--biva-danger-soft);
}

.talent-assignment-profile-summary-card svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-assignment-profile-summary-card
> div {
  min-width: 0;
}

.talent-assignment-profile-summary-card small {
  display: block;

  margin-bottom: 10px;

  color:
    var(--biva-muted);

  font-size: 0.64rem;
  font-weight: 800;
}

.talent-assignment-profile-summary-card strong {
  display: block;

  overflow-wrap: anywhere;

  color:
    var(--biva-ink);

  font-size:
    clamp(1rem, 1.8vw, 1.45rem);

  font-weight: 900;
  line-height: 1.15;
}


/* ========================================
   PROFILE GRID
======================================== */

.talent-assignment-profile-grid {
  margin-top:
    clamp(28px, 4vw, 44px);

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  align-items: start;

  gap:
    clamp(16px, 2vw, 24px);
}


/* ========================================
   COMMON CARD
======================================== */

.talent-assignment-profile-card {
  min-width: 0;

  padding:
    clamp(20px, 2.5vw, 28px);

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-xl);

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    var(--biva-shadow-sm);
}

.talent-assignment-profile-card.is-full,
.talent-assignment-profile-action-panel.is-full {
  grid-column:
    1 / -1;
}

.talent-assignment-profile-card__header {
  margin-bottom: 22px;

  display: flex;
  align-items: flex-start;

  gap: 13px;
}

.talent-assignment-profile-card__header
> span:first-child {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);
}

.talent-assignment-profile-card__header
> div {
  min-width: 0;

  flex: 1;
}

.talent-assignment-profile-card__header h2 {
  margin: 0;

  color:
    var(--biva-ink);

  font-size:
    clamp(1.05rem, 1.7vw, 1.3rem);

  font-weight: 880;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.talent-assignment-profile-card__header p {
  margin: 5px 0 0;

  color:
    var(--biva-muted);

  font-size: 0.7rem;
  line-height: 1.5;
}

.talent-assignment-profile-card__header svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========================================
   STATUS
======================================== */

.talent-assignment-profile-status {
  width: fit-content;
  min-height: 28px;

  padding:
    4px 10px;

  display: inline-flex;
  align-items: center;

  border:
    1px solid
    var(--biva-line);

  border-radius: 999px;

  color:
    var(--biva-muted);

  background:
    var(--biva-surface-soft);

  font-size: 0.61rem;
  font-weight: 850;
}

.talent-assignment-profile-status.is-active,
.talent-assignment-profile-status.is-completed {
  color:
    var(--biva-success);

  border-color:
    rgba(7, 148, 85, 0.14);

  background:
    var(--biva-success-soft);
}

.talent-assignment-profile-status.is-paused,
.talent-assignment-profile-status.is-pending {
  color:
    #805800;

  border-color:
    rgba(242, 183, 5, 0.18);

  background:
    var(--biva-yellow-50);
}

.talent-assignment-profile-status.is-terminated {
  color:
    var(--biva-danger);

  border-color:
    rgba(217, 45, 32, 0.14);

  background:
    var(--biva-danger-soft);
}

.talent-assignment-profile-status.is-neutral {
  color:
    var(--biva-muted);

  background:
    var(--biva-surface-muted);
}


/* ========================================
   INFO GRID
======================================== */

.talent-assignment-profile-info-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px;
}

.talent-assignment-profile-info-item {
  min-width: 0;
  min-height: 86px;

  padding: 14px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 8px;

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-md);

  background:
    var(--biva-surface-soft);
}

.talent-assignment-profile-info-item
> span {
  color:
    var(--biva-muted);

  font-size: 0.63rem;
  line-height: 1.4;
}

.talent-assignment-profile-info-item
> strong {
  display: block;

  overflow-wrap: anywhere;

  color:
    var(--biva-ink);

  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.4;
}


/* ========================================
   LINKED ACTIONS
======================================== */

.talent-assignment-profile-linked-actions {
  margin-top: 18px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 10px;
}

.talent-assignment-profile-linked-actions
.btn {
  width: 100%;
}

.talent-assignment-profile-linked-actions
svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========================================
   WORKING DAYS
======================================== */

.talent-assignment-profile-long-text {
  margin-top: 14px;
  padding: 16px;

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-lg);

  background:
    var(--biva-surface-soft);
}

.talent-assignment-profile-long-text
> span {
  display: block;

  margin-bottom: 8px;

  color:
    var(--biva-blue-600);

  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.talent-assignment-profile-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.talent-assignment-profile-tag {
  min-height: 30px;

  padding:
    5px 10px;

  display: inline-flex;
  align-items: center;

  border:
    1px solid
    rgba(53, 112, 243, 0.14);

  border-radius: 999px;

  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);

  font-size: 0.64rem;
  font-weight: 800;
}

.talent-assignment-profile-empty-value {
  color:
    var(--biva-muted);

  font-size: 0.68rem;
}


/* ========================================
   TABS
======================================== */

.talent-assignment-profile-tabs {
  display: flex;
  align-items: center;

  gap: 8px;

  padding: 8px;

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-lg);

  background:
    var(--biva-surface-soft);

  overflow-x: auto;

  scrollbar-width: none;
}

.talent-assignment-profile-tabs::-webkit-scrollbar {
  display: none;
}

.talent-assignment-profile-tab {
  min-width: max-content;
  min-height: 44px;

  padding:
    0 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border:
    1px solid
    transparent;

  border-radius: 13px;

  color:
    var(--biva-muted);

  background:
    transparent;

  font:
    inherit;

  font-size: 0.69rem;
  font-weight: 820;

  cursor: pointer;

  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.talent-assignment-profile-tab:hover {
  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);
}

.talent-assignment-profile-tab.is-active {
  color:
    #ffffff;

  border-color:
    rgba(53, 112, 243, 0.16);

  background:
    linear-gradient(
      145deg,
      var(--biva-black),
      var(--biva-blue-700)
    );

  box-shadow:
    0 9px 24px
    rgba(36, 87, 230, 0.18);
}

.talent-assignment-profile-tab svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========================================
   TAB CONTENT
======================================== */

.talent-assignment-profile-tab-content {
  margin-top: 18px;
}

.talent-assignment-profile-overview-tab {
  display: grid;

  gap: 14px;
}

.talent-assignment-profile-operation-note {
  padding: 16px;

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-lg);

  background:
    var(--biva-surface-soft);
}

.talent-assignment-profile-operation-note
> span {
  display: block;

  margin-bottom: 7px;

  color:
    var(--biva-blue-600);

  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.talent-assignment-profile-operation-note p {
  margin: 0;

  color:
    var(--biva-text);

  font-size: 0.72rem;
  line-height: 1.6;

  white-space: pre-wrap;
}

.talent-assignment-profile-operation-note.is-paused {
  border-color:
    rgba(242, 183, 5, 0.18);

  background:
    var(--biva-yellow-50);
}

.talent-assignment-profile-operation-note.is-resumed {
  border-color:
    rgba(53, 112, 243, 0.14);

  background:
    var(--biva-blue-50);
}

.talent-assignment-profile-operation-note.is-completed {
  border-color:
    rgba(7, 148, 85, 0.14);

  background:
    var(--biva-success-soft);
}


/* ========================================
   TAB EMPTY STATE
======================================== */

.talent-assignment-profile-tab-empty {
  min-height: 250px;

  padding:
    36px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border:
    1px dashed
    var(--biva-line-strong);

  border-radius:
    var(--biva-radius-lg);

  background:
    var(--biva-surface-soft);

  text-align: center;
}

.talent-assignment-profile-tab-empty
> span {
  width: 58px;
  height: 58px;

  margin-bottom: 16px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  color:
    var(--biva-blue-700);

  background:
    var(--biva-blue-50);
}

.talent-assignment-profile-tab-empty svg {
  width: 27px;
  height: 27px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-assignment-profile-tab-empty h3 {
  margin: 0;

  color:
    var(--biva-ink);

  font-size: 0.9rem;
  font-weight: 880;
}

.talent-assignment-profile-tab-empty p {
  max-width: 470px;

  margin:
    8px auto 0;

  color:
    var(--biva-muted);

  font-size: 0.7rem;
  line-height: 1.55;
}


/* ========================================
   ACTION PANEL
======================================== */

.talent-assignment-profile-action-panel {
  position: relative;

  padding:
    clamp(24px, 3vw, 34px);

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.8fr);

  align-items: center;

  gap: 30px;

  border:
    1px solid
    rgba(53, 112, 243, 0.14);

  border-radius:
    var(--biva-radius-xl);

  color:
    #ffffff;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(53, 112, 243, 0.3),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      var(--biva-black),
      var(--biva-black-soft),
      #173675
    );

  box-shadow:
    0 24px 58px
    rgba(7, 11, 20, 0.15);

  overflow: hidden;
}

.talent-assignment-profile-action-panel::before {
  content: "";

  position: absolute;
  inset: 0 0 auto 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--biva-blue-500),
      var(--biva-yellow-400),
      transparent
    );
}

.talent-assignment-profile-action-panel
> * {
  position: relative;
  z-index: 1;
}

.talent-assignment-profile-action-panel__kicker {
  display: block;

  margin-bottom: 7px;

  color:
    var(--biva-yellow-400);

  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.talent-assignment-profile-action-panel h2 {
  margin: 0;

  color:
    #ffffff;

  font-size:
    clamp(1.35rem, 2.5vw, 2.2rem);

  font-weight: 900;
  letter-spacing: -0.04em;
}

.talent-assignment-profile-action-panel p {
  max-width: 720px;

  margin: 10px 0 0;

  color:
    rgba(255, 255, 255, 0.64);

  font-size: 0.74rem;
  line-height: 1.6;
}

.talent-assignment-profile-action-grid {
  display: grid;

  grid-template-columns:
    1fr;

  gap: 10px;
}

.talent-assignment-profile-action-grid
.btn {
  width: 100%;
}

.talent-assignment-profile-action-grid
.btn svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-assignment-profile-action-grid
.btn-outline {
  color:
    #ffffff;

  border-color:
    rgba(255, 255, 255, 0.2);

  background:
    rgba(255, 255, 255, 0.06);
}

.talent-assignment-profile-action-grid
.btn-outline:hover:not(:disabled) {
  border-color:
    rgba(255, 255, 255, 0.36);

  background:
    rgba(255, 255, 255, 0.11);
}

.talent-assignment-profile-action-grid
.btn:disabled {
  opacity: 0.55;

  cursor: not-allowed;
}


/* ========================================
   LOADING
======================================== */

.talent-assignment-profile-loading {
  width: 100%;
  min-height: 330px;

  padding:
    50px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border:
    1px solid
    var(--biva-line);

  border-radius:
    var(--biva-radius-xl);

  background:
    #ffffff;

  box-shadow:
    var(--biva-shadow-sm);

  text-align: center;
}

.talent-assignment-profile-loading
> span {
  width: 40px;
  height: 40px;

  margin-bottom: 16px;

  border:
    4px solid
    var(--biva-blue-100);

  border-top-color:
    var(--biva-blue-600);

  border-radius: 50%;

  animation:
    talentAssignmentProfileSpin
    700ms linear infinite;
}

.talent-assignment-profile-loading strong {
  color:
    var(--biva-ink);

  font-size: 0.87rem;
  font-weight: 860;
}

.talent-assignment-profile-loading p {
  max-width: 440px;

  margin: 6px 0 0;

  color:
    var(--biva-muted);

  font-size: 0.72rem;
  line-height: 1.55;
}

@keyframes talentAssignmentProfileSpin {
  to {
    transform:
      rotate(360deg);
  }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

  .talent-assignment-profile-hero {
    grid-template-columns: 1fr;
  }

  .talent-assignment-profile-summary {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .talent-assignment-profile-grid {
    grid-template-columns: 1fr;
  }

  .talent-assignment-profile-card.is-full,
  .talent-assignment-profile-action-panel.is-full {
    grid-column: auto;
  }

  .talent-assignment-profile-action-panel {
    grid-template-columns: 1fr;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

  .talent-assignment-profile-back-btn {
    margin-bottom: 14px;
  }

  .talent-assignment-profile-hero {
    min-height: auto;

    padding:
      26px 18px;

    border-radius: 22px;
  }

  .talent-assignment-profile-hero__identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .talent-assignment-profile-hero__identity
  > span {
    width: 60px;
    height: 60px;

    flex-basis: 60px;

    border-radius: 18px;
  }

  .talent-assignment-profile-hero__identity h1 {
    font-size:
      clamp(2.05rem, 10vw, 3rem);
  }

  .talent-assignment-profile-hero__summary {
    grid-template-columns: 1fr;

    padding: 16px;

    border-radius: 19px;
  }

  .talent-assignment-profile-summary {
    margin-top: 24px;

    gap: 10px;
  }

  .talent-assignment-profile-summary-card {
    min-height: 112px;

    padding: 15px;
  }

  .talent-assignment-profile-grid {
    margin-top: 22px;
  }

  .talent-assignment-profile-card {
    padding:
      20px 16px;

    border-radius: 21px;
  }

  .talent-assignment-profile-info-grid,
  .talent-assignment-profile-linked-actions {
    grid-template-columns: 1fr;
  }

  .talent-assignment-profile-card__header {
    flex-wrap: wrap;
  }

  .talent-assignment-profile-status {
    margin-left: 57px;
  }

  .talent-assignment-profile-action-panel {
    padding:
      24px 18px;

    border-radius: 21px;
  }

}


/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 420px) {

  .talent-assignment-profile-summary {
    grid-template-columns: 1fr;
  }

  .talent-assignment-profile-summary-card {
    min-height: 100px;
  }

  .talent-assignment-profile-status {
    margin-left: 0;
  }

}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  .talent-assignment-profile-back-btn,
  .talent-assignment-profile-tab {
    transition: none;
  }

  .talent-assignment-profile-loading
  > span {
    animation: none;
  }

}