.lorent-doctor-profile {
  color: var(--color-dark, #2e2c2e);
  padding-block: 24px 72px;
}

.lorent-doctor-profile * {
  box-sizing: border-box;
}

.ldp-breadcrumbs {
  align-items: center;
  color: var(--color-grey, #9b9b9b);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  line-height: 20px;
  margin-bottom: 32px;
}

.ldp-breadcrumbs a {
  color: inherit;
}

.ldp-breadcrumbs strong {
  color: var(--color-dark, #2e2c2e);
  font-weight: 600;
}

.ldp-hero {
  background: #e7ecd9;
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  min-height: 560px;
  overflow: hidden;
}

.ldp-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.ldp-title {
  color: var(--color-dark, #2e2c2e);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 53px;
  margin: 0 0 16px;
  max-width: 680px;
}

.ldp-role {
  color: var(--color-mid-grey, #414651);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 24px;
  margin: 0 0 20px;
  max-width: 640px;
}

.ldp-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.ldp-language {
  align-items: center;
  background: var(--color-light-green, #d7d9c8);
  border-radius: 999px;
  color: var(--color-dark, #2e2c2e);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  min-width: 44px;
  padding-inline: 12px;
}

.ldp-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ldp-booking-button {
  align-items: center;
  background: var(--color-button, #314b33);
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  min-height: 56px;
  padding: 15px 60px 15px 20px;
  position: relative;
  transition: background-color .2s ease;
}

.ldp-booking-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ldp-booking-button:hover {
  background: var(--color-button-hover, #1e3420);
  color: #fff;
}

.ldp-arrow-icon {
  display: block;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.ldp-phone {
  color: var(--color-dark, #2e2c2e);
  font-size: 15px;
  line-height: 21px;
}

.ldp-phone small {
  color: var(--color-mid-grey, #414651);
  display: block;
  font-size: 13px;
}

.ldp-hours {
  align-items: center;
  border-top: 1px solid rgb(117 131 77 / 25%);
  color: var(--color-mid-grey, #414651);
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 20px;
  margin-top: 24px;
  padding-top: 20px;
}

.ldp-hours::before {
  background: #80944d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(128 148 77 / 14%);
  content: '';
  flex: 0 0 8px;
  height: 8px;
}

.ldp-hours strong {
  color: var(--color-dark, #2e2c2e);
}

.ldp-hero-photo,
.ldp-hero-photo-placeholder {
  height: 100%;
  min-height: 560px;
  width: 100%;
}

.ldp-hero-photo {
  object-fit: cover;
  object-position: center 18%;
}

.ldp-hero-photo-placeholder {
  background: var(--color-lorent-grey, #dbdad8);
}

.ldp-about {
  max-width: 900px;
  padding-top: 64px;
}

.ldp-about h2,
.ldp-experience > h2 {
  color: var(--color-dark, #2e2c2e);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.9px;
  line-height: 47px;
  margin: 0 0 24px;
}

.ldp-bio {
  color: var(--color-mid-grey, #414651);
  font-size: 18px;
  line-height: 29px;
}

.ldp-bio p {
  margin: 0 0 20px;
}

.ldp-services {
  border-top: 1px solid var(--color-lorent-grey, #dbdad8);
  margin-top: 56px;
  padding-top: 48px;
}

.ldp-services-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ldp-services-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.ldp-service-column {
  background: var(--color-light-grey, #f8f8f8);
  border: 1px solid var(--color-soft-border, #e5e5e5);
  border-radius: 20px;
  padding: 32px;
}

.ldp-service-column > h2 {
  color: var(--color-dark, #2e2c2e);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 8px;
}

.ldp-service-row {
  align-items: start;
  border-bottom: 1px solid var(--color-lorent-grey, #dbdad8);
  color: var(--color-dark, #2e2c2e);
  display: grid;
  font-size: 16px;
  gap: 12px;
  grid-template-columns: 22px 1fr 20px;
  line-height: 23px;
  padding: 14px 0;
}

.ldp-service-row:last-child {
  border-bottom: 0;
}

.ldp-service-row:hover {
  color: var(--color-button, #314b33);
}

.ldp-service-check {
  align-items: center;
  background: var(--color-step-pill, #e0eaac);
  border-radius: 50%;
  color: var(--color-button, #314b33);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.ldp-service-arrow {
  color: #75834d;
  font-weight: 700;
  text-align: right;
}

.ldp-service-arrow .ldp-arrow-icon {
  height: 20px;
  width: 20px;
}

.ldp-experience {
  border-top: 1px solid var(--color-lorent-grey, #dbdad8);
  margin-top: 64px;
  padding-top: 48px;
}

.ldp-experience-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ldp-experience-card {
  background: #fff;
  border: 1px solid var(--color-lorent-grey, #dbdad8);
  border-radius: 18px;
  color: var(--color-mid-grey, #414651);
  font-size: 16px;
  line-height: 24px;
  padding: 28px;
}

.ldp-experience-card h3 {
  color: var(--color-dark, #2e2c2e);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin: 0 0 16px;
}

.ldp-experience-card :is(ul, ol) {
  margin: 0;
  padding-left: 20px;
}

.ldp-experience-card li + li {
  margin-top: 10px;
}

.ldp-experience-card > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .ldp-hero {
    grid-template-columns: 1fr;
  }

  .ldp-hero-photo,
  .ldp-hero-photo-placeholder {
    grid-row: 1;
    max-height: 560px;
    min-height: 420px;
  }

  .ldp-hero-copy {
    padding: 40px;
  }

  .ldp-services-grid,
  .ldp-experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lorent-doctor-profile {
    padding-block: 20px 48px;
  }

  .ldp-breadcrumbs {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .ldp-hero {
    border-radius: 22px;
  }

  .ldp-hero-photo,
  .ldp-hero-photo-placeholder {
    min-height: 360px;
  }

  .ldp-hero-copy {
    padding: 28px 24px 32px;
  }

  .ldp-title {
    font-size: 28px;
    letter-spacing: -.5px;
    line-height: 34px;
  }

  .ldp-role {
    font-size: 16px;
    line-height: 23px;
  }

  .ldp-bio {
    font-size: 16px;
    line-height: 24px;
  }

  .ldp-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ldp-booking-button {
    justify-content: space-between;
    width: 100%;
  }

  .ldp-hours {
    align-items: flex-start;
  }

  .ldp-about {
    padding-top: 44px;
  }

  .ldp-about h2,
  .ldp-experience > h2 {
    font-size: 32px;
    letter-spacing: -.6px;
    line-height: 40px;
  }

  .ldp-services {
    margin-top: 40px;
    padding-top: 36px;
  }

  .ldp-service-column {
    border-radius: 18px;
    padding: 24px 20px;
  }

  .ldp-service-column > h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .ldp-service-row {
    font-size: 15px;
    grid-template-columns: 22px 1fr 16px;
    line-height: 22px;
  }

  .ldp-experience-card {
    padding: 24px 20px;
  }
}
