﻿/* Doctor Profile - clean + nổi bật */
.doc-profile {
  --primary:#0b7285;
  --success:#16a085;
  --danger:#c0392b;
  --bd:#e9ecef;
  --soft:#f1f3f5;
  --radius:12px;
}

.doc-profile .doc-wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 12px;
}

.doc-profile p,
.doc-profile ul,
.doc-profile ol{
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 16px;
}

.doc-profile .doc-hero img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
  display:block;
}

.doc-profile .doc-cta{
  margin: 16px 0 8px;
}

.doc-profile .doc-divider{
  border:0;
  height:1px;
  background: var(--bd);
  margin: 18px 0;
}

.doc-profile .doc-title{
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 18px 0 10px;
  display:flex;
  align-items:center;
  gap:10px;
}

.doc-profile .doc-title .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--primary);
  display:inline-block;
}

.doc-profile .doc-box{
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 14px 0;
  border: 1px solid var(--bd);
  background: #fff;
}

.doc-profile .doc-box.is-highlight{
  background: var(--soft);
  border-left: 6px solid var(--primary);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.doc-profile .doc-box.is-quote{
  background: #fff3bf;
  border: 1px solid #ffe066;
}

.doc-profile .doc-box.is-cta{
  background: #e7f5ff;
  border: 1px solid #a5d8ff;
}

.doc-profile .doc-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 14px 0;
}

@media (min-width: 992px){
  .doc-profile .doc-cards{ grid-template-columns: 1fr 1fr; }
}

.doc-profile .doc-card{
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  padding: 14px 16px;
  background:#fff;
}

.doc-profile .doc-card h4{
  margin:0 0 8px;
  font-weight: 800;
  font-size: 18px;
}

.doc-profile .table{
  margin-bottom: 0;
}
