/*
 * PDF Editor — User Guide Styles
 * Asset handle: toolbox-etc-pdf-editor-guide
 * v1.6: skip-link and breadcrumb now scoped to #pdf-guide-outer (their
 *       actual DOM parent) instead of #pdf-guide, which they are siblings of.
 *
 * Scoped to elements that only exist when [pdf_editor_guide] is on the page.
 * The global box-sizing reset below uses the #pdf-guide / #pdf-guide-outer
 * ancestors so it cannot clobber the WordPress theme's own box-model.
 */

/* ─── Box-sizing scope ──────────────────────────────────────── */
#pdf-guide *,
#pdf-guide *::before,
#pdf-guide *::after,
#pdf-guide-outer .guide-breadcrumb *,
#pdf-guide-outer .guide-skip-link {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Skip-to-content link ──────────────────────────────────── */
#pdf-guide-outer .guide-skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--guide-gold, #d4a843);
  color: var(--guide-navy, #1a1a2e);
  font-family: var(--guide-sans, 'DM Sans', system-ui, sans-serif);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  white-space: nowrap;
}
#pdf-guide-outer .guide-skip-link:focus { top: 0; }

/* ─── Screen-reader-only utility ────────────────────────────── */
#pdf-guide .guide-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Focus styles ──────────────────────────────────────────── */
#pdf-guide a:focus-visible,
#pdf-guide button:focus-visible,
#pdf-guide input:focus-visible,
#pdf-guide select:focus-visible,
#pdf-guide-outer .guide-skip-link:focus-visible {
  outline: 2px solid #d4a843;
  outline-offset: 2px;
  border-radius: 4px;
}
#pdf-guide .guide-nav a:focus-visible {
  border-radius: 3px;
  outline-offset: -1px;
}

/* ─── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #pdf-guide *,
  #pdf-guide *::before,
  #pdf-guide *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── CSS custom properties ─────────────────────────────────── */
#pdf-guide {
  --navy:       #1a1a2e;
  --navy-mid:   #252545;
  --navy-light: #2f2f55;
  --gold:       #d4a843;
  --gold-pale:  #f5edd8;
  --gold-dim:   rgba(212,168,67,.15);
  --blue:       #3c6ef5;
  --blue-pale:  #e8effe;
  --red:        #e05252;
  --green:      #2db87a;
  --ink:        #1a1a2e;
  --muted:      #6b6b8a;
  --rule:       rgba(26,26,46,.1);
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --radius:     12px;
  --radius-sm:  7px;
}

/* ─── Guide wrapper ─────────────────────────────────────────── */
#pdf-guide {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--off-white);
  max-width: 900px;
  margin: 48px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26,26,46,.10);
}

/* ─── Hero header ───────────────────────────────────────────── */
#pdf-guide .guide-hero {
  background: var(--navy);
  padding: 52px 56px 44px;
  position: relative;
  overflow: hidden;
}
#pdf-guide .guide-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(212,168,67,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 90%,  rgba(60,110,245,.15) 0%, transparent 55%);
  pointer-events: none;
}
#pdf-guide .guide-hero-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: .9;
}
#pdf-guide .guide-hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 14px;
}
#pdf-guide .guide-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
#pdf-guide .guide-hero p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.65;
}
#pdf-guide .privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.35);
  border-radius: 40px;
  padding: 6px 14px 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold);
}
#pdf-guide .privacy-badge svg { flex-shrink: 0; }

#pdf-guide .hero-editor-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #d4a843;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}
#pdf-guide .hero-editor-btn:hover {
  background: #e0b84e;
  transform: translateY( -1px );
}
#pdf-guide .hero-editor-btn:active {
  transform: translateY( 0 );
}

/* ─── Section nav pills ─────────────────────────────────────── */
#pdf-guide .guide-nav {
  background: var(--navy-mid);
  padding: 0 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#pdf-guide .guide-nav a {
  display: block;
  padding: 13px 15px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
#pdf-guide .guide-nav a:hover { color: rgba(255,255,255,.85); border-color: rgba(212,168,67,.5); }

/* ─── Body ──────────────────────────────────────────────────── */
#pdf-guide .guide-body {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ─── Section ───────────────────────────────────────────────── */
#pdf-guide .guide-section { scroll-margin-top: 90px; }

#pdf-guide .section-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
#pdf-guide .section-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 10px;
}
#pdf-guide .section-lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 28px;
}
#pdf-guide .guide-rule {
  height: 1px;
  background: var(--rule);
  border: none;
  margin-bottom: 28px;
}

/* ─── Quick-start cards ─────────────────────────────────────── */
#pdf-guide .quickstart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#pdf-guide .qs-step {
  background: var(--white);
  border: 1px solid rgba(26,26,46,.08);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
#pdf-guide .qs-step:hover {
  box-shadow: 0 8px 32px rgba(26,26,46,.1);
  transform: translateY(-2px);
}
#pdf-guide .qs-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
#pdf-guide .qs-icon { font-size: 26px; margin-bottom: 12px; display: block; }
#pdf-guide .qs-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
#pdf-guide .qs-step p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
#pdf-guide .qs-step .btn-look {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 5px;
  letter-spacing: .03em;
}

/* ─── Feature rows ──────────────────────────────────────────── */
#pdf-guide .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#pdf-guide .feature-card {
  background: var(--white);
  border: 1px solid rgba(26,26,46,.08);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  transition: box-shadow .25s;
}
#pdf-guide .feature-card:hover { box-shadow: 0 6px 24px rgba(26,26,46,.09); }
#pdf-guide .fc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
#pdf-guide .fc-icon.gold  { background: var(--gold-dim); }
#pdf-guide .fc-icon.blue  { background: var(--blue-pale); }
#pdf-guide .fc-icon.green { background: rgba(45,184,122,.12); }
#pdf-guide .fc-icon.red   { background: rgba(224,82,82,.1); }
#pdf-guide .feature-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
#pdf-guide .feature-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Steps list ────────────────────────────────────────────── */
#pdf-guide .steps-list { display: flex; flex-direction: column; gap: 12px; }
#pdf-guide .step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(26,26,46,.07);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color .2s;
}
#pdf-guide .step-item:hover { border-color: rgba(212,168,67,.4); }
#pdf-guide .step-dot {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
#pdf-guide .step-content { flex: 1; }
#pdf-guide .step-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
#pdf-guide .step-content p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Keyboard shortcuts ────────────────────────────────────── */
#pdf-guide .shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#pdf-guide .shortcut-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(26,26,46,.07);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
}
#pdf-guide .kbd-group { display: flex; gap: 4px; flex-shrink: 0; }
#pdf-guide kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 3px 8px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 2px 0 rgba(0,0,0,.35);
  border: none;
}
#pdf-guide .shortcut-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
}

/* ─── Tool pills ─────────────────────────────────────────────── */
#pdf-guide .tool-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
#pdf-guide .tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid;
}
#pdf-guide .tool-pill.select { background:#f0f0f8; border-color:rgba(26,26,46,.2); color:var(--navy); }
#pdf-guide .tool-pill.text   { background:rgba(60,110,245,.07); border-color:rgba(60,110,245,.3); color:var(--blue); }
#pdf-guide .tool-pill.check  { background:rgba(45,184,122,.08); border-color:rgba(45,184,122,.35); color:#1f9662; }

/* ─── Font demo block ───────────────────────────────────────── */
#pdf-guide .font-demo {
  background: var(--white);
  border: 1px solid rgba(26,26,46,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
#pdf-guide .font-demo-toolbar {
  background: var(--navy);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#pdf-guide .fdt-select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
}
#pdf-guide .fdt-num {
  width: 46px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 12px;
  text-align: center;
}
#pdf-guide .fdt-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
#pdf-guide .fdt-btn.on { background: #d4a843; color: #1a1a2e; border-color: #d4a843; }
#pdf-guide .fdt-label { font-size: 11px; color: rgba(255,255,255,.4); }
#pdf-guide .font-demo-canvas {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#pdf-guide .fdc-box {
  border: 2px solid var(--blue);
  border-radius: 5px;
  padding: 10px 14px;
  background: rgba(60,110,245,.03);
}
#pdf-guide .fdc-box p { font-size: 14px; color: var(--ink); line-height: 1.5; }
#pdf-guide .fdc-box.bold-box p  { font-weight: 700; }
#pdf-guide .fdc-box.large-box p { font-size: 20px; }
#pdf-guide .fdc-box.serif-box p { font-family: Georgia, serif; }

/* ─── Tip & Warning callouts ────────────────────────────────── */
#pdf-guide .callout {
  display: flex;
  gap: 14px;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
}
#pdf-guide .callout.tip     { background: var(--gold-pale);           border-left: 3px solid var(--gold); }
#pdf-guide .callout.info    { background: var(--blue-pale);           border-left: 3px solid var(--blue); }
#pdf-guide .callout.warning { background: rgba(224,82,82,.08);        border-left: 3px solid var(--red); }
#pdf-guide .callout-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
#pdf-guide .callout p { color: var(--ink); }
#pdf-guide .callout strong { display: block; margin-bottom: 3px; color: var(--navy); font-weight: 600; }

/* ─── Export steps ──────────────────────────────────────────── */
#pdf-guide .export-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#pdf-guide .export-step {
  display: flex;
  gap: 0;
  position: relative;
}
#pdf-guide .export-step:not(:last-child) .es-line {
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: rgba(26,26,46,.1);
}
#pdf-guide .es-dot {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-right: 18px;
  margin-top: 2px;
  z-index: 1;
}
#pdf-guide .export-step:last-child .es-dot { background: var(--navy); }
#pdf-guide .es-body { flex: 1; padding-bottom: 24px; }
#pdf-guide .es-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  margin-top: 6px;
}
#pdf-guide .es-body p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Privacy panel ─────────────────────────────────────────── */
#pdf-guide .privacy-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
#pdf-guide .privacy-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212,168,67,.15);
  border: 2px solid rgba(212,168,67,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
#pdf-guide .privacy-panel h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
#pdf-guide .privacy-panel p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ─── CTA banner ─────────────────────────────────────────────── */
#pdf-guide .guide-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 32px;
}
#pdf-guide .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#pdf-guide .cta-inner strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
#pdf-guide .cta-inner p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin: 0;
}
#pdf-guide .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
#pdf-guide .cta-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ─── FAQ ───────────────────────────────────────────────────── */
#pdf-guide .faq-list { display: flex; flex-direction: column; gap: 4px; }
#pdf-guide .faq-item {
  border: 1px solid rgba(26,26,46,.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}
#pdf-guide .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
#pdf-guide .faq-q:hover { background: rgba(26,26,46,.025); }
#pdf-guide .faq-q .faq-arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(26,26,46,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: transform .25s, background .15s;
}
#pdf-guide .faq-item.open .faq-arrow { transform: rotate(180deg); background: #d4a843; }
#pdf-guide .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
#pdf-guide .faq-item.open .faq-a { max-height: 200px; }
#pdf-guide .faq-a-inner {
  padding: 14px 20px 18px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid rgba(26,26,46,.06);
}

/* ─── Breadcrumb ────────────────────────────────────────────── */
#pdf-guide-outer .guide-breadcrumb {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 4px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
#pdf-guide-outer .guide-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6b6b8a;
}
#pdf-guide-outer .guide-breadcrumb li + li::before {
  content: '›';
  margin: 0 6px;
  color: rgba(26,26,46,.3);
}
#pdf-guide-outer .guide-breadcrumb a { color: #6b6b8a; text-decoration: none; }
#pdf-guide-outer .guide-breadcrumb a:hover { color: #1a1a2e; text-decoration: underline; }
#pdf-guide-outer .guide-breadcrumb [aria-current] { color: #1a1a2e; font-weight: 500; }

/* ─── Footer ────────────────────────────────────────────────── */
#pdf-guide .guide-footer {
  background: var(--navy-mid);
  padding: 24px 56px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.06);
}
#pdf-guide .guide-footer strong { color: var(--gold); font-weight: 500; }

/* ─── Responsive — 780 px ───────────────────────────────────── */
@media (max-width: 780px) {
  #pdf-guide .guide-hero    { padding: 40px 32px 36px; }
  #pdf-guide .guide-nav     { padding: 0 16px; }
  #pdf-guide .guide-nav a   { padding: 11px 11px; font-size: 12px; }
  #pdf-guide .guide-body    { padding: 40px 32px; gap: 52px; }
  #pdf-guide .guide-footer  { padding: 20px 32px; }
  #pdf-guide .guide-section { scroll-margin-top: 100px; }
  #pdf-guide-outer .guide-breadcrumb { padding: 0 4px; }
}

/* ─── Responsive — 680 px (mobile) ─────────────────────────── */
@media (max-width: 680px) {
  #pdf-guide .guide-hero    { padding: 36px 20px 32px; }
  #pdf-guide .guide-nav     { padding: 0 8px; }
  #pdf-guide .guide-nav a   { padding: 10px 10px; font-size: 11.5px; }
  #pdf-guide .guide-body    { padding: 32px 20px; gap: 44px; }
  #pdf-guide .guide-footer  { padding: 20px 20px; }
  #pdf-guide .guide-section { scroll-margin-top: 110px; }
  #pdf-guide .quickstart    { grid-template-columns: 1fr; }
  #pdf-guide .feature-row   { grid-template-columns: 1fr; }
  #pdf-guide .shortcuts-grid { grid-template-columns: 1fr; }
  #pdf-guide .privacy-panel { grid-template-columns: 1fr; text-align: center; }
  #pdf-guide .privacy-icon  { margin: 0 auto; }
  #pdf-guide .guide-cta     { padding: 20px 20px; }
  #pdf-guide .cta-inner     { flex-direction: column; align-items: flex-start; }
  #pdf-guide-outer .guide-breadcrumb { margin-top: 12px; }
}