/* assets/css/style.css */
:root{--primary-color:var(--primary-color);--accent:var(--accent-color);--bg:var(--bg-color);--font:var(--font-family);}
*{box-sizing:border-box}
body{font-family:var(--font);background:var(--bg);margin:0;color:#333}
.wrap{max-width:1200px;margin:0 auto;padding:20px}
.site-header{background:#fff;padding:18px 0;position:relative;z-index:10;border-bottom:1px solid rgba(0,0,0,.02)}
.header-banner{height:180px;background-size:cover;background-position:center;margin-top:10px;border-radius:8px;opacity:.95}

/* Therapists grid */
.therapists-section{margin-top:30px}
.therapist-grid{display:flex;gap:28px;flex-wrap:wrap;justify-content:center;padding:30px;background:rgba(255,255,255,0.85);border-radius:18px;box-shadow:0 12px 40px rgba(0,0,0,.06);}

/* Card */
.therapist-card{width:310px;border-radius:14px;overflow:visible;display:flex;align-items:flex-start;flex-direction:column}
.therapist-card-inner{border-radius:14px;padding:60px 22px 22px;color:#fff;min-height:340px;position:relative;background:var(--card-color);box-shadow:0 14px 30px rgba(0,0,0,.12)}
.therapist-photo{width:110px;height:110px;border-radius:50%;background-size:cover;background-position:center;border:6px solid rgba(255,255,255,0.15);box-shadow:0 6px 18px rgba(0,0,0,.12);position:absolute;left:50%;transform:translateX(-50%);top:-55px;background-color:#eee}
.therapist-info{margin-top:6px;text-align:center;padding-top:20px}
.therapist-name{font-size:20px;margin:12px 0 6px;font-weight:700}
.therapist-specialties{font-size:13px;opacity:.95;margin:0 0 10px;font-weight:600}
.therapist-bio{font-size:13px;opacity:0.95;margin:10px 0 18px}
.btn{display:inline-block;padding:10px 22px;border-radius:30px;background:var(--accent);color:#111;text-decoration:none;font-weight:700}
@media(max-width:900px){
  .therapist-grid{flex-direction:column;align-items:center}
}
