.yhb-prac-dir { background: #fff; }
.yhb-prac-hero {
  background: linear-gradient(180deg, #f7fafc, #ffffff);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.yhb-prac-hero__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 18px;
}
.yhb-prac-hero__title{
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 6px;
  font-weight: 800;
}
.yhb-prac-hero__subtitle{
  margin: 0 0 16px;
  color: rgba(0,0,0,.65);
  font-size: 15px;
}
.yhb-prac-filters{
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.yhb-field label{
  display:block;
  font-size: 12px;
  color: rgba(0,0,0,.6);
  margin-bottom: 6px;
}
.yhb-field input,
.yhb-field select{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 0 12px;
  outline: none;
  background: #fff;
}
.yhb-field input:focus,
.yhb-field select:focus{
  border-color: rgba(0,0,0,.28);
}
.yhb-field--actions{
  display:flex;
  justify-content:flex-end;
}
.yhb-btn{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 0 14px;
  background: #111827;
  color: #fff;
  font-weight: 700;
}
.yhb-btn--ghost{
  background: #fff;
  color: #111827;
}
.yhb-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
}
.yhb-prac-meta{
  margin-top: 10px;
  color: rgba(0,0,0,.7);
  font-size: 13px;
}

.yhb-prac-results{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px 34px;
}
.yhb-prac-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.yhb-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,.05);
  transition: transform .12s ease;
}
.yhb-card:hover{
  transform: translateY(-2px);
}
.yhb-card__head{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  align-items:flex-start;
  margin-bottom: 10px;
}
.yhb-name{
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
}
.yhb-quals{
  font-size: 13px;
  color: rgba(0,0,0,.65);
  margin-top: 4px;
}
.yhb-loc{
  font-size: 12px;
  color: rgba(0,0,0,.6);
  white-space: nowrap;
}
.yhb-bio{
  color: rgba(0,0,0,.72);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yhb-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.yhb-tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}
.yhb-tag--muted{
  opacity: .65;
}
.yhb-links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.yhb-link{
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.yhb-link:hover{ text-decoration: underline; }

.yhb-prac-pager{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  margin-top: 16px;
}
.yhb-page{
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,.7);
}

.yhb-empty{
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed rgba(0,0,0,.2);
  border-radius: 14px;
  text-align:center;
  color: rgba(0,0,0,.7);
  background: rgba(0,0,0,.02);
}

/* Skeleton */
.yhb-card--skeleton{
  position: relative;
  overflow: hidden;
}
.yhb-sk-line{
  height: 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.06);
  margin-bottom: 10px;
}
.yhb-sk-title{ height: 16px; width: 70%; }
.yhb-sk-tags{ height: 28px; border-radius: 999px; background: rgba(0,0,0,.06); width: 55%; }
.yhb-card--skeleton::after{
  content:"";
  position:absolute;
  top:0; left:-40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: yhb-shimmer 1.05s infinite;
}
@keyframes yhb-shimmer{ to{ left: 110%; } }

/* Responsive */
@media (max-width: 1024px){
  .yhb-prac-grid{ grid-template-columns: repeat(2,1fr); }
  .yhb-prac-filters{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .yhb-prac-grid{ grid-template-columns: 1fr; }
}

.yhb-contact-row{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin: 10px 0;
  font-size: 13px;
  color: rgba(0,0,0,.72);
}
.yhb-contact-row a{
  font-weight: 800;
  text-decoration: none;
}
.yhb-contact-row a:hover{ text-decoration: underline; }
