/* ===== HERO ===== */






/* ===== HERO ===== */
.oreli-team-hero{
  padding:60px 0 40px;
  background:#faf7fb;
  text-align:center;
}
.oreli-team-hero .eyebrow{
  color:#b51b75;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.oreli-team-hero h1{
  font-size:32px;
  margin-bottom:10px;
}
.oreli-team-hero .sub{
  color:#666;
  max-width:720px;
  margin:0 auto;
}

/* ===== GRID ===== */
.oreli-team{
  padding:40px 0 70px;
}
.oreli-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

@media(max-width:991px){
  .oreli-team-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:575px){
  .oreli-team-grid{grid-template-columns:1fr;}
}

/* ===== CARD ===== */
.oreli-doctor-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.35s ease;
  text-align:center;
  height:100%;
}
.oreli-doctor-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(181,27,117,.18);
}

.oreli-doctor-card.featured{
  position:relative;
  transform:translateY(-10px) scale(1.03);
  z-index:3;
  box-shadow:
    0 30px 70px rgba(181,27,117,.22),
    0 0 0 1px rgba(181,27,117,.15);
}

/* badge luôn hiển thị */

.oreli-doctor-card.featured::before{
  content:"Bác sĩ phụ trách";
  position:absolute;
  top:14px;
  left:14px;
  background:#b51b75;
  color:#fff;
  font-size:11px;
  padding:5px 12px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.02em;
  box-shadow:0 6px 16px rgba(181,27,117,.25);
  pointer-events:none; /* 🔥 QUAN TRỌNG */
  z-index:5; 
}
/* ===== IMAGE RATIO CHUẨN ===== */
.oreli-doctor-photo{
  aspect-ratio: 4 / 5;
  overflow:hidden;
  display:block;
  background:#f6f2f5;
}

.oreli-doctor-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top; /* giữ mặt */
  display:block;
  transition:transform .6s ease;
}

.oreli-doctor-card:hover .oreli-doctor-photo img{
  transform:scale(1.08);
}

/* ===== BODY ===== */
.oreli-doctor-body{
  padding:24px 20px 30px;
}
.oreli-doctor-name{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}
.oreli-doctor-role{
  color:#b51b75;
  font-weight:600;
  font-size:14px;
  margin-bottom:10px;
}
.oreli-doctor-desc{
  font-size:14px;
  color:#666;
  line-height:1.6;
  min-height:66px;
}

/* ===== CTA WRAP ===== */
.oreli-doctor-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  margin-top:14px;
  flex-wrap:nowrap; /* 🔥 giữ 2 nút ngang hàng */
}

/* reset link trong card */
.oreli-doctor-cta a{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  height:40px;                 /* 🔥 cố định chiều cao */
  padding:0 18px;              /* 🔥 bỏ padding dọc */
  border-radius:999px;
  font-weight:600;
  font-size:13px;
  text-decoration:none !important;
  transition:.25s ease;
  white-space:nowrap;
}

/* ===== NÚT GỌI ===== */
.oreli-doctor-cta .btn-call{
  background:#b51b75 !important;
  color:#fff !important;
  border:1px solid #b51b75 !important;
  min-width:130px;             /* 🔥 chống nút ngắn */
}

.oreli-doctor-cta .btn-call:hover{
  background:#9d155f !important;
  border-color:#9d155f !important;
  color:#fff !important;
}

/* ===== NÚT XEM ===== */
.oreli-doctor-cta .btn-profile{
  background:#fff !important;
  color:#b51b75 !important;
  border:1px solid #b51b75 !important;
  min-width:140px;
}

.oreli-doctor-cta .btn-profile:hover{
  background:#b51b75 !important;
  color:#fff !important;
}