/**
 * Single Post (News details) basic typography spacing.
 * Scoped to avoid affecting other pages.
 */

/* Space between featured image and first paragraph (replaces removed meta row) */
body.single-post .wp-block-post-featured-image {
  margin-bottom: 1.5rem;
}

/* Space between title and featured image */
body.single-post .wp-block-post-title {
  margin-bottom: 1rem;
}

body.single-post .wp-block-post-content p,
body.single-post .entry-content p {
  margin-top: 0;
  margin-bottom: 1em;
}

body.single-post .wp-block-post-content h2,
body.single-post .entry-content h2 {
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}

body.single-post .wp-block-post-content h3,
body.single-post .entry-content h3 {
  margin-top: 1.1em;
  margin-bottom: 0.5em;
}

body.single-post .wp-block-post-content ul,
body.single-post .wp-block-post-content ol,
body.single-post .entry-content ul,
body.single-post .entry-content ol {
  margin-top: 0.75em;
  margin-bottom: 1em;
  padding-left: 1.25em;
}

body.single-post .wp-block-post-content li,
body.single-post .entry-content li {
  margin: 0.35em 0;
}

/* Reduce padding around Tags section (single post only) */
body.single-post .wp-block-group:has(> .wp-block-post-terms) {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* If terms block doesn't render, still reduce the wrapper spacing */
body.single-post .wp-block-group.alignfull>.wp-block-group.has-global-padding.is-layout-constrained {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* .wp-container-core-group-is-layout-4efaea1e {
  margin-bottom: 60px !important;
} */
.wp-container-core-group-is-layout-4efaea1e {
  margin-bottom: 60px !important;
}

/* Comment form submit — match .lob-filter-reset (lob-overzicht filters) */
body.single-post .comment-form input[type="submit"],
body.single-post .comment-form input[type="submit"].wp-element-button,
body.single-post .comment-form .form-submit input[type="submit"],
body.single-post .wp-block-post-comments-form input[type="submit"],
body.single-post .wp-block-comments input[type="submit"] {
  display: block;
  /* width: 100%; */
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  margin-top: 1.25rem;
  background: var(--wp--preset--color--custom-00-c-8-b-0) !important;
  color: var(--color-black, #000) !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

body.single-post .comment-form input[type="submit"]:hover,
body.single-post .comment-form input[type="submit"].wp-element-button:hover,
body.single-post .comment-form .form-submit input[type="submit"]:hover,
body.single-post .wp-block-post-comments-form input[type="submit"]:hover,
body.single-post .wp-block-comments input[type="submit"]:hover {
  background: var(--color-primary-hover, #00c8b0e6) !important;
  color: var(--color-black, #000) !important;
}