
/* v7.6.5 — Home: single doctor card desktop polish */
/* On desktop, center the section and show the doctor card as a horizontal media card. */
@media (min-width: 992px){
  .home-doctors{ margin-top: 24px; }
  .home-doctors .grid{
    display: flex !important;
    justify-content: center !important;
  }
  .home-doctors .card.doctor{
    display: grid !important;
    grid-template-columns: 320px 1fr; /* image | content */
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(16,24,40,.06);
  }
  .home-doctors .card.doctor img{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(16,24,40,.06);
  }
  .home-doctors .card.doctor h3{
    margin: 0 0 8px !important;
    font-size: 1.6rem !important;
    line-height: 1.2;
    font-weight: 900;
  }
  .home-doctors .card.doctor .meta{
    margin: 0 0 8px !important;
    font-size: 1rem;
    color: #334155;
  }
  .home-doctors .card.doctor .btn{
    margin: 12px 0 0 0 !important;
    align-self: flex-start;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1.5px solid var(--brand);
    color: var(--brand);
    background: #fff;
    font-weight: 800;
  }
}
