/* Resonate Blog Detail — scoped to .blog-detail-page only */

html:has(.blog-detail-page) {
  scroll-behavior: smooth;
}

.blog-detail-page {
  --black: #071219;
  --navy: #0e3145;
  --navy-deep: #0a2536;
  --gold: #CE9537;
  --gold-dark: #ab7312;
  --gold-hover: #e39b28;
  --cream: #f4f0e9;
  --card: #f2ede7;
  --white: #ffffff;
  --text: #0e3145;
  --muted: #4e5963;
  --line: #d9d2c8;
  --divider-blue: #195378;
  --divider-gold: #c58a3a;
  --dot-red: #b53124;
  --strategy: #f3ad3b;
  --production: #f2713a;
  --growth: #8db36a;
  --related-bg: #ffffff;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius-card: 24px;
  --radius-image: 20px;
  --shell: 1208px;
  --stripe-width: 14px;
  --hero-radius: 32px;
  --agency-gold: #ce9537;
  --section-photo-overlay: rgba(10, 37, 54, 0.62);
  --sticky-offset: 120px;
}

.blog-detail-page *,
.blog-detail-page *::before,
.blog-detail-page *::after {
  box-sizing: border-box;
}

.blog-detail-page {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--navy);
}

.blog-detail-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.blog-detail-page button,
.blog-detail-page input,
.blog-detail-page textarea {
  font-family: inherit;
}

.blog-detail-page h1,
.blog-detail-page h2,
.blog-detail-page h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.blog-detail-page .shell {
  width: min(var(--shell), calc(100% - 2.5rem));
  margin-inline: auto;
  z-index: 1;
}

.blog-detail-page .eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-detail-page .gold {
  color: var(--gold);
}

.blog-detail-page .meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.blog-detail-page .meta span {
  color: var(--gold-dark);
  font-weight: 600;
}

.blog-detail-page .meta .pipe {
  color: var(--line);
  font-weight: 400;
  padding-inline: 0.45rem;
}

/* Buttons */

.blog-detail-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.42rem 1.45rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-detail-page .btn-icon {
  width: 20px;
  height: 15px;
  flex-shrink: 0;
  object-fit: contain;
}

.blog-detail-page .btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.blog-detail-page .btn-gold:hover,
.blog-detail-page .btn-gold:focus-visible {
  background: var(--gold-hover);
  color: var(--navy);
}

.blog-detail-page .btn-gold--light {
  color: var(--white);
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.blog-detail-page .btn-gold--light:hover,
.blog-detail-page .btn-gold--light:focus-visible {
  color: var(--white);
}

.blog-detail-page .btn-icon--white {
  width: 18px;
  height: 14px;
}

.blog-detail-page .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.blog-detail-page .btn-ghost:hover,
.blog-detail-page .btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.blog-detail-page .hero-section {
  position: relative;
  overflow: visible;
  padding: 3.25rem 0 0;
  border-bottom-left-radius: var(--hero-radius);
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.blog-detail-page .hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
  border-bottom-left-radius: var(--hero-radius);
}

.blog-detail-page .hero-section__line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: var(--hero-line-width, 85px);
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
}

.blog-detail-page .hero-section__shell {
  position: relative;
  z-index: 2;
}

.blog-detail-page .hero-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.blog-detail-page .hero-section__content {
  text-align: left;
  padding-top: 1.8rem;
  padding-bottom: 2rem;
}

.blog-detail-page .hero-section .eyebrow {
  color: var(--gold);
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.blog-detail-page .hero-section h1 {
  margin: 0 0 1.35rem;
  font-size: clamp(2rem, 3.2vw, 2rem);
  line-height: 1.2;
  color: var(--white);
}

.blog-detail-page .hero-section__title-main {
  display: block;
  color: var(--white);
}

.blog-detail-page .hero-section__title-accent {
  display: block;
  color: var(--gold);
  font-size: 35px;
  margin-top: 15px;
}

.blog-detail-page .hero-section__lead {
  max-width: 36rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.72;
  text-align: left;
}

.blog-detail-page .hero-section__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
}

.blog-detail-page .hero-section__meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  padding-right: 2rem;
}

.blog-detail-page .hero-section__meta-item + .hero-section__meta-item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 2rem;
}

.blog-detail-page .hero-section__meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1.4em;
}

.blog-detail-page .hero-section__meta-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #CE9537;
  line-height: 1.4em;
}

.blog-detail-page .hero-section__featured {
  margin: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 37, 54, 0.28);
  position: relative;
  z-index: 3;
}

.blog-detail-page .hero-section__featured img {
    display: block;
    width: 100%;
    height: auto;
    /* min-height: 276px; */
    /* max-height: 578px; */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
  .blog-detail-page .hero-section {
       padding-top: 2rem;
       min-height: 28rem;
  }

  .blog-detail-page .hero-section__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem 3rem;
    align-items: center;
  }

  .blog-detail-page .hero-section__content {
    padding-bottom: 3.5rem;
  }

  .blog-detail-page .hero-section__featured {
            margin-bottom: -13.5rem;
  }
}

/* 2. Quick Answer */

.blog-detail-page .quick-answer {
  position: relative;
  z-index: 0;
  background-color: var(--white);
  background-image: url("../images/quick-answer-bg.png");
  background-size: 220px 220px;
  background-repeat: repeat;
  padding: 3.5rem 0 4.5rem;
  position: relative;
}

.blog-detail-page .quick-answer__note {
	position: absolute;
	top: 0;
}

@media (min-width: 992px) {
  .blog-detail-page .quick-answer {
    padding-top: 7.5rem;
  }
}

.blog-detail-page .quick-answer__heading {
  margin: 0 0 2rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.blog-detail-page .quick-answer__lead {
  max-width: 46rem;
  margin: 0 auto 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
}

.blog-detail-page .quick-answer__lead:last-child {
  margin-bottom: 0;
}

.blog-detail-page .quick-answer__content {
  max-width: 46rem;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.blog-detail-page .quick-answer__content > :last-child {
  margin-bottom: 0;
}

.blog-detail-page .quick-answer__content p {
  max-width: 46rem;
  margin: 0 auto 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
  text-align: center;
}

.blog-detail-page .quick-answer__content ul,
.blog-detail-page .quick-answer__content ol {
  max-width: 46rem;
  margin: 0 auto 1.35rem;
  padding-left: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
  text-align: left;
}

.blog-detail-page .quick-answer__content li + li {
  margin-top: 0.65rem;
}

.blog-detail-page .quick-answer__content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.blog-detail-page .quick-answer__content a:hover,
.blog-detail-page .quick-answer__content a:focus-visible {
  color: var(--navy);
}

.blog-detail-page .quick-answer__content strong,
.blog-detail-page .quick-answer__content b {
  font-weight: 700;
}

.blog-detail-page .quick-answer__copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}



.blog-detail-page .quick-answer__note {
  align-self: flex-start;
  width: 25%;
  max-width: 100%;
  margin: 0;
  padding: 10px 0 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(0.75rem, 1.25vw, 0.8125rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.blog-detail-page .quick-answer__note:first-child {
  margin-top: 0;
}

.blog-detail-page .quick-answer__note:last-child {
  margin-bottom: 0;
}

.blog-detail-page .quick-answer__note + .quick-answer__content {
  margin-top: 0;
  width: 100%;
}

.blog-detail-page .quick-answer__note > :last-child {
  margin-bottom: 0;
}

.blog-detail-page .quick-answer__note p {
  margin: 0 0 0.65rem;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-align: left;
}

.blog-detail-page .quick-answer__note ul,
.blog-detail-page .quick-answer__note ol {
  margin: 0 0 0.65rem;
  padding-left: 1.25rem;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-align: left;
}

.blog-detail-page .quick-answer__note a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.blog-detail-page .quick-answer__note a:hover,
.blog-detail-page .quick-answer__note a:focus-visible {
  color: var(--navy);
}

.blog-detail-page .quick-answer__note strong,
.blog-detail-page .quick-answer__note b {
  font-weight: 700;
  font-style: italic;
}

/* 3. Launch CTA */

.blog-detail-page .launch-cta-wrap {
  background: var(--white);
}

.blog-detail-page .launch-cta__divider img {
  width: 100%;
  height: 100%;
  display: block;
  margin-bottom: -10px;
  position: relative;
  z-index: 99;
}

.blog-detail-page .launch-cta {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  align-items: center;
}

.blog-detail-page .launch-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--section-photo-overlay);
  pointer-events: none;
}

.blog-detail-page .launch-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.blog-detail-page .launch-cta .shell {
  z-index: 2;
  width: 100%;
}

.blog-detail-page .launch-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding: 2.75rem 0;
}

.blog-detail-page .launch-cta__copy {
  max-width: 70rem;
}

.blog-detail-page .launch-cta__text {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.1vw, 2.45rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.blog-detail-page .launch-cta__desc {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.875rem, 1.45vw, 1rem);
  line-height: 1.5;
  font-weight: 400;
}

.blog-detail-page .launch-cta__btn {
  flex-shrink: 0;
  min-width: 12.5rem;
  padding: 0.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* 4. Main content */

.blog-detail-page .blog-content {
  background: var(--white);
  padding: 4.25rem 0 5rem;
}

.blog-detail-page .blog-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 992px) {
  .blog-detail-page .blog-content__grid {
    grid-template-columns: minmax(0, 1fr) min(320px, 32%);
    gap: 3rem;
  }
}

.blog-detail-page .blog-content__main {
  min-width: 0;
}

.blog-detail-page .blog-content__sidebar {
  min-width: 0;
}

@media (min-width: 992px) {
  .blog-detail-page .blog-content__sidebar {
    position: sticky;
    top: 50px;
    align-self: start;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .blog-detail-page .blog-content__sidebar {
    top: 30px;
  }
}

.blog-detail-page .content-sidebar {
  align-self: start;
}

.blog-detail-page .content-intro {
  margin-bottom: 3.75rem;
}

.blog-detail-page .content-intro h2 {
  margin: 0 0 1.35rem;
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  line-height: 1.22;
}

.blog-detail-page .content-intro p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-detail-page .content-intro p:last-child {
  margin-bottom: 0;
}

.blog-detail-page .branch-section,
.blog-detail-page .freelanceEditor-section {
  padding-top: 3.75rem;
}

.blog-detail-page .content-section {
  padding-bottom: 3.75rem;
}

.blog-detail-page .content-section:last-child {
  margin-bottom: 0;
}

.blog-detail-page .content-section h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.22;
}

.blog-detail-page .content-section p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-detail-page .content-section p:last-child {
  margin-bottom: 0;
}

.blog-detail-page .content-subheading {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-detail-page .content-subheading--sm {
  margin-top: 1.35rem;
  margin-bottom: 0.1rem !important;
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--gold);
}

.blog-detail-page .content-list,
.blog-detail-page .content-ordered-list {
  margin: 0.5rem 0 0.7rem 0.5rem;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-detail-page .content-list li + li,
.blog-detail-page .content-ordered-list li + li {
  margin-top: 0.65rem;
}

.blog-detail-page .content-list li::marker {
  color: var(--divider-blue);
}

.blog-detail-page .content-quote {
  margin: 1.75rem 0 0;
  padding: 1.35rem 0 1.35rem 1.35rem;
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--navy);
}

/* Table — scoped to blog article content only */

.blog-detail-page .comparison-table-wrap,
.blog-detail-page .blog-detail-table-wrap,
.blog-detail-page .blog-detail-entry-content .wp-block-table,
.blog-detail-page .blog-content__main .wp-block-table {
  display: block;
  margin: 1.5rem 0;
  border: 1px solid #e0d8cf;
  border-radius: 14px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  background: #fdfbf8;
}

.blog-detail-page .blog-detail-entry-content,
.blog-detail-page .blog-content__main {
  overflow-wrap: break-word;
  max-width: 100%;
  min-width: 0;
}

.blog-detail-page .blog-detail-entry-content iframe,
.blog-detail-page .blog-detail-entry-content video,
.blog-detail-page .blog-detail-entry-content embed,
.blog-detail-page .blog-detail-entry-content object,
.blog-detail-page .blog-detail-entry-content pre,
.blog-detail-page .blog-content__main iframe,
.blog-detail-page .blog-content__main video,
.blog-detail-page .blog-content__main embed,
.blog-detail-page .blog-content__main object,
.blog-detail-page .blog-content__main pre {
  max-width: 100%;
}

.blog-detail-page .blog-detail-entry-content .wp-block-table > table,
.blog-detail-page .blog-content__main .wp-block-table > table {
  margin: 0;
}

.blog-detail-page .blog-detail-entry-content .wp-block-table figcaption,
.blog-detail-page .blog-content__main .wp-block-table figcaption {
  margin: 0;
  padding: 0.85rem 1.35rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: left;
}

.blog-detail-page .blog-detail-entry-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd),
.blog-detail-page .blog-content__main .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background: transparent;
}

.blog-detail-page .comparison-table,
.blog-detail-page .blog-detail-entry-content table,
.blog-detail-page .blog-content__main table {
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--navy);
  background: transparent;
}

.blog-detail-page .comparison-table thead th,
.blog-detail-page .blog-detail-entry-content table thead th,
.blog-detail-page .blog-content__main table thead th {
  padding: 1.15rem 1.35rem;
  background: #f6f1eb;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  vertical-align: middle;
  border: 0;
  border-bottom: 1px solid #e0d8cf;
  white-space: normal;
}

.blog-detail-page .comparison-table tbody th,
.blog-detail-page .comparison-table tbody td,
.blog-detail-page .blog-detail-entry-content table tbody th,
.blog-detail-page .blog-detail-entry-content table tbody td,
.blog-detail-page .blog-detail-entry-content table td,
.blog-detail-page .blog-detail-entry-content table th,
.blog-detail-page .blog-content__main table tbody th,
.blog-detail-page .blog-content__main table tbody td,
.blog-detail-page .blog-content__main table td,
.blog-detail-page .blog-content__main table th {
  padding: 1.15rem 1.35rem;
  vertical-align: middle;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #e0d8cf;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
  min-width: 0;
}

.blog-detail-page .comparison-table tbody tr:nth-child(odd) th,
.blog-detail-page .comparison-table tbody tr:nth-child(odd) td,
.blog-detail-page .blog-detail-entry-content table tbody tr:nth-child(odd) th,
.blog-detail-page .blog-detail-entry-content table tbody tr:nth-child(odd) td,
.blog-detail-page .blog-content__main table tbody tr:nth-child(odd) th,
.blog-detail-page .blog-content__main table tbody tr:nth-child(odd) td {
  background: #f6f1eb;
}

.blog-detail-page .comparison-table tbody tr:nth-child(even) th,
.blog-detail-page .comparison-table tbody tr:nth-child(even) td,
.blog-detail-page .blog-detail-entry-content table tbody tr:nth-child(even) th,
.blog-detail-page .blog-detail-entry-content table tbody tr:nth-child(even) td,
.blog-detail-page .blog-content__main table tbody tr:nth-child(even) th,
.blog-detail-page .blog-content__main table tbody tr:nth-child(even) td {
  background: #fdfbf8;
}

.blog-detail-page .comparison-table tbody tr:last-child th,
.blog-detail-page .comparison-table tbody tr:last-child td,
.blog-detail-page .blog-detail-entry-content table tbody tr:last-child th,
.blog-detail-page .blog-detail-entry-content table tbody tr:last-child td,
.blog-detail-page .blog-content__main table tbody tr:last-child th,
.blog-detail-page .blog-content__main table tbody tr:last-child td {
  border-bottom: 0;
}

.blog-detail-page .comparison-table tbody th,
.blog-detail-page .blog-detail-entry-content table tbody th,
.blog-detail-page .blog-content__main table tbody th {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.blog-detail-page .comparison-table tbody td,
.blog-detail-page .blog-detail-entry-content table tbody td,
.blog-detail-page .blog-detail-entry-content table td,
.blog-detail-page .blog-content__main table tbody td,
.blog-detail-page .blog-content__main table td {
  font-weight: 400;
  color: #1a3c58;
}

.blog-detail-page .comparison-table tbody td.bold-text,
.blog-detail-page .blog-detail-entry-content table td.bold-text,
.blog-detail-page .blog-content__main table td.bold-text {
  color: #133e59;
  font-weight: 600;
}

/* Soft column proportions for the 3-column comparison table only */
.blog-detail-page .comparison-table thead th:first-child,
.blog-detail-page .comparison-table tbody th:first-child {
  min-width: 8.75rem;
}

.blog-detail-page .comparison-table thead th:nth-child(n + 2),
.blog-detail-page .comparison-table tbody td:nth-child(n + 2) {
  min-width: 7.5rem;
}

.blog-detail-page .blog-detail-entry-content table img,
.blog-detail-page .blog-content__main table img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.blog-detail-page .blog-detail-entry-content table a,
.blog-detail-page .blog-content__main table a {
  color: #133e59;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.blog-detail-page .blog-detail-entry-content table a:hover,
.blog-detail-page .blog-detail-entry-content table a:focus-visible,
.blog-detail-page .blog-content__main table a:hover,
.blog-detail-page .blog-content__main table a:focus-visible {
  color: var(--gold-dark);
}

.blog-detail-page .table-yes-no {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  vertical-align: middle;
}

.blog-detail-page .table-yes-no__text {
  flex-shrink: 0;
}

.blog-detail-page .table-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  min-width: 1.25em;
  min-height: 1.25em;
  margin-left: 0;
  border-radius: 50%;
  flex-shrink: 0;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.blog-detail-page .table-icon--yes {
  background-image: url("../images/table-icon-yes.svg");
}

.blog-detail-page .table-icon--no {
  background-image: url("../images/table-icon-no.svg");
}

.blog-detail-page .comparison-table__cta .btn {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 500;
}

.blog-detail-page .comparison-table__cta {
  margin-top: 2rem;
}

.blog-detail-page .comparison-table__cta p.bold-text {
  font-size: 1.20rem;
  font-weight: 700;
  max-width: 50%;
}

/* bottom border */

.blog-detail-page .bottom-border {
  border-bottom: 1px solid #C0AB91;
}

/* Four-Branch Decision (branch-section) */

.blog-detail-page .branch-section__intro {
  max-width: 100%;
}

.blog-detail-page .branch-section .content-gold-label {
  margin-bottom: 0 !important;
}

.blog-detail-page .branch-section .content-subheading {
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  margin-top: 0 !important;
  line-height: 1.28;
}

.blog-detail-page .branch-section .branch-timeline__content .content-list {
  margin-top: 0.35rem;
  margin-bottom: 1.1rem;
}

.blog-detail-page .branch-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.85rem;
  margin-top: 2.75rem;
  padding-left: 0;
}

.blog-detail-page .branch-timeline::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 53px;
  border-left: 2px dotted #c8bdb0;
  pointer-events: none;
  z-index: 0;
}

.blog-detail-page .branch-timeline__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.blog-detail-page .branch-timeline__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid #d9d2c8;
}

.blog-detail-page .branch-timeline__num {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
}

.blog-detail-page .branch-timeline__label {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-detail-page .branch-timeline__item--active .branch-timeline__badge {
  background: var(--gold);
  border-color: var(--gold);
}

.blog-detail-page .branch-timeline__item--active .branch-timeline__num,
.blog-detail-page .branch-timeline__item--active .branch-timeline__label {
  color: var(--white);
}

.blog-detail-page .branch-timeline__content {
  min-width: 0;
  padding-top: 0.15rem;
}

.blog-detail-page .content-gold-label {
  margin: 0 0 0.85rem !important;
  color: var(--agency-gold) !important;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-detail-page .content-section h2.content-gold-label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--agency-gold);
}

/* What Changes at Episode 20 (whatchanges-section) */

.blog-detail-page .whatchanges-section .whatchanges-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 1.85rem 0 1.65rem;
}

.blog-detail-page .whatchanges-section .whatchanges-item {
  padding-left: 1.35rem;
  border-left: 6px solid var(--divider-blue);
}

.blog-detail-page .whatchanges-section .whatchanges-item--pipeline {
  border-left-color: #1D4A6A;
}

.blog-detail-page .whatchanges-section .whatchanges-item--drift {
  border-left-color: #2A6483;
}

.blog-detail-page .whatchanges-section .whatchanges-item--plateau {
  border-left-color: var(--divider-gold);
}

.blog-detail-page .whatchanges-section .whatchanges-item--fatigue {
  border-left-color: #B53124;
}

.blog-detail-page .whatchanges-section .whatchanges-item__heading {
  margin: 0 0 0.4rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gold);
}

.blog-detail-page .whatchanges-section .whatchanges-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* Sidebar */

.blog-detail-page .content-sidebar .free-book-card {
  margin-bottom: 1.25rem;
}

/* Free Book card */

.blog-detail-page .free-book-card {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 16px 40px rgba(10, 37, 54, 0.18);
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 0;
}

.blog-detail-page .free-book-card__image {
  width: 100%;
  border-radius: 16px;
}

.blog-detail-page .free-book-card__body {
  padding: 1.15rem 0.35rem 1.5rem;
}

.blog-detail-page .free-book-card__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-detail-page .free-book-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.28;
  color: var(--white);
}

.blog-detail-page .free-book-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.blog-detail-page .free-book-card__btn {
  width: 100%;
  min-height: 50px;
  font-weight: 700;
}

.blog-detail-page .free-book-card__meta {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Share card */

.blog-detail-page .share-article {
  border: 0;
  border-radius: 24px;
  background: var(--cream);
  padding: 1.65rem 1.45rem 1.35rem;
  margin-bottom: 0;
  box-shadow: 0 8px 24px rgba(14, 49, 69, 0.06);
}

.blog-detail-page .share-article__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.blog-detail-page .share-article__label--toc {
  margin-top: 1.65rem;
  margin-bottom: 0.75rem;
}

.blog-detail-page .share-article__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-detail-page .share-article__icons a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  border: 0;
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-detail-page .share-article__icons a:hover,
.blog-detail-page .share-article__icons a:focus-visible {
  background: var(--divider-blue);
  color: var(--white);
}

/* Table of Contents */

.blog-detail-page .share-article__toc {
  margin: 0;
}

.blog-detail-page .share-article__news {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-detail-page .share-article__news li {
  border-bottom: 1px solid rgba(14, 49, 69, 0.12);
  padding: 0.75rem 0;
}

.blog-detail-page .share-article__news li:first-child {
  padding-top: 0;
}

.blog-detail-page .share-article__news li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-detail-page .share-article__news a {
  display: block;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
  transition: color 0.2s ease;
}

.blog-detail-page .share-article__news a:hover,
.blog-detail-page .share-article__news a:focus-visible {
  color: var(--gold-dark);
}

.blog-detail-page .blog-content__main [id] {
  scroll-margin-top: var(--sticky-offset);
}

/* FAQ Accordion inside content */

.blog-detail-page .content-faq {
  margin-top: 0;
}

.blog-detail-page .content-faq__heading {
  margin: 0 0 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--navy);
}

@media (max-width: 767.98px) {
  .blog-detail-page .content-faq__heading {
    margin-bottom: 1.15rem;
    font-size: clamp(1.5rem, 4.8vw, 1.85rem);
  }
}

.blog-detail-page .detail-accordion__item.is-open {
  background: var(--white);
}

.blog-detail-page .detail-accordion__item.is-open .detail-accordion__trigger .detail-accordion__title {
  color: var(--agency-gold);
}

.blog-detail-page .detail-accordion__icon--closed {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
}

.blog-detail-page .detail-accordion__panel-label {
  margin: 0 0 0.65rem;
  color: var(--agency-gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-detail-page .detail-accordion__item {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: -1px;
}

.blog-detail-page .detail-accordion__item:last-child {
  margin-bottom: 0;
}

.blog-detail-page .detail-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 1.1rem;
  border: 0;
  background: none;
  background-color: transparent;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  white-space: normal;
  cursor: pointer;
}

.blog-detail-page .detail-accordion__trigger .detail-accordion__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.blog-detail-page .detail-accordion__trigger:hover,
.blog-detail-page .detail-accordion__trigger:focus,
.blog-detail-page .detail-accordion__trigger:active,
.blog-detail-page .detail-accordion__trigger:focus-visible {
  background: none;
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.blog-detail-page .detail-accordion__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  flex-shrink: 0;
  align-self: center;
  object-fit: contain;
}

.blog-detail-page .detail-accordion__panel {
  overflow: hidden;
  max-height: 0;
  padding: 0 1.1rem;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.blog-detail-page .detail-accordion__item.is-open .detail-accordion__panel {
  max-height: var(--faq-panel-max-height, 1200px);
  padding: 0 1.1rem 1.25rem;
  opacity: 1;
}

.blog-detail-page .detail-accordion__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.blog-detail-page .detail-accordion__panel p + p {
  margin-top: 0.85rem;
}

.blog-detail-page .detail-accordion__panel a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.blog-detail-page .detail-accordion__panel a:hover,
.blog-detail-page .detail-accordion__panel a:focus-visible {
  color: var(--navy);
}

.blog-detail-page .detail-accordion__panel ul,
.blog-detail-page .detail-accordion__panel ol {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* 10. Podcasting CTA */

.blog-detail-page .podcasting-cta {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.blog-detail-page .podcasting-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.blog-detail-page .podcasting-cta__inner {
  gap: 1.5rem 2.5rem;
  padding: 4.5rem 0;
}

.blog-detail-page .podcasting-cta .shell {
  z-index: 2;
}

.blog-detail-page .podcasting-cta__copy {
  max-width: 44rem;
}

.blog-detail-page .podcasting-cta__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 400 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ce9537 !important;
}

.blog-detail-page .podcasting-cta__copy h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.22;
}

.blog-detail-page .podcasting-cta__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-detail-page .podcasting-cta__btn {
  flex-shrink: 0;
  min-width: 13.5rem;
  padding-inline: 1.65rem;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

/* 11. Related Articles */

.blog-detail-page .related-articles {
  background: var(--related-bg);
  padding: 5rem 0 5.5rem;
}

.blog-detail-page .related-articles__intro {
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.blog-detail-page .related-articles__intro .eyebrow {
  color: var(--gold-dark);
}

.blog-detail-page .related-articles__intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.25;
}

.blog-detail-page .card-grid.row {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
}

.blog-detail-page .related-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 0.75rem 0.75rem 1.45rem;
  height: 100%;
  transition: transform 0.25s ease;
}

.blog-detail-page .related-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.blog-detail-page a.related-card__link:hover,
.blog-detail-page a.related-card__link:focus {
  color: inherit;
  text-decoration: none;
}

.blog-detail-page .related-card__media {
  position: relative;
  margin-bottom: 1.05rem;
  border-radius: var(--radius-image);
  overflow: hidden;
}

.blog-detail-page .related-card__media img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-image);
}

.blog-detail-page .badge-cat {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: inline-block;
  max-width: calc(100% - 1.7rem);
  padding: 0.38rem 0.7rem;
  border-radius: 0.45rem;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2em;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
}

.blog-detail-page .badge-strategy {
  background: var(--strategy);
}

.blog-detail-page .badge-production {
  background: var(--production);
}

.blog-detail-page .badge-growth {
  background: var(--growth);
}

.blog-detail-page .badge-marketing {
  background: var(--divider-blue);
}

.blog-detail-page .badge-industry {
  background: var(--navy);
}

.blog-detail-page .related-card h3 {
  margin: 0 0 0.7rem;
  padding: 0 0.55rem;
  font-size: 1.28rem;
  line-height: 1.28;
}

.blog-detail-page .related-card p {
  margin: 0 0 1.15rem;
  padding: 0 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-detail-page .related-card .meta {
  margin-top: auto;
  padding: 0 0.55rem;
}

.blog-detail-page .related-card:hover {
  transform: translateY(-3px);
}

.blog-detail-page .related-card__link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-card);
}

/* 12. Final CTA */

.blog-detail-page .final-cta {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 5.6rem 0;
}

.blog-detail-page .final-cta h2 {
  max-width: 25ch;
  margin: 0 auto 1.15rem;
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.25;
}

.blog-detail-page .final-cta__lead {
  max-width: 38rem;
  margin: 0 auto 2.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-detail-page .final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1rem;
}

.blog-detail-page .final-cta__actions .btn {
  min-height: 48px;
  padding-inline: 1.45rem;
}

.blog-detail-page .section-divider {
  position: relative;
  height: 20px;
}

.blog-detail-page .section-divider img {
  width: 100%;
  height: 20px;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 1650px) {
	.blog-detail-page .quick-answer__note {
		width: 30%;
	}
}

@media (max-width: 1380px) {
  .blog-detail-page .hero-section .shell {
    padding-left: 3rem;
  }
}


@media (max-width: 1378px) {
	.blog-detail-page .quick-answer__note {
		width: 40%;
	}
}

@media (max-width: 1320px) {
  .blog-detail-page .hero-section .shell {
    padding-left: 5rem;
  }
}

@media (min-width: 1200px) {
  .blog-detail-page .shell {
    padding-left: max(1.25rem, var(--stripe-width));
  }
}

@media (max-width: 1199.98px) {
  .blog-detail-page .branch-timeline__item {
    gap: 1.35rem 1.75rem;
  }
}

.blog-detail-page .blog-detail-entry-content h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.22;
}

.blog-detail-page .blog-detail-entry-content h3 {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-detail-page .blog-detail-entry-content h4 {
  margin: 1.35rem 0 0.75rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-detail-page .blog-detail-entry-content img,
.blog-detail-page .blog-detail-entry-content figure {
  max-width: 100%;
  height: auto;
}

.blog-detail-page .blog-detail-entry-content figure {
  margin: 1.5rem 0;
}

.blog-detail-page .blog-detail-entry-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.blog-detail-page .blog-detail-entry-content a:hover,
.blog-detail-page .blog-detail-entry-content a:focus-visible {
  color: var(--navy);
}

.blog-detail-page .blog-detail-entry-content p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-detail-page .blog-detail-entry-content p:last-child {
  margin-bottom: 0;
}

.blog-detail-page .blog-detail-entry-content ul,
.blog-detail-page .blog-detail-entry-content ol {
  margin: 0.5rem 0 0.7rem 0.5rem;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-detail-page .blog-detail-entry-content ul li + li,
.blog-detail-page .blog-detail-entry-content ol li + li {
  margin-top: 0.65rem;
}

.blog-detail-page .blog-detail-entry-content ul li::marker {
  color: var(--gold);
}

.blog-detail-page .blog-detail-entry-content blockquote {
  margin: 1.75rem 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(206, 149, 55, 0.08);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-detail-page .blog-detail-entry-content > * + h2,
.blog-detail-page .blog-detail-entry-content > * + section h2 {
  margin-top: 2rem;
}

.blog-detail-page .blog-detail-entry-meta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.blog-detail-page .blog-detail-entry-meta a {
  color: var(--gold-dark);
}

.blog-detail-page .content-intro p,
.blog-detail-page .content-section p,
.blog-detail-page .content-section a {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

@media (max-width: 991.98px) {
  .blog-detail-page .branch-timeline {
    gap: 2.5rem;
    margin-top: 2.35rem;
  }

  .blog-detail-page .branch-timeline__badge {
    width: 96px;
    height: 96px;
  }

  .blog-detail-page .branch-timeline::before {
    left: 47px;
    top: 48px;
    bottom: 48px;
  }

  .blog-detail-page .branch-timeline__item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .blog-detail-page .launch-cta {
    min-height: 280px;
  }

  .blog-detail-page .launch-cta__inner {
    padding: 3.75rem 0;
    gap: 1.5rem;
  }

  .blog-detail-page .blog-content__sidebar {
    position: static;
  }

  .blog-detail-page .comparison-table-wrap,
  .blog-detail-page .blog-detail-table-wrap,
  .blog-detail-page .blog-detail-entry-content .wp-block-table,
  .blog-detail-page .blog-content__main .wp-block-table {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 100%;
    width: 100%;
  }

  .blog-detail-page .comparison-table-wrap .comparison-table,
  .blog-detail-page .blog-detail-table-wrap:has(thead th:nth-child(3)) table,
  .blog-detail-page .blog-detail-table-wrap:has(tbody td:nth-child(3):last-child) table,
  .blog-detail-page .blog-detail-entry-content .wp-block-table:has(thead th:nth-child(3)) table,
  .blog-detail-page .blog-content__main .wp-block-table:has(thead th:nth-child(3)) table {
    min-width: 36rem;
  }

  .blog-detail-page .comparison-table thead th,
  .blog-detail-page .blog-detail-entry-content table thead th,
  .blog-detail-page .blog-content__main table thead th,
  .blog-detail-page .comparison-table tbody th,
  .blog-detail-page .comparison-table tbody td,
  .blog-detail-page .blog-detail-entry-content table tbody th,
  .blog-detail-page .blog-detail-entry-content table tbody td,
  .blog-detail-page .blog-detail-entry-content table td,
  .blog-detail-page .blog-detail-entry-content table th,
  .blog-detail-page .blog-content__main table tbody th,
  .blog-detail-page .blog-content__main table tbody td,
  .blog-detail-page .blog-content__main table td,
  .blog-detail-page .blog-content__main table th {
    padding: 1rem 1.1rem;
    font-size: 0.88rem;
  }

  .blog-detail-page .hero-section__layout,
  .blog-detail-page .hero-section__content,
  .blog-detail-page .hero-section__featured {
    min-width: 0;
    max-width: 100%;
  }

  .blog-detail-page .hero-section__featured img {
    max-width: 100%;
  }
}

@media (max-width: 1378px) {
	.blog-detail-page .quick-answer__note {
		width: 35%;
	}
}

@media (max-width: 1183px) {
	.blog-detail-page .quick-answer__note {
		width: 40%;
	}
}

@media (max-width: 958px) {
	.blog-detail-page .quick-answer__note {
		width: 45%;
	}
}


@media (max-width: 870px) {
  .blog-detail-page .hero-section__meta {
    row-gap: 20px;
  }
}

@media (max-width: 853px) {
	.blog-detail-page .quick-answer__note {
		width: 55%;
	}
}

@media (max-width: 767.98px) {
  .blog-detail-page .shell {
    width: min(var(--shell), calc(100% - 1.5rem));
  }

  .blog-detail-page .hero-section {
    overflow: visible;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .blog-detail-page .hero-section__bg {
    object-position: 72% top;
  }

  .blog-detail-page .hero-section__line {
    display: none;
  }

  .blog-detail-page .hero-section__shell {
    overflow: visible;
  }

  .blog-detail-page .hero-section__layout {
    gap: 1.35rem;
  }

  .blog-detail-page .hero-section__content {
    padding-top: 0.25rem;
    padding-bottom: 0.75rem;
  }

  .blog-detail-page .hero-section .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .blog-detail-page .hero-section h1 {
    margin-bottom: 1rem;
    font-size: 28px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .blog-detail-page .hero-section__title-accent {
    font-size: clamp(1.35rem, 4.6vw, 1.75rem);
    margin-top: 0.6rem;
  }

  .blog-detail-page .hero-section__lead {
    max-width: 100%;
    margin-bottom: 1.35rem;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .blog-detail-page .hero-section__meta {
    row-gap: 0.85rem;
  }

  .blog-detail-page .hero-section__featured {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
   margin-bottom: -11.5rem;
    border-radius: 28px;
    position: relative;
    z-index: 3;
  }

  .blog-detail-page .hero-section__featured img {
    width: 100%;
    min-height: 400px;
    max-height: 400px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .blog-detail-page .quick-answer {
    position: relative;
    z-index: 0;
    padding: 12.25rem 0 2.75rem;
  }

  .blog-detail-page .quick-answer__note {
    margin-bottom: 1.75rem;
  }

  .blog-detail-page .blog-content {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }

  .blog-detail-page .whatchanges-section .whatchanges-list {
    gap: 1.5rem;
    margin: 1.5rem 0 1.35rem;
  }

  .blog-detail-page .whatchanges-section .whatchanges-item {
    padding-left: 1.1rem;
    border-left-width: 5px;
  }

  .blog-detail-page .branch-timeline {
    gap: 2.25rem;
    margin-top: 2rem;
  }

  .blog-detail-page .branch-timeline__item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1.15rem 1.35rem;
  }

  .blog-detail-page .branch-timeline__badge {
    width: 88px;
    height: 88px;
    border-radius: 18px;
  }

  .blog-detail-page .branch-timeline::before {
    left: 43px;
    top: 44px;
    bottom: 44px;
  }

  .blog-detail-page .podcasting-cta__inner {
    padding: 3.25rem 0;
  }

  .blog-detail-page .related-articles {
    padding: 3.5rem 0 4rem;
  }

  .blog-detail-page .related-articles .card-grid.row {
    margin-left: 0;
    margin-right: 0;
  }

  .blog-detail-page .related-articles .card-grid.row > * {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-detail-page .related-card__media img {
    height: 200px;
  }

  .blog-detail-page .launch-cta {
    min-height: 240px;
  }

  .blog-detail-page .launch-cta__inner {
    padding: 3rem 0.7rem;
    gap: 1.35rem;
  }

  .blog-detail-page .launch-cta__text {
    margin-bottom: 0.65rem;
  }

  .blog-detail-page .launch-cta .launch-cta__btn {
    width: auto;
    min-width: 11rem;
  }

  .blog-detail-page .podcasting-cta__btn,
  .blog-detail-page .free-book-card__btn,
  .blog-detail-page .comparison-table__cta .btn {
    width: 100%;
  }

  .blog-detail-page .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 3.4rem;
  }

  .blog-detail-page .final-cta__actions .btn {
    width: 100%;
  }

  .blog-detail-page .comparison-table__cta p.bold-text {
    max-width: 70%;
  }

  .blog-detail-page .launch-cta__divider img {
    margin-bottom: -7px;
  }

  .blog-detail-page .quick-answer__note {
	position: unset;
	  width: 100%;
	}
	.blog-detail-page .quick-answer__note p {
		text-align: center;
		font-size: 13px;
	}
  .blog-detail-page .hero-section .shell {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .blog-detail-page .hero-section {
    padding-top: 2.75rem;
    overflow: hidden;
  }

  .blog-detail-page .hero-section__line {
    --hero-line-width: 86px;
  }

  .blog-detail-page .hero-section__bg {
    object-position: 78% center;
  }

  .blog-detail-page .hero-section__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.88fr);
    gap: 1.75rem 2rem;
    align-items: center;
  }

  .blog-detail-page .hero-section h1 {
    font-size: clamp(1.85rem, 3.1vw, 2.35rem);
  }

  .blog-detail-page .hero-section__title-accent {
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    margin-top: 0.7rem;
  }

  .blog-detail-page .hero-section__lead {
    margin-bottom: 1.5rem;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .blog-detail-page .hero-section__meta-item {
    padding-right: 1.35rem;
  }

  .blog-detail-page .hero-section__meta-item + .hero-section__meta-item {
    padding-left: 1.35rem;
  }

  .blog-detail-page .hero-section__featured {
    margin-bottom: -5rem;
    border-radius: 30px;
  }

  .blog-detail-page .hero-section__featured img {
    min-height: 220px;
    max-height: 360px;
  }

  .blog-detail-page .quick-answer {
    padding-top: 5.5rem;
  }

  .blog-detail-page .quick-answer__note {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .blog-detail-page .quick-answer__note {
    margin-bottom: 1.5rem;
  }

  .blog-detail-page .hero-section {
    padding-top: 1.75rem;
  }

  .blog-detail-page .hero-section__meta-item {
    padding-right: 1rem;
  }

  .blog-detail-page .hero-section__meta-item + .hero-section__meta-item {
    padding-left: 1rem;
  }

  .blog-detail-page .hero-section__meta-value {
    font-size: 0.88rem;
  }

  .blog-detail-page .hero-section__featured {
    margin-bottom: -8.5rem;
    border-radius: 24px;
  }

  .blog-detail-page .hero-section__featured img {
    min-height: 180px;
    max-height: 250px;
  }

  .blog-detail-page .detail-accordion__trigger {
    font-size: 1.02rem;
    padding-inline: 0.85rem;
    gap: 1rem;
  }

  .blog-detail-page .detail-accordion__trigger .detail-accordion__title {
    line-height: 1.4;
  }

  .blog-detail-page .detail-accordion__panel {
    padding-inline: 0.85rem;
  }

  .blog-detail-page .comparison-table__cta p.bold-text {
    max-width: 100%;
  }
    
  .blog-detail-page .quick-answer {
        padding: 9.25rem 0 2.75rem;
    }
   .blog-detail-page .quick-answer__note {
        margin-bottom: 2.5rem;
    }
	
	.blog-detail-page .launch-cta__inner {
    padding: 3rem 0.7rem;
  }

}

@media (max-width: 479.98px) {
  .blog-detail-page .hero-section__line {
    display: none;
  }

  .blog-detail-page .hero-section__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .blog-detail-page .hero-section__meta-item {
    padding-right: 0;
  }

  .blog-detail-page .hero-section__meta-item + .hero-section__meta-item {
    border-left: 0;
    padding-left: 0;
  }

  .blog-detail-page .hero-section h1 {
    font-size: clamp(1.5rem, 6.2vw, 1.85rem);
  }

  .blog-detail-page .hero-section__title-accent {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
  }

  .blog-detail-page .hero-section__featured {
    margin-bottom: -7.75rem;
  }

  .blog-detail-page .branch-timeline::before {
    display: none;
  }

  .blog-detail-page .branch-timeline__item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-detail-page .branch-timeline__badge {
    width: 100%;
    max-width: 120px;
    height: 96px;
    margin-inline: auto;
  }

  .blog-detail-page .branch-timeline__content {
    padding-top: 0;
  }
	.blog-detail-page .launch-cta__inner {
    padding: 3rem 1rem;
  }
   .blog-detail-page .blog-detail-entry-content > * + h2,
   .blog-detail-page .blog-detail-entry-content > * + section h2 {
     margin-top: 1.5rem !important;
   }
	.post-template-single-blog-detail-php .blog-content iframe {
    width: 100%;
    height: 220px;
}
}

/* Bootstrap grid scoped */

.blog-detail-page .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.blog-detail-page .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
  .blog-detail-page .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .blog-detail-page .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .blog-detail-page .blog-content .col-lg-8,
  .blog-detail-page .blog-content .col-lg-4 {
    width: auto;
  }
}

@media (min-width: 768px) {
  .blog-detail-page .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .blog-detail-page .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

.blog-detail-page .d-flex {
  display: flex !important;
}

.blog-detail-page .flex-column {
  flex-direction: column !important;
}

.blog-detail-page .align-items-lg-center {
  align-items: center !important;
}

.blog-detail-page .align-items-lg-end {
  align-items: flex-end !important;
}

.blog-detail-page .justify-content-lg-between {
  justify-content: space-between !important;
}

.blog-detail-page .text-center {
  text-align: center !important;
}

@media (min-width: 992px) {
  .blog-detail-page .flex-lg-row {
    flex-direction: row !important;
  }
}

.blog-detail-page .g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.blog-detail-page .gx-4 {
  --bs-gutter-x: 1.5rem;
}

.blog-detail-page .gx-xl-5 {
  --bs-gutter-x: 3rem;
}

.blog-detail-page .gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 1200px) {
  .blog-detail-page .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
}

/* Footer full-bleed image: negative Elementor margins overflow the viewport below desktop. */
@media (max-width: 991.98px) {
  body:has(.blog-detail-page) .elementor-location-footer .elementor-widget-image .elementor-widget-container {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }

  body:has(.blog-detail-page) .elementor-location-footer .elementor-widget-image img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
