/* ============================================================================
   PracticeDNA - Global Stylesheet
   Path: public/assets/clients/prowler/css/style.css
   ============================================================================ */

*, *::before, *::after {
  font-family: 'Mulish', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.prowler-heading,
.prowler-page-loader-title {
  font-family: 'DM Sans', sans-serif;
}

#prowler-header {
  box-shadow: 0 9px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

#prowler-header.header-scrolled {
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.prowler-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.55rem;
  width: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.prowler-app-bg {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.prowler-page-bg {
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.92) 42%, rgba(226, 242, 255, 0.78)),
    #ffffff;
}

.prowler-page-loader {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.prowler-page-loader-card {
  width: min(100%, 24rem);
  border: 1px solid #dbe7ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.prowler-page-loader-logo {
  display: block;
  height: 4rem;
  width: auto;
  max-width: 16rem;
  margin: 0 auto;
  object-fit: contain;
}

.prowler-page-loader-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem auto 0;
  color: #2563eb;
}

.prowler-page-loader-spinner svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: prowler-loader-spin 0.9s linear infinite;
}

.prowler-loader-track,
.prowler-loader-arc {
  fill: none;
  stroke-width: 4;
}

.prowler-loader-track {
  stroke: #dbeafe;
}

.prowler-loader-arc {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 68 120;
}

@keyframes prowler-loader-spin {
  to { transform: rotate(360deg); }
}

.prowler-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prowler-card:hover {
  border-color: #d8e6f0;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

.prowler-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.75rem 0.875rem;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.prowler-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.prowler-chat-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  height: 100%;
  min-height: 0;
}

.prowler-chat-sidebar {
  align-self: start;
}

.prowler-chat-panel {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
}

.prowler-chat-header {
  flex: 0 0 auto;
}

.prowler-chat-thread {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 22rem);
}

.prowler-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  animation: prowler-chat-message-in 0.22s ease both;
}

.prowler-chat-row.is-user {
  justify-content: flex-end;
}

.prowler-chat-avatar {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.prowler-chat-bubble {
  max-width: min(78%, 44rem);
  border-radius: 1.15rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.prowler-chat-bubble.is-assistant {
  border-top-left-radius: 0.35rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
}

.prowler-chat-bubble.is-assistant.is-typing {
  min-width: 4.35rem;
  padding: 0.9rem 1rem;
}

.prowler-chat-bubble.is-assistant.is-attention {
  border-color: #fde68a;
  background: #fffbeb;
}

.prowler-chat-bubble.is-user {
  border-top-right-radius: 0.35rem;
  background: #2563eb;
  color: #ffffff;
}

.prowler-chat-composer {
  flex: 0 0 auto;
}

.prowler-chat-input-wrap {
  width: 100%;
}

.prowler-chat-input {
  min-height: 3.25rem;
  height: 3.25rem;
  max-height: 3.25rem;
  flex: 1 1 auto;
  padding: 0.9rem 1rem;
  resize: none;
}

.prowler-chat-send-btn {
  display: inline-flex;
  height: 3.25rem;
  width: 3.25rem;
  flex: 0 0 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.prowler-chat-send-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.30);
  transform: translateY(-1px);
}

.prowler-chat-send-btn.is-waiting,
.prowler-chat-input.is-waiting {
  opacity: 0.62;
  cursor: wait;
}

.prowler-chat-send-btn.is-waiting,
.prowler-chat-input.is-waiting {
  pointer-events: none;
}

.prowler-chat-send-btn.is-waiting:hover {
  background: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.24);
  transform: none;
}

.prowler-chat-finish-overlay {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(3px);
}

.prowler-chat-finish-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 34rem);
  text-align: center;
  color: #ffffff;
  animation: prowler-chat-finish-in 0.24s ease both;
}

.prowler-chat-finish-icon {
  display: inline-flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.15rem;
  background: #14b8a6;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(20, 184, 166, 0.24);
}

.prowler-chat-finish-btn {
  display: inline-flex;
  width: min(100%, 24rem);
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.34);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prowler-chat-finish-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 22px 42px rgba(37, 99, 235, 0.42);
  transform: translateY(-1px);
}

.prowler-chat-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  height: 1.25rem;
}

.prowler-chat-typing-dots span {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #14b8a6;
  animation: prowler-chat-dot-pulse 1.05s ease-in-out infinite;
}

.prowler-chat-typing-dots span:nth-child(2) {
  animation-delay: 0.14s;
}

.prowler-chat-typing-dots span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes prowler-chat-message-in {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes prowler-chat-dot-pulse {
  0%, 80%, 100% {
    opacity: 0.36;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-0.18rem);
  }
}

@keyframes prowler-chat-finish-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .prowler-chat-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.85rem;
  }

  .prowler-chat-sidebar {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.25fr;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
  }

  .prowler-chat-sidebar > .flex,
  .prowler-chat-progress-card,
  .prowler-chat-practice-card {
    min-width: 0;
  }

  .prowler-chat-progress-card,
  .prowler-chat-practice-card {
    margin-top: 0 !important;
    padding: 0.85rem !important;
  }

  .prowler-chat-progress-card .text-3xl {
    font-size: 1.45rem !important;
    line-height: 1.75rem !important;
  }

  .prowler-chat-progress-card .mt-3 {
    margin-top: 0.35rem !important;
  }

  .prowler-chat-progress-card .mt-4 {
    margin-top: 0.55rem !important;
  }

  .prowler-chat-practice-card .mt-2 {
    margin-top: 0.35rem !important;
  }
}

@media (max-width: 720px) {
  .prowler-chat-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .prowler-chat-bubble {
    max-width: calc(100% - 2.9rem);
  }
}

.prowler-input-readonly {
  background: #f8fafc;
  color: #64748b;
  cursor: default;
}

.prowler-table-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: min(100%, 24rem);
  min-height: 2.55rem;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 0 0.75rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.prowler-table-search:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.prowler-table-search input {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  outline: none;
}

.prowler-table-search input::placeholder {
  color: #94a3b8;
  font-weight: 700;
}

.prowler-table-search input::-webkit-search-cancel-button,
.prowler-table-search input::-webkit-search-decoration,
.prowler-table-search input::-webkit-search-results-button,
.prowler-table-search input::-webkit-search-results-decoration {
  display: none;
}

.prowler-table-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  color: #64748b;
  transition: background 0.18s ease, color 0.18s ease;
}

.prowler-table-search-clear:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.prowler-input-error {
  border-color: #dc2626 !important;
  background: #fff7f7 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.prowler-field-error {
  margin-top: 0.35rem;
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15rem;
}

.prowler-required-label::after {
  content: '*';
  margin-left: 0.22rem;
  color: #dc2626;
  font-weight: 900;
}

.prowler-otp-input {
  width: 100%;
  height: 3.45rem;
  border: 1px solid #d1d5db;
  border-radius: 0.875rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #111827;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  outline: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prowler-otp-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10), 0 10px 22px rgba(37, 99, 235, 0.10);
  transform: translateY(-1px);
}

.prowler-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border-radius: 9px;
  background: #2563eb;
  padding: 0.58rem 0.82rem;
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 800;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.prowler-primary-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

.prowler-compact-btn {
  padding: 0.48rem 0.7rem;
  font-size: 0.74rem;
}

.prowler-btn-loading {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
  box-shadow: none !important;
}

.prowler-button-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: prowler-spin 0.72s linear infinite;
}

@keyframes prowler-spin {
  to {
    transform: rotate(360deg);
  }
}

.prowler-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.55rem 0.78rem;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 800;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.prowler-secondary-btn:hover {
  border-color: #2563eb;
  color: #1d4ed8;
  background: #eff6ff;
}

.prowler-action-btn {
  position: relative;
  display: inline-flex;
  height: 2.35rem;
  min-width: 2.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid #dbe7ef;
  border-radius: 999px;
  background: #ffffff;
  color: #33566b;
  font-size: 0.75rem;
  font-weight: 900;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.prowler-tooltip {
  position: relative;
}

.prowler-tooltip::before,
.prowler-tooltip::after {
  position: absolute;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 0.35rem);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 80;
}

.prowler-tooltip::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 0.55rem);
  width: max-content;
  max-width: 12rem;
  border-radius: 0.5rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.35rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.prowler-tooltip::after {
  content: '';
  bottom: calc(100% + 0.2rem);
  border: 0.35rem solid transparent;
  border-top-color: #0f172a;
}

.prowler-tooltip:hover::before,
.prowler-tooltip:hover::after,
.prowler-tooltip:focus-visible::before,
.prowler-tooltip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.prowler-tooltip-bottom::before {
  top: calc(100% + 0.55rem);
  bottom: auto;
}

.prowler-tooltip-bottom::after {
  top: calc(100% + 0.2rem);
  bottom: auto;
  border-color: transparent;
  border-bottom-color: #0f172a;
}

.prowler-action-btn:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.prowler-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.prowler-status-badge-active {
  background: #ecfdf5;
  color: #047857;
}

.prowler-status-badge-inactive {
  background: #fff7ed;
  color: #ea580c;
}

.prowler-status-action-active {
  border-color: #bbf7d0;
  color: #047857;
}

.prowler-status-action-active:hover {
  border-color: #86efac;
  background: #ecfdf5;
  color: #047857;
}

.prowler-status-action-inactive {
  border-color: #fed7aa;
  color: #ea580c;
}

.prowler-status-action-inactive:hover {
  border-color: #fdba74;
  background: #fff7ed;
  color: #c2410c;
}

.prowler-danger-action {
  border-color: #fecaca;
  color: #dc2626;
}

.prowler-danger-action:hover {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #b91c1c;
}

.prowler-modal-panel {
  border: 1px solid #dbe7ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.prowler-invite-card {
  border: 1px solid #dbe7ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.prowler-invite-card-body {
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  opacity: 1;
  transition: grid-template-rows 0.22s ease, opacity 0.18s ease;
}

.prowler-invite-card-body > .grid {
  min-height: 0;
}

.prowler-invite-card-body-collapsed {
  grid-template-rows: 0fr;
  opacity: 0;
}

.prowler-invite-card-error {
  border-color: #fecaca;
  background: #fff7f7;
}

.prowler-load-more-wrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid #eef2f7;
  padding-top: 1.15rem;
  margin-top: 1.25rem;
}

.prowler-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 9.5rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  padding: 0.72rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prowler-load-more-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.30);
  transform: translateY(-1px);
}

.prowler-dashboard-activity-table {
  table-layout: fixed;
}

.prowler-dashboard-activity-table th:nth-child(1),
.prowler-dashboard-activity-table td:nth-child(1) {
  width: 20%;
}

.prowler-dashboard-activity-table th:nth-child(2),
.prowler-dashboard-activity-table td:nth-child(2) {
  width: 14%;
}

.prowler-dashboard-activity-table th:nth-child(3),
.prowler-dashboard-activity-table td:nth-child(3) {
  width: 36%;
}

.prowler-dashboard-activity-table th:nth-child(4),
.prowler-dashboard-activity-table td:nth-child(4) {
  width: 30%;
}

.prowler-dashboard-table-clip {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prowler-log-event-badge {
  display: inline-flex;
  align-items: center;
  max-width: 12rem;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1rem;
  white-space: nowrap;
}

.prowler-settings-tab {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.7rem;
  border-radius: 12px;
  padding: 0.78rem 0.85rem;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: left;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.prowler-settings-tab:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.prowler-settings-tab.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.20);
}

.prowler-kpi-card {
  position: relative;
  overflow: hidden;
  border-color: #dbe3ef;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8fafc 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.prowler-kpi-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.25rem;
  background: var(--prowler-kpi-accent, #2563eb);
}

.prowler-kpi-card > * {
  position: relative;
  z-index: 1;
}

.prowler-kpi-card::after {
  content: '';
  position: absolute;
  right: -2.35rem;
  top: -2.35rem;
  height: 7.5rem;
  width: 7.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--prowler-kpi-glow, rgba(37, 99, 235, 0.10)) 0 44%, rgba(255, 255, 255, 0) 68%);
  opacity: 0.55;
}

.prowler-kpi-icon {
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--prowler-kpi-icon-from, #2563eb), var(--prowler-kpi-icon-to, #1e40af)) !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 14px 24px rgba(15, 23, 42, 0.18);
}

/* Blue clinical theme aliases for existing Tailwind utility markup. */
.text-teal-700 { color: #1d4ed8 !important; }
.text-teal-900,
.text-teal-950 { color: #1e3a8a !important; }
.bg-teal-50 { background-color: #eff6ff !important; }
.bg-teal-600,
.bg-teal-700 { background-color: #2563eb !important; }
.border-teal-100 { border-color: #bfdbfe !important; }
.from-teal-50 { --tw-gradient-from: #eff6ff var(--tw-gradient-from-position) !important; --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }

.prowler-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prowler-main-nav {
  max-width: min(100%, calc(100vw - 2rem));
  overflow-x: auto;
  scrollbar-width: none;
}

.prowler-main-nav::-webkit-scrollbar {
  display: none;
}

.prowler-main-nav .prowler-nav-link {
  flex: 0 0 auto;
}

.prowler-nav-link:hover {
  color: #1d4ed8;
  background: #ffffff;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.prowler-nav-link.active {
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.prowler-nav-link-extension {
  color: #92400e;
  background: #fffbeb;
}

.prowler-extension-standalone {
  border: 1px solid #facc15;
  background: #fffbeb;
  color: #92400e;
  box-shadow: none;
}

.prowler-nav-link-muted {
  color: #64748b;
  background: transparent;
  cursor: default;
}

.prowler-nav-link-muted:hover {
  color: #64748b;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.prowler-nav-link-extension:hover,
.prowler-nav-link-extension.active {
  color: #78350f;
  background: #fef3c7;
  border-color: #f59e0b;
  box-shadow: none;
}

.prowler-icon-btn {
  display: inline-flex;
  height: 2.85rem;
  width: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.prowler-icon-btn:hover,
.prowler-icon-btn.active {
  border-color: #2563eb;
  color: #1d4ed8;
  background: #eff6ff;
  transform: translateY(-1px);
}

.prowler-user-chip {
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #dbe7ef;
  border-radius: 999px;
  background: #f8fbff;
  padding: 0.28rem 0.75rem 0.28rem 0.28rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.prowler-user-chip span:last-child {
  font-size: 0.86rem;
  line-height: 1.1;
}

.prowler-logout-btn {
  border-color: #fecaca;
  color: #dc2626;
  background: #fff1f2;
}

.prowler-logout-btn:hover {
  border-color: #ef4444;
  color: #ffffff;
  background: #dc2626;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22);
}

.prowler-shell-band {
  border-bottom: 1px solid #e2e8f0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 26rem);
}

.practice-home {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  background:
    linear-gradient(90deg, rgba(226, 232, 240, 0.34) 1px, transparent 1px),
    linear-gradient(180deg, rgba(226, 232, 240, 0.28) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f4f8ff 62%, #ffffff 100%);
  background-size: 72px 72px, 72px 72px, auto;
  background-position: center top;
}

.practice-home,
.practice-home * {
  box-sizing: border-box;
  min-width: 0;
}

.practice-home-wrap {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}

.practice-home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(203, 213, 225, 0.74);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.practice-home-header.header-scrolled {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.practice-home-header-inner {
  min-height: 4.35rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.practice-home-brand img {
  display: block;
  height: 2.8rem;
  width: auto;
  max-width: 13rem;
  object-fit: contain;
}

.practice-home-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 2.1rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.practice-home-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 850;
}

.practice-home-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.practice-home-nav a:hover {
  color: #1d4ed8;
}

.practice-home-nav a:hover::after {
  transform: scaleX(1);
}

.practice-home-header-cta {
  justify-self: end;
}

.practice-home-login-cta {
  border: 1px solid #2563eb;
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
}

.practice-home-login-cta:hover {
  border-color: #1d4ed8;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
}

.practice-home-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #dbe7ef;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 247, 255, 0.88) 54%, rgba(233, 242, 255, 0.82) 100%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), transparent 46%);
}

.practice-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  opacity: 0.42;
  pointer-events: none;
}

.practice-home-hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.practice-home-browser {
  position: absolute;
  right: max(2rem, calc((100vw - 1180px) / 2));
  top: 16%;
  width: min(40vw, 31rem);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.76));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
}

.practice-home-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.8rem 1rem;
}

.practice-home-browser-bar span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.practice-home-browser-bar p {
  margin-left: 0.45rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 900;
}

.practice-home-browser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
}

.practice-home-browser-grid div {
  min-height: 4.8rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 0.85rem;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.practice-home-flow-node {
  position: absolute;
  border: 1px solid rgba(147, 197, 253, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 0.85rem;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.12);
}

.node-a { right: 42%; top: 58%; }
.node-b { right: 27%; top: 69%; }
.node-c { right: 12%; top: 58%; }

.practice-home-flow-line {
  position: absolute;
  height: 2px;
  width: 10rem;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.10), rgba(37, 99, 235, 0.48));
}

.line-a {
  right: 29%;
  top: 63%;
  transform: rotate(18deg);
}

.line-b {
  right: 15%;
  top: 66%;
  transform: rotate(-18deg);
}

.practice-home-hero-content {
  position: relative;
  z-index: 2;
  padding: 5.6rem 0 5.2rem;
}

.practice-home-eyebrow {
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice-home-hero h1,
.practice-home-section h2,
.practice-home-final h2 {
  max-width: 44rem;
  color: #020617;
  font-weight: 950;
  letter-spacing: 0;
}

.practice-home-hero h1 {
  margin-top: 1rem;
  max-width: 35rem;
  font-size: clamp(1.55rem, 2.55vw, 2.45rem);
  line-height: 1.14;
}

.practice-home-hero-copy {
  max-width: 40rem;
  margin-top: 1.3rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75rem;
}

.practice-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.practice-home-hero-actions span {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 800;
}

.practice-home-cta {
  min-height: 3.2rem;
  padding: 0.82rem 1.15rem;
  font-size: 0.92rem;
}

.practice-home-strip {
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.practice-home-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transform: translateY(-1.4rem);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.practice-home-strip-grid div {
  background: rgba(255, 255, 255, 0.92);
  padding: 1.15rem 1.25rem;
}

.practice-home-strip-grid div + div {
  border-left: 1px solid rgba(226, 232, 240, 0.88);
}

.practice-home-strip-grid strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
}

.practice-home-strip-grid span {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.45rem;
}

.practice-home-section {
  padding: 4.6rem 0;
  background: rgba(255, 255, 255, 0.76);
}

.practice-home-section-soft {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(226, 232, 240, 0.88);
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.96), rgba(239, 246, 255, 0.76)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    rgba(248, 251, 255, 0.88);
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.practice-home-section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(37, 99, 235, 0.13), transparent 30rem),
    radial-gradient(ellipse at 88% 72%, rgba(14, 165, 233, 0.12), transparent 28rem);
  pointer-events: none;
}

.practice-home-section-soft > .practice-home-wrap {
  position: relative;
  z-index: 1;
}

.practice-home-section h2,
.practice-home-final h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  line-height: 1.16;
}

.practice-home-section p {
  max-width: 40rem;
  margin-top: 1rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75rem;
}

.practice-home-two-col,
.practice-home-sop-grid,
.practice-home-extension,
.practice-home-trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
  gap: 3rem;
  align-items: center;
}

.practice-home-checklist {
  display: grid;
  gap: 0.8rem;
}

.practice-home-checklist div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.9rem 1rem;
  color: #334155;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}

.practice-home-checklist icon-e3 {
  color: #2563eb;
}

.practice-home-section-head {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.practice-home-steps,
.practice-home-benefits,
.practice-home-transform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.practice-home-steps article,
.practice-home-benefits article,
.practice-home-transform-grid article {
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.86));
  padding: 1.15rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.065);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.practice-home-steps article:hover,
.practice-home-benefits article:hover,
.practice-home-transform-grid article:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.10);
  transform: translateY(-2px);
}

.practice-home-steps article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 950;
}

.practice-home-steps h3,
.practice-home-benefits h3 {
  margin-top: 1rem;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
}

.practice-home-steps p,
.practice-home-benefits p,
.practice-home-transform-grid p {
  margin-top: 0.65rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55rem;
}

.practice-home-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practice-home-benefits icon-e3 {
  display: inline-flex;
  color: #2563eb;
  font-size: 1.6rem;
}

.practice-home-inline-cta {
  margin-top: 1.4rem;
}

.practice-home-sop-preview {
  border: 1px solid rgba(147, 197, 253, 0.72);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.9));
  padding: 1.2rem;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.10);
}

.practice-home-sop-title {
  display: grid;
  gap: 0.3rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.9rem;
}

.practice-home-sop-title span,
.practice-home-transform-grid span {
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practice-home-sop-title strong {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 950;
}

.practice-home-sop-preview dl {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.practice-home-sop-preview dl div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.practice-home-sop-preview dt {
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.practice-home-sop-preview dd {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 800;
}

.practice-home-transform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.practice-home-requirements {
  display: grid;
  gap: 0.65rem;
}

.practice-home-requirements span {
  border: 1px solid rgba(147, 197, 253, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1rem;
  color: #0f172a;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.practice-home-extension-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88));
  padding: 1rem;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.practice-home-extension-box img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.practice-home-extension-box strong,
.practice-home-extension-box span {
  display: block;
}

.practice-home-extension-box strong {
  color: #0f172a;
  font-weight: 950;
}

.practice-home-extension-box span {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 800;
}

.practice-home-trust {
  grid-template-columns: minmax(0, 1fr);
}

.practice-home-final {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(219, 234, 254, 0.86)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    #eef6ff;
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.practice-home-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(37, 99, 235, 0.16), transparent 28rem),
    radial-gradient(ellipse at 82% 78%, rgba(14, 165, 233, 0.12), transparent 26rem);
  pointer-events: none;
}

.practice-home-final .practice-home-wrap {
  position: relative;
  z-index: 1;
}

.practice-home-final .practice-home-eyebrow {
  color: #1d4ed8;
}

.practice-home-final h2,
.practice-home-final p {
  margin-inline: auto;
}

.practice-home-final p {
  max-width: 40rem;
  margin-top: 1rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7rem;
}

.practice-home-final .practice-home-cta {
  margin-top: 1.6rem;
}

.practice-home-footer {
  border-top: 1px solid rgba(147, 197, 253, 0.16);
  background:
    linear-gradient(135deg, #020617, #0f2f6f 58%, #102a5c),
    #020617;
}

.practice-home-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--practice-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.practice-home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .practice-home-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .practice-home-steps article,
  .practice-home-benefits article,
  .practice-home-transform-grid article {
    transition: none;
  }
}

.practice-home-footer .practice-home-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: 1.2rem;
  color: #dbeafe;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

@media (max-width: 1024px) {
  .prowler-nav-link {
    padding: 0.54rem 0.72rem;
    font-size: 0.78rem;
  }

  .practice-home-header-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .practice-home-nav {
    display: none;
  }

  .practice-home-header-cta {
    justify-self: end;
  }

  .practice-home-browser {
    opacity: 0.2;
    right: -9rem;
    top: 10%;
    width: 36rem;
  }

  .practice-home-flow-node,
  .practice-home-flow-line {
    display: none;
  }

  .practice-home-two-col,
  .practice-home-sop-grid,
  .practice-home-extension,
  .practice-home-trust {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-home-steps,
  .practice-home-benefits,
  .practice-home-transform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .practice-home-wrap {
    width: min(100% - 2rem, 1180px);
  }

  .practice-home-header-inner {
    min-height: 3.8rem;
    gap: 0.65rem;
  }

  .practice-home-brand img {
    height: 2.1rem;
    max-width: 9.6rem;
  }

  .practice-home-header-cta {
    min-height: 2.55rem;
    padding: 0.55rem 0.65rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .practice-home-header-cta icon-e3 {
    display: none;
  }

  .practice-home-hero {
    min-height: auto;
  }

  .practice-home-hero-content {
    padding: 3.7rem 0 3.2rem;
  }

  .practice-home-hero h1 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .practice-home-hero-copy {
    font-size: 0.95rem;
    line-height: 1.65rem;
  }

  .practice-home-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .practice-home-cta {
    width: 100%;
    justify-content: center;
  }

  .practice-home-browser {
    top: 3rem;
    right: -16rem;
    width: 30rem;
    opacity: 0.14;
  }

  .practice-home-strip-grid,
  .practice-home-steps,
  .practice-home-benefits,
  .practice-home-transform-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-home-strip-grid div + div {
    border-top: 1px solid rgba(226, 232, 240, 0.88);
    border-left: 0;
  }

  .practice-home-section {
    padding: 3.2rem 0;
  }

  .practice-home-section h2,
  .practice-home-final h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .practice-home-section p,
  .practice-home-final p {
    font-size: 0.94rem;
    line-height: 1.6rem;
  }

  .practice-home-sop-preview dl div,
  .practice-home-extension-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .practice-home-footer .practice-home-wrap {
    flex-direction: column;
    align-items: center;
  }
}
