@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700&family=Space+Grotesk:wght@400&family=Syne:wght@400;700&display=swap");

:root {
  --dp-plum: #652e48;
  --dp-green: #579b8e;
  --dp-green-dark: #407a6c;
  --dp-lavender: #d8c1dd;
  --dp-like-red: #e04f47;
  --dp-ink: #171214;
  --dp-muted: #5f555b;
  --dp-line: rgba(64, 64, 64, 0.26);
  --dp-soft: #f7f4f6;
  --dp-max: 980px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--dp-ink);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body .wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

.entry-content {
  margin-block-start: 0;
}

.entry-content > * {
  max-width: none !important;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dp-header {
  background: #fff;
  border-bottom: 0;
}

.dp-header-top {
  width: 100%;
  min-height: 194px;
  margin: 0 auto;
  border-bottom: 1px solid var(--dp-line);
  display: grid;
  grid-template-columns: 323px 329px 328px;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.dp-contact-line {
  width: 257px;
  margin-left: 51px;
  color: var(--dp-plum);
  font-size: 16px;
  font-weight: 200;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateY(6px);
}

.dp-contact-line a {
  text-decoration: none;
}

.dp-contact-line a:hover {
  color: var(--dp-green-dark);
}

.dp-contact-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dp-linkedin {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dp-linkedin img {
  width: 23px;
  height: 23px;
  display: block;
}

.dp-logo {
  width: 227px;
  margin-left: 51px;
  display: block;
  text-align: center;
}

.dp-logo img {
  width: 227px;
  height: auto;
  display: inline-block;
}

.dp-search {
  width: 305px;
  height: 45px;
  margin-left: -44px;
  transform: translateY(3px);
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.75);
  color: rgba(0, 0, 0, 0.7);
  padding: 0 12px;
  gap: 10px;
}

.dp-search input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  color: var(--dp-ink);
  background: transparent;
}

.dp-search input::placeholder {
  color: rgba(0, 0, 0, 0.65);
}

.dp-nav {
  width: min(1118px, calc(100% - 40px));
  min-height: 50px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 30px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dp-plum);
  transform: translateX(38px);
}

.dp-nav a {
  text-decoration: none;
  padding-top: 8px;
  border-top: 1px solid transparent;
}

.dp-nav a:focus-visible {
  color: var(--dp-green-dark);
  border-top-color: var(--dp-green-dark);
}

.dp-page {
  background: #fff;
}

.dp-section {
  padding: 74px 20px;
}

.dp-section-narrow {
  width: min(var(--dp-max), calc(100% - 40px));
  margin: 0 auto;
}

.dp-page-title {
  width: min(var(--dp-max), calc(100% - 40px));
  margin: 0 auto 42px;
  color: var(--dp-ink);
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 400;
}

.dp-kicker {
  color: var(--dp-plum);
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 37px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 12px;
}

.dp-subtitle {
  color: var(--dp-ink);
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 26px;
}

.dp-rule {
  width: 92px;
  border-top: 2px solid var(--dp-plum);
  margin: 0 0 28px;
}

.dp-button {
  min-height: 45px;
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--dp-plum);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--dp-plum);
  font-size: 14px;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.dp-button:hover,
.dp-button:focus-visible {
  background: var(--dp-green);
  border-color: var(--dp-green);
  color: #fff;
}

.dp-hero {
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.dp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  z-index: -1;
}

.dp-hero-panel {
  width: 540px;
  height: 323px;
  margin-top: 177px;
  padding: 55px 44px 33px;
  border: 4px solid #111;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: var(--dp-ink);
  text-align: center;
  box-sizing: border-box;
}

.dp-hero h1 {
  margin: 0 0 18px;
  color: var(--dp-plum);
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 400;
  white-space: nowrap;
}

.dp-hero p {
  margin: 0 auto 34px;
  max-width: 440px;
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
}

.dp-home-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.dp-story-left {
  min-height: 940px;
  padding: 96px 76px 96px 100px;
  background: var(--dp-green);
  color: var(--dp-plum);
}

.dp-story-left h2 {
  margin: 0 0 28px;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 39px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.dp-story-rule {
  width: 30px;
  border-top: 1px solid #fff;
  margin: 0 0 34px;
}

.dp-story-left p {
  margin: 0 0 12px;
  color: #222;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.dp-story-left img {
  width: 462px;
  max-width: 100%;
  display: block;
}

.dp-story-right {
  padding: 74px 90px 0 10px;
  color: #2f292d;
}

.dp-story-right p {
  margin: 0 0 13px;
  font-size: 16px;
  line-height: 1.43;
  font-weight: 200;
}

.dp-home-services-panel {
  width: min(1120px, calc(100% - 160px));
  min-height: 356px;
  margin: 0 auto 80px;
  background: var(--dp-green);
  color: var(--dp-plum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dp-home-services-panel p {
  margin: 0 0 13px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.58em;
}

.dp-home-services-panel h2 {
  margin: 0 0 28px;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-home-services-panel a {
  min-width: 150px;
  min-height: 39px;
  border-radius: 999px;
  background: var(--dp-plum);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}

.dp-home-seminar {
  min-height: 543px;
  padding: 151px 20px 115px;
  background: var(--dp-lavender);
  text-align: center;
}

.dp-home-seminar h2 {
  width: min(780px, 100%);
  margin: 0 auto 15px;
  color: var(--dp-plum);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 400;
}

.dp-home-seminar p {
  width: min(700px, 100%);
  margin: 0 auto 26px;
  color: #1d171a;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.dp-home-seminar a {
  width: min(388px, 100%);
  min-height: 42px;
  border-radius: 999px;
  background: var(--dp-plum);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
}

.dp-testimonials {
  padding: 148px 20px 90px;
  text-align: center;
}

.dp-testimonials-kicker {
  margin: 0 0 13px;
  color: var(--dp-plum);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.58em;
  font-weight: 400;
}

.dp-testimonials-title {
  margin: 0 0 106px;
  color: var(--dp-plum);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 112px;
  width: min(1085px, 100%);
  margin: 0 auto;
  text-align: center;
}

.dp-testimonial::before {
  content: "“";
  display: block;
  height: 45px;
  color: var(--dp-lavender);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 0.7;
}

.dp-testimonial h3 {
  margin: 0 auto 30px;
  width: 90px;
  padding-bottom: 14px;
  border-bottom: 1px solid #b07b91;
  color: var(--dp-plum);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
}

.dp-testimonial p {
  margin: 0;
  color: #332d30;
  font-size: 20px;
  line-height: 1.55;
  font-style: italic;
  font-weight: 200;
}

.dp-two-column {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 56px;
  align-items: start;
}

.dp-two-column img {
  width: 100%;
  object-fit: cover;
}

.dp-copy h2 {
  margin: 0 0 16px;
  color: var(--dp-plum);
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 500;
}

.dp-copy h3 {
  margin: 32px 0 10px;
  color: var(--dp-plum);
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 24px;
  line-height: 1.35;
}

.dp-copy p {
  margin: 0 0 18px;
}

.dp-copy ul {
  margin: 0 0 22px 22px;
  padding: 0;
}

.dp-copy li {
  margin: 0 0 10px;
}

.dp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

.dp-service-tile {
  position: relative;
  min-height: 335px;
  overflow: hidden;
}

.dp-service-tile img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  display: block;
}

.dp-service-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--dp-plum);
  font-size: 20px;
  line-height: 1.3;
}

.dp-support-list {
  width: min(780px, 100%);
  margin: 0 auto;
}

.dp-support-list h2 {
  color: var(--dp-plum);
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 24px;
}

.dp-support-list ul {
  margin: 0;
  padding-left: 22px;
}

.dp-support-list li {
  margin-bottom: 14px;
}

.dp-hero-strip {
  min-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.dp-hero-strip h1 {
  width: min(var(--dp-max), calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
  font-family: Syne, Poppins, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.dp-image-center {
  text-align: center;
}

.dp-image-center img {
  max-width: 760px;
  width: 100%;
}

.dp-about-hero {
  width: min(1120px, calc(100% - 160px));
  height: 337px;
  margin: 3px auto 0;
  background: var(--dp-green);
  color: var(--dp-plum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dp-about-hero p {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.52em;
}

.dp-about-hero h1 {
  margin: 0;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 34px;
  line-height: 1.28;
  font-weight: 700;
}

.dp-about-section {
  padding: 134px 20px 86px;
}

.dp-about-content {
  width: min(952px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 134px;
  align-items: start;
}

.dp-about-content > img {
  width: 430px;
  display: block;
}

.dp-about-content .dp-copy h2 {
  margin: 42px 0 4px;
  letter-spacing: 0.5em;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.dp-about-content .dp-copy h3 {
  margin: 0 0 26px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-about-content .dp-copy p {
  font-size: 16px;
  line-height: 1.5;
}

.dp-aging-page {
  margin-top: 3px;
  min-height: 940px;
  padding: 66px 20px 80px;
  background: var(--dp-lavender);
}

.dp-aging-content {
  width: min(594px, 100%);
  margin: 0 auto;
}

.dp-aging-content h1 {
  margin: 0 0 19px;
  color: var(--dp-plum);
  text-align: center;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-aging-content > img {
  width: 178px;
  height: 178px;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
}

.dp-aging-content .dp-copy p,
.dp-aging-content .dp-copy li {
  font-size: 16px;
  line-height: 1.42;
}

.dp-aging-content .dp-copy h3 {
  margin-top: 28px;
  color: var(--dp-ink);
  font-size: 17px;
}

.dp-education-hero {
  width: min(1120px, calc(100% - 160px));
  height: 623px;
  margin: 40px auto 30px;
  position: relative;
}

.dp-education-hero > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 773px;
  height: 623px;
  object-fit: cover;
}

.dp-education-panel {
  position: absolute;
  top: 88px;
  left: 0;
  width: 560px;
  height: 519px;
  padding: 75px 48px;
  background: var(--dp-lavender);
  color: var(--dp-plum);
}

.dp-education-panel h1 {
  margin: 0 0 41px;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 55px;
  line-height: 1.28;
  font-weight: 400;
}

.dp-education-panel p {
  max-width: 420px;
  margin: 0;
  color: #3a3035;
  font-size: 16px;
  line-height: 1.78;
  font-weight: 200;
}

.dp-education-cert {
  padding: 8px 20px 80px;
  text-align: center;
}

.dp-education-cert img {
  width: min(574px, 100%);
}

.dp-services-page {
  padding: 97px 40px 80px;
}

.dp-services-page h1 {
  width: min(935px, 100%);
  margin: 0 auto 42px;
  color: var(--dp-plum);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 56px;
  line-height: 1.25;
  font-weight: 200;
}

.dp-services-cover {
  width: min(1200px, 100%);
  height: 520px;
  margin: 0 auto 72px;
  background: var(--dp-lavender);
}

.dp-affiliations-hero {
  width: min(1120px, calc(100% - 160px));
  height: 420px;
  margin: 3px auto 28px;
  background: var(--dp-lavender);
  color: var(--dp-plum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dp-affiliations-hero h1 {
  margin: 0 0 20px;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-affiliations-hero p {
  margin: 0;
  color: #3a3035;
  font-size: 22px;
  line-height: 1.38;
  font-weight: 200;
}

.dp-affiliations-body {
  padding: 0 20px 90px;
  text-align: center;
}

.dp-affiliations-body h2 {
  margin: 0 0 30px;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
}

.dp-affiliations-body img {
  width: min(560px, 100%);
  display: block;
  margin: 0 auto;
}

.dp-blog-section {
  padding: 35px 20px 70px;
}

.dp-blog-section .dp-section-narrow {
  width: min(940px, calc(100% - 40px));
}

.dp-blog-list {
  display: grid;
  gap: 32px;
}

.dp-blog-controls {
  margin-bottom: 15px;
  color: #594f55;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
}

.dp-blog-card {
  display: grid;
  grid-template-columns: 454px 1fr;
  border: 1px solid rgba(216, 193, 221, 0.82);
  text-decoration: none;
  color: var(--dp-ink);
  background: #fff;
  min-height: 341px;
}

.dp-blog-card img {
  width: 100%;
  height: 341px;
  min-height: 341px;
  object-fit: cover;
}

.dp-blog-card-body {
  min-width: 0;
  padding: 30px 40px 22px;
  display: flex;
  flex-direction: column;
}

.dp-blog-card h2 {
  margin: 18px 0 14px;
  color: var(--dp-ink);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 27px;
  line-height: 1.32;
  font-weight: 400;
}

.dp-blog-card p {
  margin: 0 0 22px;
  color: #2c2528;
  font-size: 16px;
  line-height: 1.48;
}

.dp-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b4549;
  font-size: 12px;
  line-height: 1.45;
}

.dp-blog-card-meta strong {
  font-weight: 400;
}

.dp-mini-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #f2f2f2 0 6px, transparent 7px),
    radial-gradient(circle at 50% 85%, #f2f2f2 0 13px, transparent 14px),
    #b8b8b8;
  display: inline-block;
}

.dp-more-dots {
  margin-left: auto;
  color: #6e666b;
  font-size: 20px;
  line-height: 1;
}

.dp-blog-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 28px;
  color: #62595f;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 200;
}

.dp-like {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #211b1e;
}

.dp-like-count {
  display: none;
  min-width: 8px;
  color: #211b1e;
}

.dp-like.is-liked .dp-like-count {
  display: inline;
}

.dp-like-toggle {
  width: 27px;
  height: 25px;
  display: inline-block;
  flex: 0 0 27px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.dp-like-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='25' viewBox='0 0 27 25' fill='none'%3E%3Cpath d='M13.5 22.65C12.9 21.98 11.99 21.21 10.95 20.32C6.39 16.44 1.75 12.47 1.75 7.65C1.75 4.25 4.35 1.75 7.63 1.75C9.67 1.75 11.58 2.76 12.67 4.28L13.5 5.44L14.33 4.28C15.42 2.76 17.33 1.75 19.37 1.75C22.65 1.75 25.25 4.25 25.25 7.65C25.25 12.47 20.61 16.44 16.05 20.32C15.01 21.21 14.1 21.98 13.5 22.65Z' stroke='%23e04f47' stroke-width='2.4' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dp-like.is-liked .dp-like-toggle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27' height='25' viewBox='0 0 27 25' fill='none'%3E%3Cpath d='M13.5 22.65C12.9 21.98 11.99 21.21 10.95 20.32C6.39 16.44 1.75 12.47 1.75 7.65C1.75 4.25 4.35 1.75 7.63 1.75C9.67 1.75 11.58 2.76 12.67 4.28L13.5 5.44L14.33 4.28C15.42 2.76 17.33 1.75 19.37 1.75C22.65 1.75 25.25 4.25 25.25 7.65C25.25 12.47 20.61 16.44 16.05 20.32C15.01 21.21 14.1 21.98 13.5 22.65Z' fill='%23e04f47' stroke='%23e04f47' stroke-width='2.4' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dp-like-toggle:focus-visible {
  outline: 2px solid var(--dp-like-red);
  outline-offset: 3px;
}

.dp-meta {
  color: var(--dp-muted);
  font-size: 13px;
}

.dp-post {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 0 70px;
}

.dp-post-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 42px;
}

.dp-post-top a {
  color: #5f555b;
  text-decoration: none;
  font-size: 15px;
}

.dp-post-search {
  width: min(280px, 100%);
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0 12px;
}

.dp-post-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.dp-post-frame {
  border: 1px solid rgba(216, 193, 221, 0.82);
  padding: 58px 99px 70px;
}

.dp-post-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5a5458;
  font-size: 14px;
  line-height: 1.4;
}

.dp-post h1 {
  margin: 22px 0 24px;
  color: var(--dp-ink);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 40px;
  line-height: 1.38;
  font-weight: 400;
}

.dp-post .dp-meta {
  margin-bottom: 28px;
}

.dp-post-frame p {
  margin: 0 0 14px;
  color: #3a3035;
  font-size: 18px;
  line-height: 1.34;
  font-weight: 200;
}

.dp-post img {
  width: 100%;
  max-height: none;
  object-fit: cover;
  margin: 0 0 34px;
}

.dp-recent-posts {
  margin-top: 62px;
  padding-top: 0;
}

.dp-recent-posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.dp-recent-posts h2 {
  margin: 0;
  color: #3b3337;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 200;
}

.dp-recent-posts-header a {
  color: #4c4549;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 200;
}

.dp-recent-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 64px;
  justify-content: flex-start;
}

.dp-recent-card {
  color: var(--dp-ink);
  text-decoration: none;
  border: 1px solid rgba(216, 193, 221, 0.82);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 289px;
}

.dp-recent-card img {
  width: 100%;
  height: 169px;
  object-fit: cover;
  margin: 0;
  display: block;
}

.dp-recent-card-body {
  flex: 1;
  padding: 29px 28px 21px;
  display: flex;
  flex-direction: column;
}

.dp-recent-card h3 {
  margin: 0 0 28px;
  color: var(--dp-ink);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}

.dp-recent-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 24px;
  color: #50494d;
  font-size: 14px;
  line-height: 1;
  font-weight: 200;
}

.dp-recent-views,
.dp-recent-comments-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dp-recent-views::before {
  content: "";
  width: 22px;
  height: 18px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dp-recent-comments-count::before {
  content: "";
  width: 21px;
  height: 19px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H7l-4 4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dp-recent-heart {
  width: 27px;
  height: 25px;
  flex-basis: 27px;
}

.dp-comments {
  margin-top: 56px;
  border: 1px solid rgba(216, 193, 221, 0.82);
  padding: 89px 99px 126px;
  min-height: 360px;
}

.dp-comments h2 {
  margin: 0 0 68px;
  padding-bottom: 29px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--dp-ink);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-comment-box {
  min-height: 73px;
  border: 1px solid rgba(0, 0, 0, 0.32);
  color: var(--dp-muted);
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 200;
}

.dp-profile-view .dp-nav {
  display: none;
}

.dp-profile-page {
  padding: 10px 20px 70px;
}

.dp-member-hero {
  width: min(980px, 100%);
  height: 250px;
  margin: 0 auto;
  padding: 0 28px 0 54px;
  background: var(--dp-plum);
  color: #fff;
  display: flex;
  align-items: center;
}

.dp-member-avatar {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  border-radius: 50%;
  background: #dedede;
  color: #969696;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
  line-height: 1;
}

.dp-member-summary {
  margin-left: 25px;
  color: #fff;
}

.dp-member-summary h1 {
  margin: 0 0 5px;
  color: #fff;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 200;
}

.dp-member-summary h1 span {
  font-size: 12px;
  font-weight: 200;
}

.dp-member-summary h1 span::before {
  content: "◆";
  margin: 0 5px 0 2px;
  font-size: 10px;
}

.dp-member-summary p {
  margin: 0;
  font-size: 16px;
  font-weight: 200;
}

.dp-member-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dp-member-actions a {
  width: 82px;
  height: 32px;
  border: 1px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}

.dp-member-actions span {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.dp-profile-tab-strip {
  width: min(980px, 100%);
  height: 110px;
  margin: 0 auto;
  position: relative;
}

.dp-profile-tab-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 63px;
  height: 4px;
  background: var(--dp-plum);
}

.dp-profile-tab-strip span {
  position: absolute;
  top: 20px;
  left: 30px;
  color: #8a5c72;
  font-size: 16px;
}

.dp-member-profile-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.dp-member-profile-content h2 {
  margin: 14px 0 7px;
  color: var(--dp-ink);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-member-profile-content > p {
  margin: 0;
  color: #2f292d;
  font-size: 16px;
  font-weight: 200;
}

.dp-member-rule {
  border-top: 1px solid rgba(0, 0, 0, 0.28);
  margin: 31px 0 31px;
}

.dp-member-profile-content h3 {
  margin: 0 0 24px;
  color: var(--dp-ink);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

.dp-member-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dp-member-post-card {
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.22);
  color: var(--dp-ink);
  text-decoration: none;
  background: #fff;
}

.dp-member-post-card img {
  width: 100%;
  height: 215px;
  display: block;
  object-fit: cover;
}

.dp-member-post-card h4 {
  margin: 18px 18px 10px;
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.dp-member-post-card p {
  margin: 0 18px 22px;
  color: #2f292d;
  font-size: 14px;
  line-height: 1.45;
}

.dp-footer {
  background: #fff;
  border-top: 0;
  padding: 0 20px;
}

.dp-footer-inner {
  width: min(1120px, 100%);
  min-height: 538px;
  margin: 0 auto;
  padding: 109px 89px;
  background: #b282bb;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.dp-footer h2 {
  margin: 0 0 20px;
  color: var(--dp-plum);
  font-family: Poppins, Syne, Avenir, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 400;
}

.dp-footer p {
  margin: 0 0 16px;
  color: #171214;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 200;
}

.dp-footer-name {
  font-size: 26px;
}

.dp-footer a {
  color: #171214;
  text-decoration: none;
}

.dp-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
}

.dp-footer-cta strong {
  max-width: 260px;
  color: #171214;
  font-size: 26px;
  line-height: 1.58;
  font-weight: 200;
}

.dp-footer-cta .dp-button {
  min-width: 0;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--dp-plum);
  color: var(--dp-plum);
  font-size: 25px;
  font-weight: 200;
}

.dp-copyright {
  display: none;
}

.dp-query {
  width: min(var(--dp-max), calc(100% - 40px));
  margin: 70px auto;
}

@media (max-width: 900px) {
  .dp-header-top {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .dp-search {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .dp-contact-line,
  .dp-logo {
    margin-left: 0;
  }

  .dp-nav {
    padding: 14px 0 18px;
    gap: 10px 18px;
    transform: none;
  }

  .dp-story,
  .dp-home-story,
  .dp-two-column,
  .dp-about-content,
  .dp-blog-card,
  .dp-footer-inner {
    grid-template-columns: 1fr;
  }

  .dp-story-left {
    min-height: auto;
    padding: 64px 40px;
  }

  .dp-story-right {
    padding: 44px 40px;
  }

  .dp-home-services-panel {
    width: calc(100% - 40px);
  }

  .dp-testimonial-grid {
    gap: 48px;
  }

  .dp-about-hero,
  .dp-education-hero,
  .dp-affiliations-hero {
    width: calc(100% - 40px);
  }

  .dp-about-content {
    gap: 48px;
  }

  .dp-about-content > img {
    width: 100%;
  }

  .dp-education-hero {
    height: auto;
    display: grid;
  }

  .dp-education-hero > img,
  .dp-education-panel {
    position: static;
    width: 100%;
    height: auto;
  }

  .dp-member-post-grid {
    grid-template-columns: 1fr;
  }

  .dp-service-grid,
  .dp-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .dp-section {
    padding: 52px 18px;
  }

  .dp-page-title,
  .dp-hero-strip h1 {
    font-size: 38px;
  }

  .dp-search {
    width: calc(100% - 40px);
    max-width: 305px;
  }

  .dp-nav {
    width: calc(100% - 32px);
    gap: 10px 14px;
    font-size: 14px;
    overflow: hidden;
  }

  .dp-nav a {
    white-space: nowrap;
  }

  .dp-kicker {
    font-size: 30px;
  }

  .dp-about-hero,
  .dp-affiliations-hero {
    width: calc(100% - 36px);
    height: auto;
    min-height: 300px;
    padding: 48px 18px;
  }

  .dp-about-section {
    padding: 64px 18px;
  }

  .dp-aging-page {
    padding: 42px 18px 64px;
  }

  .dp-aging-content h1,
  .dp-affiliations-hero h1 {
    font-size: 32px;
  }

  .dp-education-hero {
    width: calc(100% - 36px);
    margin-top: 28px;
  }

  .dp-education-panel {
    padding: 44px 28px;
  }

  .dp-education-panel h1,
  .dp-services-page h1 {
    font-size: 40px;
  }

  .dp-services-page {
    padding: 56px 18px 64px;
  }

  .dp-services-cover {
    height: 360px;
  }

  .dp-affiliations-hero p {
    font-size: 18px;
  }

  .dp-hero {
    min-height: 520px;
    padding: 30px 18px;
  }

  .dp-hero-panel {
    width: 100%;
    height: auto;
    margin-top: 68px;
    min-height: auto;
    padding: 54px 28px 38px;
    border-radius: 160px;
  }

  .dp-hero h1 {
    font-size: 32px;
    white-space: normal;
  }

  .dp-story-left {
    padding: 52px 28px;
  }

  .dp-story-left h2 {
    font-size: 31px;
  }

  .dp-story-left p {
    font-size: 21px;
  }

  .dp-story-right {
    padding: 42px 28px;
  }

  .dp-home-services-panel {
    width: calc(100% - 36px);
    min-height: 300px;
    margin-bottom: 56px;
    padding: 48px 18px;
  }

  .dp-home-services-panel h2,
  .dp-testimonials-title {
    font-size: 28px;
  }

  .dp-home-seminar {
    min-height: auto;
    padding: 88px 24px;
  }

  .dp-testimonials {
    padding: 88px 20px 70px;
  }

  .dp-service-grid,
  .dp-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .dp-service-tile img,
  .dp-service-tile {
    min-height: 300px;
    height: 300px;
  }

  .dp-blog-card img {
    min-height: 240px;
    height: 240px;
  }

  .dp-post {
    width: calc(100% - 32px);
  }

  .dp-post-frame {
    padding: 36px 24px 46px;
  }

  .dp-post h1 {
    font-size: 31px;
  }

  .dp-post-frame p {
    font-size: 16px;
  }

  .dp-post-top,
  .dp-recent-posts-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dp-recent-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dp-recent-card img {
    height: 210px;
  }

  .dp-comments {
    padding: 46px 24px 64px;
  }

  .dp-comment-box {
    font-size: 20px;
  }

  .dp-footer h2 {
    font-size: 36px;
  }

  .dp-footer {
    padding: 0 18px;
  }

  .dp-footer-inner {
    min-height: auto;
    padding: 58px 32px;
  }

  .dp-footer p,
  .dp-footer-cta strong,
  .dp-footer-cta .dp-button {
    font-size: 21px;
  }
}
