.doctor-page {
  margin-top: 30px;
  margin-bottom: 50px;
}

.dp__hero {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 56px;
}
@media (max-width: 1023.98px) {
  .dp__hero {
    gap: 32px;
    padding: 36px;
  }
}
@media (max-width: 767.98px) {
  .dp__hero {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }
}
.dp__card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(116, 149, 196, 0.16);
  max-height: 300px;
}
.dp__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dp__image-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.75), transparent 24%), linear-gradient(135deg, #e8f1fb 0%, #d8e7fb 100%);
}
.dp__content {
  min-width: 0;
}
.dp__title {
  color: #1d2533;
  font-size: 2.4rem;
  line-height: 1.04;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .dp__title {
    font-size: 2rem;
  }
}
.dp__doctor-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  color: #4c5568;
  font-size: 1.4rem;
  line-height: 1.2;
  text-decoration: none;
}
.dp__doctor-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--yellow-500);
}
.dp__doctor-rating-value {
  color: #1d2533;
  font-weight: 600;
}
.dp__doctor-rating-count {
  color: #7b8798;
  font-style: italic;
  font-weight: 400;
}
.dp__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.dp__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 11px;
  background: #e6eef9;
  color: #245d9c;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .dp__tag {
    font-size: 1.4rem;
  }
}
.dp__divider {
  height: 1px;
  margin: 0 0 28px;
  background: rgba(182, 196, 218, 0.55);
}
.dp__divider:last-child {
  display: none;
}
.dp__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4c5568;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .dp__meta {
    font-size: 1.8rem;
  }
}
.dp__meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .dp__meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.dp__hero-actions {
  margin-bottom: 28px;
}
.dp__hero-actions .ui__btn {
  justify-content: center;
  padding: 0.9em 1.5em !important;
  font-size: 1.8rem !important;
  border-radius: 18px !important;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .dp__hero-actions {
    width: 100%;
  }
  .dp__hero-actions .ui__btn {
    width: 100%;
  }
}
.dp__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #4c5568;
}
.dp__meta-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.dp__description {
  margin-bottom: 28px;
  color: #4f5b70;
  font-size: 2rem;
  line-height: 1.6;
}
.dp__description p {
  margin: 0;
}
@media (max-width: 767.98px) {
  .dp__description {
    font-size: 1.8rem;
  }
}
.dp__services {
  margin-top: 56px;
}
@media (max-width: 767.98px) {
  .dp__services {
    margin-top: 40px;
  }
}
.dp__services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 1023.98px) {
  .dp__services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .dp__services-grid {
    grid-template-columns: 1fr;
  }
}
.dp__service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 252px;
  padding: 22px 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 14px 36px rgba(116, 149, 196, 0.14);
}
.dp__service-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dp__service-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 48%), linear-gradient(135deg, #dcecff 0%, #edf5ff 100%);
  box-shadow: inset 0 0 0 1px rgba(71, 130, 199, 0.08);
}
.dp__service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dp__service-top {
  min-width: 0;
}
.dp__service-section {
  margin-bottom: 6px;
  color: var(--blue-500);
  font-size: 1.4rem;
  line-height: 1.2;
}
.dp__service-title {
  margin: 0;
  color: var(--gray-900);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
}
.dp__service-subtitle {
  margin-top: 6px;
  color: var(--gray-700);
  font-size: 1.6rem;
  line-height: 1.4;
}
.dp__service-description {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.3;
}
.dp__service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 575.98px) {
  .dp__service-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
.dp__service-price {
  color: var(--gray-900);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}
.dp__service-btn {
  min-width: 146px;
  justify-content: center;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .dp__service-btn {
    width: 100%;
  }
}
.dp__detail-text {
  margin-top: 28px;
  color: #4f5b70;
  font-size: 2rem;
  line-height: 1.6;
}

.dp__about {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 28px;
}
@media (max-width: 767.98px) {
  .dp__about {
    grid-template-columns: 1fr;
  }
}

.dp__more-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-500, #2f95f0);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.dp__more-btn:after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.dp__more-btn:hover {
  background: transparent;
  border-color: transparent;
  color: var(--blue-700, #246eb9);
}
@media (max-width: 575.98px) {
  .dp__more-btn {
    margin-top: 14px;
    font-size: 1.5rem;
  }
}

.dp-education {
  padding: 28px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 767.98px) {
  .dp-education {
    padding: 22px 18px;
  }
}
@media (max-width: 575.98px) {
  .dp-education {
    padding: 18px 14px;
  }
}
.dp-education__title {
  margin: 0 0 22px;
  color: #1d2533;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.15;
}
@media (max-width: 575.98px) {
  .dp-education__title {
    margin-bottom: 18px;
    font-size: 2rem;
  }
}
.dp-education__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 575.98px) {
  .dp-education__list {
    gap: 18px;
  }
}
.dp-education__item {
  position: relative;
  padding-left: 40px;
  min-width: 0;
}
@media (max-width: 575.98px) {
  .dp-education__item {
    padding-left: 34px;
  }
}
.dp-education__item:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 17px;
  width: 1px;
  height: 100%;
  box-sizing: border-box;
  background: var(--gray-200);
}
.dp-education__item:last-child:before {
  display: none;
}
.dp-education__item:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%232f95f0'%3E%3Cpath d='M840-320v-236L518-381q-18 10-38 10t-38-10L104-565q-11-6-15.5-15T84-600q0-11 4.5-20t15.5-15l338-184q9-5 18.5-7.5T480-829q10 0 19.5 2.5T518-819l381 208q10 5 15.5 14.5T920-576v256q0 17-11.5 28.5T880-280q-17 0-28.5-11.5T840-320ZM442-141 242-249q-20-11-31-30t-11-41v-152l242 131q18 10 38 10t38-10l242-131v152q0 22-11 41t-31 30L518-141q-9 5-18.5 7.5T480-131q-10 0-19.5-2.5T442-141Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 575.98px) {
  .dp-education__item:before {
    bottom: -21px;
    left: 14px;
    width: 1px;
    height: calc(100% + 4px);
  }
  .dp-education__item:after {
    top: 5px;
    left: 3px;
    width: 20px;
    height: 20px;
  }
}
.dp-education__place {
  margin: 0 0 12px;
  color: #1f2f45;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 575.98px) {
  .dp-education__place {
    margin-bottom: 10px;
    font-size: 1.65rem;
  }
}
.dp-education__details {
  margin-left: 8px;
}
@media (max-width: 575.98px) {
  .dp-education__details {
    margin-left: 0;
  }
}
.dp-education__year {
  color: var(--gray-500);
  font-size: 1.4rem;
  line-height: 1.25;
}
@media (max-width: 575.98px) {
  .dp-education__year {
    font-size: 1.5rem;
  }
}
.dp-education__program {
  margin: 0 0 2px;
  color: var(--text-primary);
  font-size: 1.7rem;
  line-height: 1.35;
}
@media (max-width: 575.98px) {
  .dp-education__program {
    font-size: 1.55rem;
  }
}
.dp-education__type {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.4rem;
  line-height: 1.35;
}
@media (max-width: 575.98px) {
  .dp-education__type {
    font-size: 1.45rem;
  }
}
.dp-education.is-collapsed .dp-education__item:nth-child(n+5) {
  display: none;
}
.dp-education.is-expanded .dp__more-btn:after {
  transform: rotate(225deg);
}

.dp-qualification {
  padding: 28px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 767.98px) {
  .dp-qualification {
    padding: 22px 18px;
  }
}
@media (max-width: 575.98px) {
  .dp-qualification {
    padding: 18px 14px;
  }
}
.dp-qualification__title {
  margin: 0 0 22px;
  color: #1d2533;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.15;
}
@media (max-width: 575.98px) {
  .dp-qualification__title {
    margin-bottom: 18px;
    font-size: 2rem;
  }
}
.dp-qualification__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 575.98px) {
  .dp-qualification__list {
    gap: 16px;
  }
}
.dp-qualification__item {
  position: relative;
  padding-left: 42px;
  min-width: 0;
}
@media (max-width: 575.98px) {
  .dp-qualification__item {
    padding-left: 30px;
  }
}
.dp-qualification__item:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%232f95f0'%3E%3Cpath d='M640-624 284-268q-11 11-28 11t-28-11q-11-11-11-28t11-28l356-356H280q-17 0-28.5-11.5T240-720q0-17 11.5-28.5T280-760h400q17 0 28.5 11.5T720-720v400q0 17-11.5 28.5T680-280q-17 0-28.5-11.5T640-320v-304Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 575.98px) {
  .dp-qualification__item:before {
    left: 4px;
  }
  .dp-qualification__item:after {
    left: 14px;
  }
}
.dp-qualification__year {
  margin: 0 0 6px;
  color: var(--gray-500);
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  .dp-qualification__year {
    margin-bottom: 4px;
    font-size: 1.5rem;
  }
}
.dp-qualification__text {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.75rem;
  line-height: 1.35;
}
@media (max-width: 575.98px) {
  .dp-qualification__text {
    font-size: 1.55rem;
    line-height: 1.4;
  }
}
.dp-qualification.is-collapsed .dp-qualification__item:nth-child(n+5) {
  display: none;
}
.dp-qualification.is-expanded .dp__more-btn:after {
  transform: rotate(225deg);
}

/*# sourceMappingURL=style.css.map */
