.doctor-page {
  background: linear-gradient(180deg, #f7fbf5 0, #ffffff 300px);
}

.doctor-page-hero {
  padding: 48px 24px 22px;
}

.doctor-page-hero nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: #647266;
  font-size: 10px;
}

.doctor-page-hero nav a {
  color: #245f2c;
}

.doctor-page-hero .eyebrow {
  margin: 0 0 8px;
  color: #2c7e35;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doctor-page-hero h1 {
  margin: 0;
  color: #172219;
  font-size: 30px;
  line-height: 1.08;
}

.doctor-page-hero h1::after {
  display: block;
  width: 38px;
  height: 4px;
  margin-top: 18px;
  border-radius: 4px;
  background: #ef7c2f;
  content: "";
}

.doctor-page-hero .description {
  max-width: 320px;
  margin: 14px 0 0;
  color: #617064;
  font-size: 13px;
  line-height: 1.55;
}

.doctor-directory {
  padding: 0 18px 64px;
}

.doctor-filters {
  display: flex;
  gap: 14px;
  align-items: center;
  overflow-x: auto;
  margin: 0 0 26px;
  padding: 4px 2px 6px;
  scrollbar-width: none;
}

.doctor-filters::-webkit-scrollbar {
  display: none;
}

.doctor-filters button {
  flex: 0 0 auto;
  min-width: 60px;
  height: 28px;
  padding: 0 12px;
  border: 1px solid #6f766f;
  border-radius: 6px;
  color: #263028;
  background: #ffffff;
  font-size: 12px;
  line-height: 26px;
  white-space: nowrap;
}

.doctor-filters button.active {
  border-color: #19951f;
  color: #ffffff;
  background: #19951f;
  font-weight: 700;
}

.doctor-card-list {
  display: grid;
  gap: 20px;
}

.doctor-card {
  padding: 18px 14px 17px;
  border: 1px solid #d8e7d4;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(35, 79, 37, 0.06);
}

.doctor-card[hidden] {
  display: none;
}

.doctor-profile {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.doctor-photo {
  width: 78px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  background: #e6f6f1;
}

.doctor-profile-copy {
  min-width: 0;
}

.doctor-name-row {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 26px;
}

.doctor-name-row h2 {
  margin: 0;
  color: #273029;
  font-size: 14px;
  line-height: 1.3;
}

.doctor-verified {
  display: inline-flex;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #7cb358;
  font-size: 11px;
  font-weight: 900;
}

.doctor-specialty {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  margin: 14px 0 0;
  padding: 4px 14px;
  border-radius: 999px;
  color: #466242;
  background: #e9f2de;
  font-size: 9px;
  line-height: 1.35;
}

.doctor-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.doctor-tag-list span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #cfe2ca;
  border-radius: 999px;
  color: #25752d;
  background: #f5faf2;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.doctor-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.doctor-details > div[hidden] {
  display: none;
}

.doctor-details dt {
  margin: 0 0 4px;
  color: #303832;
  font-size: 11px;
  font-weight: 800;
}

.doctor-details dd {
  margin: 0;
  color: #303832;
  font-size: 11px;
  line-height: 1.2;
}

.doctor-introduction dd {
  padding: 10px 11px;
  border-radius: 9px;
  background: #e4efd6;
  line-height: 1.4;
}

.doctor-hospital {
  margin-top: 16px;
  text-align: right;
}

.doctor-hospital strong,
.doctor-hospital small {
  display: block;
}

.doctor-hospital strong {
  color: #159323;
  font-size: 12px;
  line-height: 1.25;
}

.doctor-hospital small {
  margin-top: 3px;
  color: #159323;
  font-size: 8px;
  line-height: 1.25;
}

.doctor-empty {
  margin: 48px 0;
  color: #637166;
  text-align: center;
}

@media (min-width: 720px) {
  .doctor-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
