
    /* Hero */
    .providers-hero { padding-bottom: 80px; position: relative; overflow: hidden; }
    .providers-hero::after {
      content: "";
      position: absolute;
      right: -180px;
      top: 60%;
      transform: translateY(-50%);
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 60%);
      pointer-events: none;
    }
    .pr-hero-meta {
      margin-top: 36px;
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.16);
      max-width: 720px;
    }
    .pr-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.78);
      font-size: 14px;
      letter-spacing: -0.2px;
    }
    .pr-hero-meta-item .material-symbols-rounded {
      font-size: 18px;
      color: rgba(255,255,255,0.55);
    }

    /* Bento section */
    .pr-bento-section { padding: 90px 0 80px; }
    .pr-bento-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 44px;
    }
    .pr-eyebrow {
      display: inline-block;
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #477080;
      margin-bottom: 16px;
    }
    .pr-eyebrow--light { color: rgba(255,255,255,0.55); }
    .pr-section-title {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 44px;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: #00476b;
    }
    .pr-section-sub {
      font-size: 16px;
      line-height: 28px;
      color: #333333;
      opacity: 0.78;
    }

    /* Bento grid */
    .pr-bento {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 230px;
      gap: 16px;
    }
    .pr-card {
      position: relative;
      background: #fff;
      border: 1px solid #e8e4e0;
      border-radius: 20px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s, transform 0.2s, border-color 0.2s;
      text-decoration: none;
      color: inherit;
      overflow: hidden;
    }
    .pr-card:hover {
      box-shadow: 0 16px 40px rgba(0, 71, 107, 0.08);
      transform: translateY(-3px);
      border-color: #d6dee4;
    }
    .pr-card:hover .pr-card-arrow {
      transform: translate(4px, -4px);
      background: #00476b;
      color: #fff;
    }
    .pr-card-icon {
      width: 48px;
      height: 48px;
      background: #f0f4f8;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .pr-card-icon .material-symbols-rounded { font-size: 24px; color: #477080; }
    .pr-card-num {
      position: absolute;
      top: 28px;
      right: 28px;
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 2px;
      color: #477080;
      opacity: 1;
    }
    .pr-card h3 {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: 20px;
      letter-spacing: -0.017em;
      color: #00476b;
      margin-bottom: 8px;
    }
    .pr-card p {
      font-size: 14px;
      line-height: 22px;
      color: #333333;
      opacity: 0.78;
      padding-right: 48px;
    }
    .pr-card--feature p { padding-right: 0; }
    .pr-card-arrow {
      position: absolute;
      bottom: 24px;
      right: 24px;
      width: 36px;
      height: 36px;
      background: #f0f4f8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #477080;
      transition: transform 0.25s, background 0.25s, color 0.25s;
    }
    .pr-card-arrow .material-symbols-rounded { font-size: 18px; }

    /* Featured card (Patient Portal) */
    .pr-card--feature {
      grid-column: span 4;
      grid-row: span 2;
      background: linear-gradient(135deg, #00476b 0%, #477080 100%);
      color: #fff;
      border: none;
      padding: 44px;
      justify-content: space-between;
    }
    .pr-card--feature::before {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 60%);
      pointer-events: none;
    }
    .pr-card--feature:hover {
      box-shadow: 0 24px 60px rgba(0, 71, 107, 0.32);
      transform: translateY(-4px);
    }
    .pr-card--feature .pr-card-icon {
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,0.12);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      margin-bottom: 0;
    }
    .pr-card--feature .pr-card-icon .material-symbols-rounded { font-size: 32px; color: #fff; }
    .pr-card--feature .pr-card-eyebrow {
      display: inline-block;
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 14px;
    }
    .pr-card--feature h3 {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 38px;
      line-height: 1.05;
      letter-spacing: -0.022em;
      color: #fff;
      margin-bottom: 14px;
    }
    .pr-card--feature p {
      font-size: 15.5px;
      line-height: 26px;
      color: rgba(255,255,255,0.78);
      max-width: 460px;
      opacity: 1;
      margin-bottom: 28px;
    }
    .pr-card-feature-top {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-bottom: auto;
    }
    .pr-card-feature-bottom {
      position: relative;
      z-index: 1;
    }
    .pr-feature-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #00476b;
      padding: 14px 24px;
      border-radius: 100px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.2px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .pr-feature-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }
    .pr-feature-cta .material-symbols-rounded { font-size: 18px; }

    /* Bento positioning */
    .pr-card--side { grid-column: span 2; }
    .pr-card--bottom { grid-column: span 2; }

    /* Stretched link pattern for cards with secondary actions */
    .pr-card-link {
      position: absolute;
      inset: 0;
      z-index: 1;
      border-radius: inherit;
    }
    /* Community Resources */
    .pr-community-section { padding: 0 0 100px; }
    .pr-community-wrap {
      background: #f7f9fb;
      border: 1px solid #e0e9ef;
      border-radius: 24px;
      padding: 56px;
    }
    .pr-community-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 36px;
    }
    .pr-community-title {
      font-family: var(--font-heading);
      font-weight: 400;
      font-size: 36px;
      line-height: 1.05;
      letter-spacing: -0.023em;
      color: #00476b;
    }
    .pr-community-note {
      font-size: 14px;
      line-height: 22px;
      color: #333333;
      opacity: 0.7;
      letter-spacing: -0.2px;
    }
    .pr-community-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .pr-community-link {
      display: flex;
      width: 100%;
      align-items: center;
      gap: 18px;
      background: #fff;
      border: 1px solid #e8e4e0;
      border-radius: 14px;
      padding: 20px 24px;
      font: inherit;
      text-align: left;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .pr-community-link:hover {
      border-color: #477080;
      box-shadow: 0 8px 20px rgba(0, 71, 107, 0.07);
      transform: translateY(-2px);
    }
    .pr-community-link:hover .pr-community-link-ext {
      color: #00476b;
      transform: translate(2px, -2px);
    }
    .pr-community-link-text { flex: 1; min-width: 0; }
    .pr-community-link-text h3 {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: 16px;
      letter-spacing: -0.017em;
      color: #00476b;
      margin-bottom: 4px;
    }
    .pr-community-link-text p {
      font-size: 13.5px;
      line-height: 20px;
      color: #333333;
      opacity: 0.72;
    }
    .pr-community-link-ext {
      color: #477080;
      transition: transform 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .pr-community-link-ext .material-symbols-rounded { font-size: 20px; }

    @media (max-width: 1024px) {
      .providers-hero { padding-bottom: 60px; }
      .pr-bento-section { padding: 70px 0 56px; }
      .pr-bento-header { grid-template-columns: 1fr; gap: 18px; }
      .pr-section-title { font-size: 36px; }
      .pr-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 14px; }
      .pr-card--feature {
        grid-column: span 2;
        grid-row: span 1;
        padding: 40px;
        min-height: 320px;
      }
      .pr-card--feature h3 { font-size: 32px; }
      .pr-card--side, .pr-card--bottom { grid-column: span 1; }
      .pr-community-wrap { padding: 40px 32px; }
      .pr-community-head { grid-template-columns: 1fr; gap: 14px; align-items: start; margin-bottom: 28px; }
      .pr-community-title { font-size: 28px; }
      .pr-community-list { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .providers-hero { padding-bottom: 48px; }
      .pr-hero-meta { gap: 16px 24px; margin-top: 28px; padding-top: 18px; }
      .pr-bento-section { padding: 56px 0 40px; }
      .pr-section-title { font-size: 30px; letter-spacing: -1px; }
      .pr-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
      .pr-card { padding: 24px; min-height: 180px; }
      .pr-card--feature {
        grid-column: span 1;
        flex-direction: column;
        align-items: stretch;
        padding: 28px;
        min-height: auto;
      }
      .pr-card--feature h3 { font-size: 26px; }
      .pr-card--side, .pr-card--bottom { grid-column: span 1; }
      .pr-community-section { padding-bottom: 70px; }
      .pr-community-wrap { padding: 28px 20px; border-radius: 18px; }
      .pr-community-link { padding: 16px 18px; gap: 14px; }
    }
