/* ============================================================
   PROVIDERS PAGE — V2 RCM Healthcare
   ============================================================ */

/* QUICK NAV */
.providers-quicknav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 70px;
  z-index: 40;
  box-shadow: 0 2px 10px rgba(13,34,71,0.06);
}
.providers-quicknav-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.providers-quicknav-inner::-webkit-scrollbar { display: none; }
.providers-quicknav a {
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--surface-soft);
  transition: background 0.16s, border-color 0.16s, color 0.16s;
  flex-shrink: 0;
}
.providers-quicknav a:hover {
  background: rgba(27,189,168,0.09);
  border-color: rgba(27,189,168,0.35);
  color: var(--teal-dark);
}

/* PROVIDERS MASTER GRID */
.providers-master-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* PROVIDER CARD */
.provider-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.provider-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(27,189,168,0.32);
}
.provider-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.provider-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(27,189,168,0.1);
  color: var(--teal-dark);
}
.provider-icon svg {
  width: 26px;
  height: 26px;
}
.provider-card-header h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
.provider-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.provider-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
}
.provider-challenges h4 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal-dark);
}
.provider-challenges ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.provider-challenges li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
}
.provider-challenges li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.provider-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.provider-services span {
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(13,34,71,0.07);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(13,34,71,0.1);
}

/* HOME PAGE PROVIDERS SECTION */
.providers-highlight {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.providers-scroll-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.provider-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.16s, box-shadow 0.18s;
  cursor: pointer;
  text-decoration: none;
}
.provider-pill:hover {
  background: var(--navy);
  color: #6ee8db;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,34,71,0.14);
}
.provider-pill-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(27,189,168,0.12);
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.provider-pill:hover .provider-pill-icon {
  background: rgba(110,232,219,0.18);
  color: #6ee8db;
}
.provider-pill-icon svg { width: 15px; height: 15px; }
.providers-cta-row {
  display: flex;
  justify-content: flex-start;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .providers-master-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .provider-card { padding: 20px; }
  .providers-scroll-row { gap: 8px; }
  .provider-pill { font-size: 0.82rem; padding: 8px 14px; }
}
