/**
 * Blog editorial body — Medical Blog Page Design package.
 * Scoped to body.tx-blog-editorial. Hero/header stay on treatment chrome.
 */

@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap");

html:has(body.tx-blog-editorial),
body.tx-blog-editorial {
  overflow-x: clip !important;
}

body.tx-blog-editorial {
  --mb-ink: #0f2744;
  --mb-body: #36424f;
  --mb-muted: #8a8070;
  --mb-label: #b05f3a;
  --mb-navy: #1b3a6b;
  --mb-line: #d6d0c4;
  --mb-cream: #ede8df;
  --mb-card: #e0d9ce;
  --mb-warn-bg: #fff6ed;
  --mb-warn: #c97a35;
  --mb-danger-bg: #fff0ef;
  --mb-danger: #c62828;
  --mb-info-bg: #eef4fb;
  --mb-info: #3b7dd8;
  --mb-mono: "DM Mono", ui-monospace, monospace;
  --mb-sans: "Figtree", "Poppins", system-ui, sans-serif;
  --mb-ui: "Poppins", system-ui, sans-serif;
  background: #fff;
}

body.tx-blog-editorial .tx-content,
body.tx-blog-editorial .tx-toc,
body.tx-blog-editorial .tx-related {
  padding-top: 0;
  background: #fff;
  overflow: visible;
}

body.tx-blog-editorial .tx-blog-progress {
  display: none;
}

.mb-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1600;
  height: 3px;
  width: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--mb-navy), var(--mb-label));
}

.mb-layout {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1080px) {
  .mb-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 3.5rem;
    align-items: stretch;
  }
}

.mb-toc-slot {
  display: contents;
}
.mb-toc {
  display: none;
}
@media (min-width: 1080px) {
  .mb-toc-slot {
    display: block;
    width: 220px;
    position: relative;
  }
  .mb-toc {
    display: block;
    width: 220px;
    position: sticky;
    top: 6.5rem;
    z-index: 40;
    max-height: calc(100vh - 7.5rem);
    overflow-y: auto;
  }
  .mb-toc.is-pinned {
    position: fixed;
  }
}
.mb-toc__label {
  margin: 0 0 10px;
  font-family: var(--mb-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mb-muted);
}
.mb-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mb-toc a {
  display: block;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  font-family: var(--mb-ui);
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--mb-muted);
  text-decoration: none;
}
.mb-toc a.is-active {
  color: var(--mb-ink);
  font-weight: 600;
  background: var(--mb-cream);
  border-left-color: var(--mb-navy);
}
.mb-toc__read {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mb-line);
}
.mb-toc__read-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-family: var(--mb-mono);
  font-size: 0.65rem;
  color: var(--mb-muted);
}
.mb-toc__read-row strong {
  color: var(--mb-ink);
  font-weight: 500;
}
.mb-toc__bar {
  height: 4px;
  border-radius: 99px;
  background: var(--mb-line);
  overflow: hidden;
}
.mb-toc__bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--mb-navy);
}
.mb-toc__cta {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: var(--mb-label);
  color: #fff !important;
  font-family: var(--mb-ui);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
}
.mb-toc__cta:hover {
  opacity: 0.88;
}

.mb-toc-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1280px, calc(100% - 2.5rem));
  margin: 1.25rem auto 0;
  padding: 0.7rem 1rem;
  border: 1px solid var(--mb-line);
  border-radius: 12px;
  background: #fff;
  font-family: var(--mb-ui);
  font-size: 0.875rem;
  color: var(--mb-ink);
}
@media (min-width: 1080px) {
  .mb-toc-mobile {
    display: none;
  }
}
.mb-toc-mobile[aria-expanded="true"] + .mb-layout .mb-toc {
  display: block;
  position: static;
  margin-bottom: 0.5rem;
}

.mb-article {
  min-width: 0;
  max-width: 46rem;
  font-family: var(--mb-ui);
  color: var(--mb-body);
}
@media (min-width: 1080px) {
  .mb-article {
    max-width: none;
  }
}

.mb-kicker {
  display: block;
  margin: 0 0 10px;
  font-family: var(--mb-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mb-label);
}

body.tx-blog-editorial .mb-article .tx-lead {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}
body.tx-blog-editorial .mb-article .tx-lead__media {
  display: none;
}

.mb-figure {
  margin: 1.35rem 0 1.75rem;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #eef3f7;
  box-shadow: 0 10px 28px rgba(39, 71, 96, 0.08);
}
.mb-figure picture,
.mb-figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.mb-figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.mb-figure figcaption {
  margin: 0;
  padding: 0.7rem 0.95rem 0.85rem;
  font-family: var(--mb-ui);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(39, 71, 96, 0.68);
  background: #f7fafc;
  border-top: 1px solid rgba(39, 71, 96, 0.08);
}
@media (max-width: 767px) {
  .mb-figure {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    border-radius: 12px;
  }
}

body.tx-blog-editorial .mb-article .tx-lead__heading {
  max-width: none;
  margin: 0 0 1rem;
  font-family: var(--mb-sans);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--mb-ink);
}
body.tx-blog-editorial .mb-article .tx-lead__copy,
body.tx-blog-editorial .mb-article .tx-lead__copy > p,
body.tx-blog-editorial .mb-article .tx-lead__copy .tx-lead__intro p,
body.tx-blog-editorial .mb-article .tx-topic-solo p,
body.tx-blog-editorial .mb-article .tx-chapter__lede-html p,
body.tx-blog-editorial .mb-article .tx-blog-role__body p,
body.tx-blog-editorial .mb-article .tx-topic__body p {
  max-width: none;
  margin: 0 0 1.25rem;
  font-family: var(--mb-ui);
  font-size: 1rem;
  line-height: 1.82;
  color: var(--mb-body);
  text-wrap: pretty;
}
body.tx-blog-editorial .mb-article .tx-lead__copy .tx-lead__intro p strong,
body.tx-blog-editorial .mb-article .tx-topic-solo p strong,
body.tx-blog-editorial .mb-article strong {
  color: var(--mb-ink);
  font-weight: 600;
}

body.tx-blog-editorial .blog-author-byline {
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid var(--mb-line);
  background: none;
  box-shadow: none;
}
body.tx-blog-editorial .blog-author-byline__glow {
  display: none;
}
body.tx-blog-editorial .blog-author-byline__icon svg {
  display: none;
}
body.tx-blog-editorial .blog-author-byline__icon::before {
  content: "\f0f0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
}

.mb-hr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2.5rem 0;
}
.mb-hr::before,
.mb-hr::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--mb-line);
}
.mb-hr i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b89e;
}

body.tx-blog-editorial .tx-chapter {
  margin: 0;
  padding: 0;
  border: 0;
  scroll-margin-top: 6.5rem;
}
body.tx-blog-editorial .tx-chapter + .tx-chapter {
  margin-top: 0;
}
body.tx-blog-editorial .tx-chapter__head {
  margin: 0 0 1rem;
  max-width: none;
}
body.tx-blog-editorial .tx-chapter__title,
body.tx-blog-editorial .tx-chapter--faq .tx-chapter__title,
body.tx-blog-editorial .tx-chapter--refs .tx-chapter__title {
  max-width: none;
  margin: 0 0 1rem;
  font-family: var(--mb-sans);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--mb-ink);
}
body.tx-blog-editorial .tx-chapter__lede-html {
  margin: 0;
  font-style: normal;
  color: var(--mb-body);
}
body.tx-blog-editorial .tx-topic-solo,
body.tx-blog-editorial .tx-chapter__topics,
body.tx-blog-editorial .tx-chapter__refs {
  max-width: none;
  border: 0;
  background: none;
  padding: 0;
}

/* Package InfoBox — Font Awesome, not custom SVG */
.mb-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.125rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1;
}
.mb-ico--warn { background: #fef5ee; color: #b05f3a; }
.mb-ico--info { background: #eef4fb; color: #3b7dd8; }
.mb-ico--navy { background: #f5f1ea; color: #1b3a6b; }
.mb-ico--check {
  width: auto;
  height: auto;
  margin-top: 0.25rem;
  background: none;
  color: #5b2e91;
  font-size: 0.9rem;
}
.mb-ibox__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}
body.tx-blog-editorial .tx-blog-callout--legal,
body.tx-blog-editorial .tx-blog-callout--urgent,
body.tx-blog-editorial .tx-blog-callout--note {
  display: flex;
  gap: 1rem;
  margin: 1.75rem 0;
  padding: 1.25rem;
  border: 0;
  border-radius: 16px;
  overflow: visible;
}
body.tx-blog-editorial .tx-blog-callout--legal::before,
body.tx-blog-editorial .tx-blog-callout--urgent::before,
body.tx-blog-editorial .tx-blog-callout--note::before,
body.tx-blog-editorial .tx-blog-callout--legal::after,
body.tx-blog-editorial .tx-blog-callout--urgent::after,
body.tx-blog-editorial .tx-blog-callout--note::after {
  content: none;
  display: none;
}
body.tx-blog-editorial .tx-blog-callout--legal {
  background: var(--mb-warn-bg);
  border-left: 3px solid var(--mb-warn);
}
body.tx-blog-editorial .tx-blog-callout--legal .mb-ibox__icon {
  background: var(--mb-warn);
}
body.tx-blog-editorial .tx-blog-callout--urgent {
  background: var(--mb-danger-bg);
  border-left: 3px solid var(--mb-danger);
}
body.tx-blog-editorial .tx-blog-callout--urgent .mb-ibox__icon {
  background: var(--mb-danger);
}
body.tx-blog-editorial .tx-blog-callout--note {
  background: var(--mb-info-bg);
  border-left: 3px solid var(--mb-info);
}
body.tx-blog-editorial .tx-blog-callout--note .mb-ibox__icon {
  background: var(--mb-info);
}
.mb-ibox__body {
  min-width: 0;
}
.mb-ibox__label {
  margin: 0 0 0.5rem;
  font-family: var(--mb-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tx-blog-callout--legal .mb-ibox__label { color: var(--mb-warn); }
.tx-blog-callout--urgent .mb-ibox__label { color: var(--mb-danger); }
.tx-blog-callout--note .mb-ibox__label { color: var(--mb-info); }
body.tx-blog-editorial .tx-blog-callout p,
body.tx-blog-editorial .tx-lead__intro .tx-blog-callout p,
body.tx-blog-editorial .tx-topic-solo .tx-blog-callout p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #2c3a3a;
}
body.tx-blog-editorial .tx-blog-callout--legal,
body.tx-blog-editorial .tx-blog-callout--legal p,
body.tx-blog-editorial .tx-blog-callout--urgent,
body.tx-blog-editorial .tx-blog-callout--urgent p,
body.tx-blog-editorial .tx-lead__intro .tx-blog-callout--urgent,
body.tx-blog-editorial .tx-lead__intro .tx-blog-callout--urgent p {
  color: #2c3a3a;
}
body.tx-blog-editorial .tx-blog-callout strong {
  color: var(--mb-ink);
}

body.tx-blog-editorial .tx-blog-cites,
body.tx-blog-editorial .tx-blog-cite {
  font-family: var(--mb-mono);
  font-size: 0.7rem;
  color: var(--mb-muted);
  font-weight: 400;
}
body.tx-blog-editorial .tx-blog-cite:hover,
body.tx-blog-editorial .tx-blog-cite:focus-visible {
  color: var(--mb-navy);
}

/* Flags grid */
body.tx-blog-editorial .tx-blog-flags {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  border: 0;
  columns: auto;
}
@media (min-width: 640px) {
  body.tx-blog-editorial .tx-blog-flags {
    grid-template-columns: 1fr 1fr;
  }
}
body.tx-blog-editorial .tx-blog-flags li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--mb-card);
  border-radius: 12px;
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #2c3a54;
  break-inside: auto;
}
body.tx-blog-editorial .tx-blog-flags li::before {
  display: none;
}

/* Timeline table → stacked cards */
body.tx-blog-editorial .tx-blog-table--steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1.5rem 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
body.tx-blog-editorial .tx-blog-table--steps thead {
  display: none;
}
body.tx-blog-editorial .tx-blog-table--steps tbody {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
body.tx-blog-editorial .tx-blog-table--steps tr,
body.tx-blog-editorial .tx-blog-table--steps td {
  display: block;
  border: 0;
  padding: 0;
}
body.tx-blog-editorial .tx-blog-table--steps tr {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  border: 1px solid #e7b4b0;
  background: #fff0ef !important;
}
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(2) {
  border-color: #efc4a4;
  background: #fff8f3 !important;
}
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(3) {
  border-color: #b7cce4;
  background: #eef4fb !important;
}
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(4) {
  border-color: #c5ced3;
  background: #eceff1 !important;
}
body.tx-blog-editorial .tx-blog-table--steps td:first-child {
  padding: 0.7rem 1.25rem;
  font-family: var(--mb-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  background: #b71c1c !important;
}
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(2) td:first-child { background: #c2410c !important; }
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(3) td:first-child { background: #0d47a1 !important; }
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(4) td:first-child { background: #263238 !important; }
body.tx-blog-editorial .tx-blog-table--steps td:nth-child(2),
body.tx-blog-editorial .tx-blog-table--steps td:nth-child(3) {
  display: flow-root;
  padding: 1rem 1.25rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1f2a37;
  background: transparent !important;
}
body.tx-blog-editorial .tx-blog-table--steps td:nth-child(2)::before,
body.tx-blog-editorial .tx-blog-table--steps td:nth-child(3)::before {
  display: none;
}
body.tx-blog-editorial .tx-blog-table--steps td:nth-child(3) {
  padding-top: 0;
  padding-bottom: 1rem;
}
body.tx-blog-editorial .tx-blog-table--steps .mb-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.tx-blog-editorial .tx-blog-table--steps .mb-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1f2a37;
}
body.tx-blog-editorial .tx-blog-table--steps .mb-step-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 0.55rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #b71c1c;
}
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(2) .mb-step-list li::before { background: #c2410c; }
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(3) .mb-step-list li::before { background: #0d47a1; }
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(4) .mb-step-list li::before { background: #263238; }
body.tx-blog-editorial .tx-blog-table--steps .mb-step-path {
  display: block;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 39, 68, 0.18);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #243447;
}
body.tx-blog-editorial .tx-blog-table--steps .mb-step-path strong {
  display: inline;
  font-family: var(--mb-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mb-ink);
}
body.tx-blog-editorial .tx-blog-table--steps .mb-step-path .tx-blog-cites,
body.tx-blog-editorial .tx-blog-table--steps .mb-step-path .tx-blog-cite {
  color: #3d4f63;
}
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(odd),
body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(even) {
  padding: 0;
}
@media (min-width: 900px) {
  body.tx-blog-editorial .tx-blog-table--steps tbody {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }
  body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(odd),
  body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(even) {
    padding: 0;
  }
  body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(1) { border-right: 1px solid #e7b4b0; }
  body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(2) { border-right: 1px solid #efc4a4; }
  body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(3) { border-right: 1px solid #b7cce4; }
  body.tx-blog-editorial .tx-blog-table--steps tr:nth-child(4) { border-right: 1px solid #c5ced3; }
}

/* Role / specialist cards */
body.tx-blog-editorial .tx-blog-roles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0;
  max-width: none;
}
body.tx-blog-editorial .tx-blog-role {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ffcdd2;
  border-radius: 16px;
  background: var(--mb-danger-bg);
}
body.tx-blog-editorial .tx-blog-role:nth-child(2) { border-color: #c5d9f0; background: var(--mb-info-bg); }
body.tx-blog-editorial .tx-blog-role:nth-child(3) { border-color: #c5e1a5; background: #f1f8e9; }
body.tx-blog-editorial .tx-blog-role:nth-child(4) { border-color: #d4bbef; background: #f5f0ff; }
body.tx-blog-editorial .tx-blog-role:nth-child(odd),
body.tx-blog-editorial .tx-blog-role:nth-child(even) {
  padding: 0;
  border-right-color: inherit;
}
body.tx-blog-editorial .tx-blog-role__title {
  margin: 0;
  padding: 0.65rem 1.25rem;
  font-family: var(--mb-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #c62828;
}
body.tx-blog-editorial .tx-blog-role:nth-child(2) .tx-blog-role__title { background: var(--mb-navy); }
body.tx-blog-editorial .tx-blog-role:nth-child(3) .tx-blog-role__title { background: #2e7d32; }
body.tx-blog-editorial .tx-blog-role:nth-child(4) .tx-blog-role__title { background: #5b2e91; }
body.tx-blog-editorial .tx-blog-role__body {
  padding: 1rem 1.25rem 1.15rem;
}
body.tx-blog-editorial .tx-blog-role__body p:last-child {
  margin-bottom: 0;
}

/* Keylist */
body.tx-blog-editorial .tx-keylist {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
body.tx-blog-editorial .tx-keylist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--mb-card);
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mb-body);
}
body.tx-blog-editorial #chapter-doktor-hangi-sorulari-sorar .tx-keylist {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  body.tx-blog-editorial #chapter-doktor-hangi-sorulari-sorar .tx-keylist {
    grid-template-columns: 1fr 1fr;
  }
}
body.tx-blog-editorial #chapter-doktor-hangi-sorulari-sorar .tx-keylist li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #2c3a54;
}
body.tx-blog-editorial .tx-topic-solo .tx-keylist {
  padding-left: 0;
}

/* Compare BT / MR */
body.tx-blog-editorial .tx-blog-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  border: 0;
}
@media (min-width: 720px) {
  body.tx-blog-editorial .tx-blog-compare {
    grid-template-columns: 1fr 1fr;
  }
}
body.tx-blog-editorial .tx-blog-compare__item {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid #c5d9f0;
  border-radius: 16px;
  background: var(--mb-info-bg);
}
body.tx-blog-editorial .tx-blog-compare__item:last-child {
  background: #f0f4fb;
  border-color: #c8d5ef;
}
.mb-compare__title {
  margin: 0 0 0.15rem;
  font-family: var(--mb-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: #1565c0;
}
.tx-blog-compare__item:last-child .mb-compare__title {
  color: var(--mb-navy);
}
.mb-compare__when {
  margin: 0 0 0.75rem;
  font-family: var(--mb-mono);
  font-size: 0.7rem;
  color: #7a8eb0;
}
body.tx-blog-editorial .tx-blog-compare__item:first-child,
body.tx-blog-editorial .tx-blog-compare__item:last-child {
  padding: 1.25rem;
  border-right: 1px solid #c5d9f0;
}
body.tx-blog-editorial .tx-blog-compare__item p {
  margin: 0;
  font-size: 0.9rem;
}

/* Special-situation / multi-topic bands */
body.tx-blog-editorial .mb-bands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.tx-blog-editorial .mb-band {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--mb-line);
}
body.tx-blog-editorial .mb-band__title {
  margin: 0;
  padding: 0.65rem 1.25rem;
  font-family: var(--mb-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #00695c;
}
body.tx-blog-editorial .mb-bands .mb-band:nth-child(2) .mb-band__title { background: #6a1b9a; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(3) .mb-band__title { background: #bf360c; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(4) .mb-band__title { background: #e65100; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(5) .mb-band__title { background: #37474f; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(6) .mb-band__title { background: #1565c0; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(1) { border-color: #a5d6a7; background: #e8f5e9; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(2) { border-color: #e1bee7; background: #f9f0ff; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(3) { border-color: #ffccbc; background: #fff3ee; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(4) { border-color: #ffccaa; background: #fff8f3; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(5) { border-color: #cfd8dc; background: #eceff1; }
body.tx-blog-editorial .mb-bands .mb-band:nth-child(6) { border-color: #c5d9f0; background: #eef4fb; }
body.tx-blog-editorial .mb-band__body {
  padding: 1rem 1.25rem 1.15rem;
}
body.tx-blog-editorial .mb-band__body p:last-child {
  margin-bottom: 0;
}

/* 10 questions */
body.tx-blog-editorial .tx-blog-questions {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  columns: auto;
  counter-reset: none;
}
@media (min-width: 640px) {
  body.tx-blog-editorial .tx-blog-questions {
    grid-template-columns: 1fr 1fr;
  }
}
body.tx-blog-editorial .tx-blog-questions li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--mb-card);
  border-radius: 12px;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #2c3a54;
}
body.tx-blog-editorial .tx-blog-questions li::before {
  display: none;
}

/* FAQ accordion */
body.tx-blog-editorial .tx-chapter--faq .tx-chapter__topics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic {
  border: 1px solid var(--mb-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic__summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic__title {
  margin: 0;
  font-family: var(--mb-ui);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--mb-ink);
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic__ico {
  order: -1;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--mb-cream);
  color: var(--mb-muted);
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic[open] > .tx-topic__summary .tx-topic__ico {
  background: var(--mb-ink);
  color: #fff;
  transform: rotate(45deg);
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic__body {
  padding: 0 1.25rem 1.15rem 3.75rem;
}
body.tx-blog-editorial .tx-chapter--faq .tx-topic[open] > .tx-topic__summary {
  border-bottom: 0;
}

/* References */
body.tx-blog-editorial .tx-blog-refs,
body.tx-blog-editorial .tx-chapter__refs ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.tx-blog-editorial .tx-blog-refs li,
body.tx-blog-editorial .tx-chapter__refs li {
  display: flex;
  gap: 0.75rem;
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #7a7265;
}
body.tx-blog-editorial .tx-blog-refs li::before {
  display: none;
}
body.tx-blog-editorial .tx-blog-ref__num {
  flex-shrink: 0;
  min-width: 24px;
  font-family: var(--mb-mono);
  font-weight: 500;
  color: var(--mb-navy);
}

.mb-cta {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid var(--mb-line);
  border-radius: 24px;
  background: var(--mb-cream);
}
.mb-cta .mb-kicker {
  margin-bottom: 12px;
  color: var(--mb-muted);
}
.mb-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--mb-sans);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--mb-ink);
}
.mb-cta p {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #7a7265;
}
.mb-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mb-cta__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--mb-ui);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
}
.mb-cta h2 em {
  font-style: italic;
}
.mb-cta__actions a:first-child {
  background: var(--mb-ink);
  color: #fff !important;
}
.mb-cta__actions a:last-child {
  background: var(--mb-label);
  color: #fff !important;
}

body.tx-blog-editorial .tx-related {
  padding: 0 0 3.5rem;
  border-top: 0;
}
body.tx-blog-editorial .tx-related .tx-shell {
  width: min(1280px, calc(100% - 2.5rem));
}
body.tx-blog-editorial .tx-related__title {
  font-family: var(--mb-sans);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--mb-ink);
}
body.tx-blog-editorial .tx-related__card {
  border: 1px solid var(--mb-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
body.tx-blog-editorial .tx-related__name {
  color: var(--mb-ink);
}
body.tx-blog-editorial .tx-related__date,
body.tx-blog-editorial .tx-related__more {
  color: var(--mb-muted);
}

body.tx-blog-editorial .tx-blog-inline-link a {
  color: var(--mb-navy);
}

.mb-row__note {
  display: none;
}
@media (min-width: 1080px) {
  .mb-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 2.5rem;
    align-items: start;
  }
  .mb-row__note {
    display: block;
    padding-top: 0.2rem;
  }
}
.mb-note {
  border-radius: 3px;
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
}
.mb-note__label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
  font-family: var(--mb-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mb-note__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
}
.mb-note--definition .mb-note__label { color: var(--mb-muted); }
.mb-note--numbers .mb-note__label { color: var(--mb-navy); }
.mb-note--remember {
  background: #eef7f4;
  border-left: 2px solid #1b6b5a;
}
.mb-note--remember .mb-note__label { color: #1b6b5a; }
.mb-note--warning {
  background: #fef5ee;
  border: 1px solid rgba(176, 95, 58, 0.2);
}
.mb-note--warning .mb-note__label { color: var(--mb-label); }
.mb-note--warning .mb-note__label::before {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.55rem;
  line-height: 1;
}
.mb-note__body {
  font-family: var(--mb-ui);
  font-size: 0.8rem;
  line-height: 1.65;
  color: #4a5568;
}
.mb-note--remember .mb-note__body { color: #2c5f52; }
.mb-note--warning .mb-note__body { color: #5d3a1a; }
.mb-note__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mb-note__stat strong {
  display: block;
  font-family: var(--mb-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--mb-navy);
}
.mb-note__stat span {
  display: block;
  margin-top: 2px;
  font-family: var(--mb-ui);
  font-size: 0.65rem;
  line-height: 1.4;
  color: #4a5568;
}

@media (max-width: 767px) {
  .mb-layout,
  .mb-toc-mobile,
  body.tx-blog-editorial .tx-related .tx-shell {
    width: calc(100% - 1.5rem);
  }
}
