/* =====================================================
   BIVA TALENT — ASSOCIATE TASKS
   FULL REPLACEMENT
===================================================== */


/* =====================================================
   PAGE
===================================================== */

.associate-tasks-page {
  min-height: 100vh;

  padding: 24px;

  background:
    linear-gradient(
      180deg,
      #f5f7fb,
      #eef3f8
    );
}

.associate-tasks-page-container {
  width: min(1440px, 100%);

  margin: 0 auto;
}


/* =====================================================
   BACK BUTTON
===================================================== */

.associate-tasks-back-btn {
  width: fit-content;
  min-height: 41px;

  margin-bottom: 16px;
  padding: 0 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border:
    1px solid #dbe4ee;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  box-shadow:
    0 5px 15px
    rgba(15, 23, 42, 0.045);

  font: inherit;

  font-size: 11px;
  font-weight: 830;

  cursor: pointer;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.associate-tasks-back-btn:hover {
  border-color:
    #bfdbfe;

  color:
    #1d4ed8;

  background:
    #eff6ff;

  transform:
    translateX(-2px);

  box-shadow:
    0 7px 18px
    rgba(37, 99, 235, 0.08);
}

.associate-tasks-back-btn svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================================
   PAGE HEADING
===================================================== */

.associate-tasks-heading {
  position: relative;

  min-height: 190px;

  padding: 29px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  color:
    #ffffff;

  background:
    radial-gradient(
      circle at 94% 4%,
      rgba(37, 99, 235, 0.35),
      transparent 36%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(251, 191, 36, 0.08),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      #071324,
      #10233f 58%,
      #173675
    );

  box-shadow:
    0 22px 58px
    rgba(7, 19, 36, 0.17);

  overflow: hidden;
}

.associate-tasks-heading::before {
  content: "";

  position: absolute;

  inset:
    0 0 auto 0;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #fbbf24,
      transparent 84%
    );
}

.associate-tasks-heading::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -95px;
  bottom: -165px;

  border:
    1px solid
    rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  box-shadow:
    0 0 0 40px
    rgba(255, 255, 255, 0.018),

    0 0 0 80px
    rgba(255, 255, 255, 0.009);

  pointer-events: none;
}

.associate-tasks-heading > * {
  position: relative;

  z-index: 1;
}

.associate-tasks-heading > div {
  min-width: 0;
}

.associate-tasks-kicker {
  display: block;

  margin-bottom: 8px;

  color:
    #fbbf24;

  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.associate-tasks-heading h1 {
  margin: 0;

  color:
    #ffffff;

  font-size:
    clamp(2.3rem, 4.3vw, 4rem);

  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.associate-tasks-heading p {
  max-width: 720px;

  margin:
    13px 0 0;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 13px;
  line-height: 1.62;
}


/* =====================================================
   REFRESH BUTTON
===================================================== */

.associate-tasks-refresh-btn {
  width: fit-content;
  min-height: 43px;

  padding:
    0 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  border-radius: 11px;

  color:
    #ffffff;

  background:
    rgba(255, 255, 255, 0.08);

  font: inherit;

  font-size: 11px;
  font-weight: 830;

  white-space: nowrap;

  cursor: pointer;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    opacity 0.18s ease;
}

.associate-tasks-refresh-btn:hover {
  border-color:
    rgba(255, 255, 255, 0.28);

  background:
    rgba(255, 255, 255, 0.14);
}

.associate-tasks-refresh-btn:disabled {
  opacity: 0.55;

  cursor: wait;
}

.associate-tasks-refresh-btn svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================================
   SUMMARY GRID
===================================================== */

.associate-task-summary-grid {
  margin-top: 18px;

  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 12px;
}

.associate-task-summary-card {
  min-width: 0;
  min-height: 106px;

  padding: 16px;

  display: flex;
  align-items: center;

  gap: 12px;

  border:
    1px solid #dce5ef;

  border-radius: 17px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f8fafc
    );

  box-shadow:
    0 8px 24px
    rgba(15, 23, 42, 0.055);

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.associate-task-summary-card:hover {
  border-color:
    #bfdbfe;

  box-shadow:
    0 12px 30px
    rgba(15, 23, 42, 0.08);

  transform:
    translateY(-2px);
}

.associate-task-summary-card > span {
  width: 43px;
  height: 43px;

  flex:
    0 0 43px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color:
    #475569;

  background:
    #f1f5f9;
}

.associate-task-summary-card.is-pending
> span {
  color:
    #92400e;

  background:
    #fffbeb;
}

.associate-task-summary-card.is-progress
> span {
  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-task-summary-card.is-submitted
> span {
  color:
    #6d28d9;

  background:
    #f5f3ff;
}

.associate-task-summary-card.is-revision
> span {
  color:
    #b45309;

  background:
    #fff7ed;
}

.associate-task-summary-card.is-completed
> span {
  color:
    #047857;

  background:
    #ecfdf5;
}

.associate-task-summary-card svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.associate-task-summary-card > div {
  min-width: 0;

  display: grid;

  gap: 6px;
}

.associate-task-summary-card small {
  color:
    #64748b;

  font-size: 9px;
  font-weight: 790;
  line-height: 1.25;
}

.associate-task-summary-card strong {
  color:
    #0f172a;

  font-size:
    clamp(1.5rem, 2.4vw, 2.1rem);

  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}


/* =====================================================
   TASK DIRECTORY
===================================================== */

.associate-task-directory {
  margin-top: 18px;

  border:
    1px solid #dce5ef;

  border-radius: 19px;

  background:
    #ffffff;

  box-shadow:
    0 10px 30px
    rgba(15, 23, 42, 0.065);

  overflow: hidden;
}


/* =====================================================
   DIRECTORY HEADER
===================================================== */

.associate-task-directory-header {
  padding: 23px 25px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(500px, 1.22fr);

  align-items: end;

  gap: 26px;

  border-bottom:
    1px solid #e2e8f0;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(37, 99, 235, 0.06),
      transparent 38%
    ),
    #f8fafc;
}

.associate-task-directory-header
> div:first-child
> span {
  display: block;

  margin-bottom: 6px;

  color:
    #2563eb;

  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.associate-task-directory-header h2 {
  margin: 0;

  color:
    #0f172a;

  font-size:
    clamp(1.35rem, 2.3vw, 2rem);

  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.associate-task-directory-header p {
  margin:
    8px 0 0;

  color:
    #64748b;

  font-size: 11px;
  line-height: 1.55;
}


/* =====================================================
   TOOLBAR
===================================================== */

.associate-task-toolbar {
  min-width: 0;

  display: grid;

  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(175px, 0.8fr)
    auto;

  align-items: center;

  gap: 10px;
}

.associate-task-search,
.associate-task-filter {
  position: relative;

  min-width: 0;

  display: flex;
  align-items: center;
}

.associate-task-search > span,
.associate-task-filter > span {
  position: absolute;

  left: 13px;

  z-index: 2;

  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;

  color:
    #64748b;

  pointer-events: none;
}

.associate-task-search svg,
.associate-task-filter svg,
.associate-task-reset-btn svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.associate-task-search input,
.associate-task-filter select {
  width: 100%;
  min-height: 43px;

  padding:
    0 14px 0 41px;

  border:
    1px solid #dbe4ee;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  font:
    inherit;

  font-size: 11px;

  outline: none;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.associate-task-filter select {
  padding-right: 34px;

  font-weight: 720;

  cursor: pointer;
}

.associate-task-search input::placeholder {
  color:
    #94a3b8;
}

.associate-task-search input:focus,
.associate-task-filter select:focus {
  border-color:
    #2563eb;

  box-shadow:
    0 0 0 3px
    rgba(37, 99, 235, 0.13);
}

.associate-task-reset-btn {
  min-height: 43px;

  padding:
    0 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border:
    1px solid #dbe4ee;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  font: inherit;

  font-size: 10px;
  font-weight: 830;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.associate-task-reset-btn:hover {
  border-color:
    #bfdbfe;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}


/* =====================================================
   RESULT BAR
===================================================== */

.associate-task-result-bar {
  padding:
    13px 23px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  border-bottom:
    1px solid #e2e8f0;

  background:
    #ffffff;
}

.associate-task-result-bar > span {
  color:
    #64748b;

  font-size: 10px;
}

.associate-task-result-bar > strong {
  min-width: 62px;

  padding:
    5px 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #dbeafe;

  border-radius: 999px;

  color:
    #1d4ed8;

  background:
    #eff6ff;

  font-size: 9px;
  font-weight: 850;
}


/* =====================================================
   TASK RESULTS
===================================================== */

.associate-task-results {
  min-width: 0;
}


/* =====================================================
   TABLE SHELL
===================================================== */

.associate-task-table-shell {
  width: 100%;

  overflow-x: auto;
}

.associate-task-table-header,
.associate-task-row {
  min-width: 1120px;

  display: grid;

  grid-template-columns:
    minmax(250px, 1.4fr)
    minmax(170px, 0.9fr)
    minmax(125px, 0.68fr)
    minmax(105px, 0.58fr)
    minmax(135px, 0.7fr)
    minmax(95px, 0.5fr);

  align-items: center;

  gap: 12px;
}

.associate-task-table-header {
  padding:
    13px 17px;

  border-bottom:
    1px solid #e2e8f0;

  color:
    #64748b;

  background:
    #f8fafc;

  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.associate-task-table-body {
  min-width: 1120px;
}

.associate-task-row {
  padding:
    16px 17px;

  border-bottom:
    1px solid #e2e8f0;

  background:
    #ffffff;

  transition:
    background-color 0.18s ease;
}

.associate-task-row:last-child {
  border-bottom: 0;
}

.associate-task-row:hover {
  background:
    #f8fbff;
}


/* =====================================================
   TASK TITLE
===================================================== */

.associate-task-row-title {
  min-width: 0;

  display: grid;

  gap: 4px;
}

.associate-task-row-title > strong {
  overflow-wrap: anywhere;

  color:
    #0f172a;

  font-size: 12px;
  font-weight: 870;
  line-height: 1.35;
}

.associate-task-row-title > small {
  color:
    #2563eb;

  font-size: 9px;
  font-weight: 760;
  line-height: 1.35;
}

.associate-task-row-title > p {
  max-width: 430px;

  margin:
    3px 0 0;

  display: -webkit-box;

  overflow: hidden;

  color:
    #64748b;

  font-size: 10px;
  line-height: 1.5;

  -webkit-box-orient:
    vertical;

  -webkit-line-clamp:
    2;
}


/* =====================================================
   ROW CELLS
===================================================== */

.associate-task-row-cell {
  min-width: 0;

  display: grid;

  gap: 5px;
}

.associate-task-row-cell > strong {
  overflow-wrap: anywhere;

  color:
    #334155;

  font-size: 11px;
  font-weight: 820;
  line-height: 1.4;
}

.associate-task-mobile-label {
  display: none;

  color:
    #64748b;

  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* =====================================================
   DUE STATE
===================================================== */

.associate-task-due-state {
  width: fit-content;

  padding:
    3px 7px;

  border-radius: 999px;

  font-size: 8px;
  font-weight: 850;
}

.associate-task-due-state.is-overdue {
  color:
    #b91c1c;

  background:
    #fee2e2;
}

.associate-task-due-state.is-due-soon {
  color:
    #92400e;

  background:
    #fef3c7;
}


/* =====================================================
   PRIORITY BADGES
===================================================== */

.associate-task-priority {
  width: fit-content;
  min-height: 27px;

  padding:
    4px 9px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #e2e8f0;

  border-radius: 999px;

  color:
    #475569;

  background:
    #f8fafc;

  font-size: 9px;
  font-weight: 850;

  white-space: nowrap;
}

.associate-task-priority[data-priority="low"] {
  border-color:
    #d1fae5;

  color:
    #047857;

  background:
    #ecfdf5;
}

.associate-task-priority[data-priority="normal"],
.associate-task-priority[data-priority="medium"] {
  border-color:
    #dbeafe;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-task-priority[data-priority="high"] {
  border-color:
    #fed7aa;

  color:
    #c2410c;

  background:
    #fff7ed;
}

.associate-task-priority[data-priority="urgent"] {
  border-color:
    #fecaca;

  color:
    #b91c1c;

  background:
    #fff1f2;
}


/* =====================================================
   STATUS BADGES
===================================================== */

.associate-task-status {
  width: fit-content;
  min-height: 27px;

  padding:
    4px 9px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #e2e8f0;

  border-radius: 999px;

  color:
    #475569;

  background:
    #f8fafc;

  font-size: 9px;
  font-weight: 850;

  white-space: nowrap;
}

.associate-task-status[data-status="pending"] {
  border-color:
    #fde68a;

  color:
    #92400e;

  background:
    #fffbeb;
}

.associate-task-status[data-status="in_progress"] {
  border-color:
    #bfdbfe;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-task-status[data-status="submitted"] {
  border-color:
    #ddd6fe;

  color:
    #6d28d9;

  background:
    #f5f3ff;
}

.associate-task-status[data-status="revision_requested"] {
  border-color:
    #fed7aa;

  color:
    #c2410c;

  background:
    #fff7ed;
}

.associate-task-status[data-status="approved"],
.associate-task-status[data-status="completed"] {
  border-color:
    #bbf7d0;

  color:
    #047857;

  background:
    #ecfdf5;
}

.associate-task-status[data-status="cancelled"] {
  border-color:
    #fecaca;

  color:
    #b91c1c;

  background:
    #fff1f2;
}


/* =====================================================
   OPEN BUTTON
===================================================== */

.associate-task-row-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.associate-open-task-btn {
  width: fit-content;
  min-height: 36px;

  padding:
    0 11px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border:
    1px solid #dbeafe;

  border-radius: 10px;

  color:
    #1d4ed8;

  background:
    #eff6ff;

  font: inherit;

  font-size: 9px;
  font-weight: 840;

  white-space: nowrap;

  cursor: pointer;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.associate-open-task-btn:hover {
  border-color:
    #bfdbfe;

  background:
    #dbeafe;

  transform:
    translateY(-1px);
}

.associate-open-task-btn svg {
  width: 15px;
  height: 15px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================================
   EMPTY STATE
===================================================== */

.associate-task-empty-state {
  min-height: 360px;

  padding:
    44px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.associate-task-empty-icon {
  width: 64px;
  height: 64px;

  margin-bottom: 16px;

  display: grid;
  place-items: center;

  border-radius: 19px;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-task-empty-icon svg {
  width: 29px;
  height: 29px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.associate-task-empty-state h2 {
  margin: 0;

  color:
    #0f172a;

  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.associate-task-empty-state p {
  max-width: 500px;

  margin:
    8px auto 0;

  color:
    #64748b;

  font-size: 11px;
  line-height: 1.6;
}

.associate-task-empty-actions {
  margin-top: 19px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}

.associate-task-empty-secondary-btn {
  min-height: 43px;

  padding:
    0 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #cbd5e1;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  font: inherit;

  font-size: 11px;
  font-weight: 830;

  cursor: pointer;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.associate-task-empty-secondary-btn:hover {
  border-color:
    #94a3b8;

  background:
    #f8fafc;
}


/* =====================================================
   ERROR ACTIONS
===================================================== */

.associate-task-error-actions {
  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}


/* =====================================================
   LOADING STATE
===================================================== */

.associate-task-loading {
  min-height:
    calc(100vh - 105px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.associate-task-loading strong {
  color:
    #0f172a;

  font-size: 14px;
  font-weight: 880;
}

.associate-task-loading p {
  margin:
    7px 0 0;

  color:
    #64748b;

  font-size: 11px;
}


/* =====================================================
   FOCUS
===================================================== */

.associate-tasks-page
button:focus-visible,
.associate-tasks-page
input:focus-visible,
.associate-tasks-page
select:focus-visible {
  outline: 0;

  box-shadow:
    0 0 0 3px
    rgba(37, 99, 235, 0.18);
}


/* =====================================================
   MEDIUM DESKTOP
===================================================== */

@media (max-width: 1180px) {

  .associate-task-summary-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .associate-task-directory-header {
    grid-template-columns: 1fr;

    align-items: stretch;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

  .associate-tasks-page {
    padding: 16px;
  }

  .associate-tasks-heading {
    min-height: auto;

    padding:
      26px 22px;

    align-items: stretch;
    flex-direction: column;

    gap: 19px;
  }

  .associate-tasks-refresh-btn {
    width: 100%;
  }

  .associate-task-summary-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .associate-task-toolbar {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .associate-task-search {
    grid-column:
      1 / -1;
  }

  .associate-task-reset-btn {
    width: 100%;
  }

}


/* =====================================================
   MOBILE TASK CARDS
===================================================== */

@media (max-width: 700px) {

  .associate-task-table-shell {
    padding: 13px;

    overflow: visible;
  }

  .associate-task-table-header {
    display: none;
  }

  .associate-task-table-body {
    min-width: 0;

    display: grid;

    gap: 12px;
  }

  .associate-task-row {
    min-width: 0;

    padding: 15px;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 14px;

    border:
      1px solid #dce5ef;

    border-radius: 15px;

    background:
      #ffffff;

    box-shadow:
      0 6px 18px
      rgba(15, 23, 42, 0.05);
  }

  .associate-task-row:last-child {
    border:
      1px solid #dce5ef;
  }

  .associate-task-row-title {
    grid-column:
      1 / -1;

    padding-bottom: 13px;

    border-bottom:
      1px solid #e2e8f0;
  }

  .associate-task-mobile-label {
    display: block;
  }

  .associate-task-row-action {
    grid-column:
      1 / -1;
  }

  .associate-open-task-btn {
    width: 100%;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {

  .associate-tasks-page {
    padding: 11px;
  }

  .associate-tasks-back-btn {
    width: 100%;

    margin-bottom: 11px;
  }

  .associate-tasks-heading {
    padding:
      23px 17px;

    border-radius: 18px;
  }

  .associate-tasks-heading h1 {
    font-size:
      clamp(2rem, 11vw, 3.1rem);
  }

  .associate-tasks-heading p {
    font-size: 12px;
  }

  .associate-task-summary-grid {
    margin-top: 12px;

    grid-template-columns: 1fr;
  }

  .associate-task-summary-card {
    min-height: 92px;

    padding: 14px;
  }

  .associate-task-directory {
    margin-top: 12px;

    border-radius: 16px;
  }

  .associate-task-directory-header {
    padding:
      19px 15px;
  }

  .associate-task-toolbar {
    grid-template-columns: 1fr;
  }

  .associate-task-search {
    grid-column: auto;
  }

  .associate-task-result-bar {
    padding:
      12px 15px;
  }

  .associate-task-row {
    grid-template-columns: 1fr;
  }

  .associate-task-row-title,
  .associate-task-row-action {
    grid-column: auto;
  }

  .associate-task-empty-actions,
  .associate-task-error-actions {
    width: 100%;

    flex-direction: column;
  }

  .associate-task-empty-actions
  .associate-workspace-primary-btn,
  .associate-task-empty-secondary-btn,
  .associate-task-error-actions
  .associate-workspace-primary-btn {
    width: 100%;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .associate-tasks-back-btn,
  .associate-tasks-refresh-btn,
  .associate-task-summary-card,
  .associate-task-reset-btn,
  .associate-task-row,
  .associate-open-task-btn,
  .associate-task-empty-secondary-btn {
    transition: none;
  }

}