:root{
      --clinic-primary: #0d6efd; /* link blue (like the sample) */
      --tile-bg: #f5f7fa;        /* gentle page tint */
    }
    body{
      font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      font-size: 1.10rem;
      background-color: #f2eef5;
    }

    .doctors-wrap{
      padding-block: 3.5rem;
    }

    .doctor-card{
      border: 1;
      background: #fff;
      box-shadow: 0 6px 18px rgba(0,0,0,.06);
      border-radius: 1.75rem;
      transition: transform .2s ease, box-shadow .2s ease;
      border-color: rgb(109,60,94);
    }
    .doctor-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0,0,0,.09);
    }

    /* Image box keeps consistent size while letting any source crop nicely */
    .doctor-photo{
      border-top-left-radius: .55rem;
      border-top-right-radius: .55rem;
      overflow: hidden;
    }
    /* Use Bootstrap's .ratio to lock the area; object-fit to crop */
    .doctor-photo img{
      width: 100%;
      height: 100%;
      
    }

    .btn-purple {
        background-color: rgb(109,60,94);
        border-color: rgb(109,60,94);
        color: #fff;
    }

    .btn-purple:hover,
    .btn-purple:focus {
       background-color: rgb(75, 41, 65);
       border-color: rgb(75, 41, 65);
       color: #fff;
   }

   .btn-outline-purple {
  border-color: rgb(109,60,94);
  color: rgb(109,60,94);
}

.btn-outline-purple:hover,
.btn-outline-purple:focus {
  border-color: rgb(75, 41, 65);
  color: rgb(75, 41, 65);
}

   

    /* Small screen spacing tweak */
    @media (max-width: 575.98px){
      .doctors-wrap{ padding-block: 2.25rem; }
    }
    /* Breadcrumbs (scoped) */
    .disclaimer-breadcrumbs {
      background: #fff;
      border: 1px solid #eee;
      border-left: 4px solid var(--clinic-purple);
      border-radius: .5rem;
      padding: .5rem .75rem;
      margin-bottom: 1rem;
    }
    .disclaimer-breadcrumbs .breadcrumb { margin: 0; }
    .disclaimer-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: #888; }
    .disclaimer-breadcrumbs a { color: var(--clinic-purple); text-decoration: none; }
    .disclaimer-breadcrumbs a:hover { text-decoration: underline; }

    .purple {
      color: rgb(109,60,94);
    }