/* Single blog post — Newbury Park Dental Arts.
   Styles the raw WordPress content area inside the "Blog Post Template"
   Kadence Element (replace_single_content, singular|post), plus a couple of
   small helper classes on that same element. Loaded only on is_single()
   for post type "post" — see functions.php. */

.np-post-cat-label {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
}

.np-post-author-img img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  display: block;
}

/* Post body — the actual WordPress content editor output */
.np-post-body .wp-block-kadence-dynamichtml {
  font-family: var(--global-body-font-family, inherit);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.95;
  color: var(--global-palette4, #514a43);
}
.np-post-body .wp-block-kadence-dynamichtml > p:first-of-type { color: var(--global-palette3, #2a231e); }
.np-post-body .wp-block-kadence-dynamichtml h2 {
  font-family: var(--global-heading-font-family, inherit);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.18;
  color: var(--global-palette3, #2a231e);
  margin: 50px 0 18px;
}
.np-post-body .wp-block-kadence-dynamichtml ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid #e0d7ca;
  counter-reset: np-li;
}
.np-post-body .wp-block-kadence-dynamichtml ul li {
  position: relative;
  padding: 15px 0 15px 32px;
  border-bottom: 1px solid #e0d7ca;
  font-size: 16px;
}
.np-post-body .wp-block-kadence-dynamichtml ul li::before {
  content: counter(np-li, decimal-leading-zero);
  counter-increment: np-li;
  position: absolute;
  left: 0;
  top: 15px;
  font-family: monospace;
  font-size: 13px;
  color: var(--global-palette10, #b79258);
}
.np-post-body .wp-block-kadence-dynamichtml blockquote {
  border-left: 1px solid var(--global-palette10, #b79258);
  padding-left: 34px;
  margin: 44px 0;
  font-family: var(--global-heading-font-family, inherit);
  font-size: 27px;
  line-height: 1.5;
  color: var(--global-palette3, #2a231e);
}
.np-post-body .wp-block-kadence-dynamichtml figure { margin: 0 0 40px; }
.np-post-body .wp-block-kadence-dynamichtml figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.np-post-body .wp-block-kadence-dynamichtml figcaption {
  font-family: var(--global-body-font-family, inherit);
  font-size: 13px;
  color: #8c7965;
  margin-top: 14px;
}
.np-post-body .wp-block-kadence-dynamichtml a {
  color: var(--global-palette6, #6c8e95);
  text-decoration: none;
  border-bottom: 1px solid #cfd9db;
}
.np-post-body .wp-block-kadence-dynamichtml a:hover { border-bottom-color: var(--global-palette6, #6c8e95); }

@media (max-width: 900px) {
  .np-post-body .wp-block-kadence-dynamichtml h2 { font-size: 28px; }
}
