:root {
  --pmc-brand: #0f8f8f;
  --pmc-brand-deep: #0b7376;
  --pmc-ink: #12303a;
  --pmc-text: #48616c;
  --pmc-bg: #f3fbfb;
  --pmc-line: #d6e7ea;
  --pmc-card: #ffffff;
  --pmc-radius: 18px;
  --pmc-shadow: 0 14px 32px rgba(12, 63, 73, 0.08);
  --pmc-container: 1200px;
}

body.pmc-page {
  background: linear-gradient(180deg, #f4fcfc 0%, #edf8f8 38%, #ffffff 100%);
  color: var(--pmc-ink);
}

.pmc-main {
  max-width: var(--pmc-container);
  margin: 0 auto;
  padding: 106px 20px 80px;
}

.pmc-breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: #67818c;
}

.pmc-breadcrumb a {
  color: #4f7480;
  text-decoration: none;
}

.pmc-section {
  background: var(--pmc-card);
  border: 1px solid var(--pmc-line);
  border-radius: var(--pmc-radius);
  box-shadow: var(--pmc-shadow);
  padding: 38px;
  margin-bottom: 24px;
}

.pmc-section h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.25;
}

.pmc-section-intro {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--pmc-text);
}

.pmc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(15, 143, 143, 0.16), transparent 34%),
    linear-gradient(140deg, #ffffff 0%, #f1fbfb 58%, #e9f7f7 100%);
}

.pmc-hero-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pmc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pmc-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #cde3e6;
  background: #f5fbfb;
  color: #2a5b64;
  font-size: 13px;
  font-weight: 700;
}

.pmc-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
}

.pmc-subtitle {
  margin: 14px 0 12px;
  padding: 10px 14px;
  font-size: 26px;
  line-height: 1.45;
  color: #144b55;
  font-weight: 800;
  border-left: 4px solid var(--pmc-brand);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(15, 143, 143, 0.12) 0%, rgba(15, 143, 143, 0.04) 45%, rgba(15, 143, 143, 0) 100%);
}

.pmc-hero p {
  margin: 0;
  color: var(--pmc-text);
  font-size: 17px;
  line-height: 1.9;
}

.pmc-hero-emphasis {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfe5e9;
  border-left: 4px solid var(--pmc-brand);
  background: #f3fbfb;
  color: #1f4f59 !important;
  font-weight: 700;
}

.pmc-hero-keypoint {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #c9e3e7;
  background: linear-gradient(135deg, #f6fcfc 0%, #eef8f9 100%);
  color: #1f4f59 !important;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.pmc-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pmc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  padding: 0 18px;
}

.pmc-btn-primary {
  background: var(--pmc-brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 143, 143, 0.25);
}

.pmc-btn-secondary {
  background: #fff;
  border-color: #cce3e5;
  color: var(--pmc-brand-deep);
}

.pmc-btn-ghost {
  background: #edf7f7;
  color: #315c66;
}

.pmc-service-pill-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  counter-reset: capability;
}

.pmc-service-pill-list li {
  position: relative;
  counter-increment: capability;
  border: 1px solid #cfe6e8;
  border-radius: 12px;
  padding: 12px 12px 12px 42px;
  background: linear-gradient(180deg, #fbfefe 0%, #f3f9fa 100%);
  color: #305a63;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 92px;
  box-shadow: 0 6px 16px rgba(12, 63, 73, 0.06);
}

.pmc-service-pill-list li::before {
  content: counter(capability);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #9fcad1;
  background: #e9f7f8;
  color: #1e5a63;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pmc-service-pill-list li strong {
  font-size: 16px;
  line-height: 1.4;
  color: #1d4f58;
  font-weight: 800;
}

.pmc-service-pill-list li span {
  font-size: 14px;
  line-height: 1.65;
  color: #58747d;
}

.pmc-hero-aside {
  border: 1px solid #d5e8eb;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 143, 143, 0.14), rgba(15, 143, 143, 0) 40%),
    linear-gradient(180deg, #fcfefe 0%, #f2f9fa 100%);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pmc-hero-aside-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #124952;
}

.pmc-hero-aside-subtitle {
  margin: 2px 0 8px;
  color: #45656f;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.pmc-hero-aside-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px dashed #bfdde2;
  background: #f8fdfd;
  color: #3f6069;
  font-size: 13px;
  line-height: 1.7;
}

.pmc-qa-list,
.pmc-faq-list {
  display: grid;
  gap: 12px;
}

.pmc-qa-item,
.pmc-faq-item {
  border: 1px solid var(--pmc-line);
  border-radius: 12px;
  padding: 16px;
  background: #fbfefe;
}

.pmc-qa-item p,
.pmc-faq-item p,
.pmc-card p,
.pmc-service-item p,
.pmc-method-item p,
.pmc-scenario-item p,
.pmc-adv-item p {
  margin: 0;
  line-height: 1.8;
  color: var(--pmc-text);
}

.pmc-emphasis {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #cfe5e9;
  border-left: 4px solid var(--pmc-brand);
  border-radius: 10px;
  background: #f4fbfb;
  color: #2f5c66;
  line-height: 1.85;
  font-weight: 600;
}

.pmc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pmc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pmc-card,
.pmc-service-item,
.pmc-method-item,
.pmc-scenario-item,
.pmc-adv-item,
.pmc-deliver-group {
  border: 1px solid var(--pmc-line);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.pmc-card h3,
.pmc-service-item h3,
.pmc-method-item h3,
.pmc-scenario-item h3,
.pmc-adv-item h3,
.pmc-deliver-group h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.pmc-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #edf8f8;
  color: var(--pmc-brand-deep);
  font-weight: 700;
}

.pmc-list,
.pmc-service-item ul,
.pmc-deliver-group ul {
  margin: 0;
  padding-left: 18px;
  color: var(--pmc-text);
  line-height: 1.8;
}

.pmc-service-item ul + h4,
.pmc-service-item p + h4 {
  margin-top: 12px;
}

.pmc-service-item h4 {
  margin: 8px 0;
  font-size: 16px;
  color: #204d57;
}

.pmc-mid-cta,
.pmc-bottom-cta,
.pmc-prefaq-cta {
  background: linear-gradient(130deg, #e9f7f7 0%, #f8fdfd 100%);
}

.pmc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.pmc-form-grid input,
.pmc-form-grid select,
.pmc-form-grid textarea {
  width: 100%;
  border: 1px solid #cfe2e5;
  border-radius: 8px;
  padding: 10px 11px;
  font-size: 14px;
  box-sizing: border-box;
 resize: none;
}

.pmc-form-grid textarea,
.pmc-form-grid .pmc-full {
  grid-column: 1 / -1;
}

.pmc-trust-note {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: #55707b;
  background: #f4fbfb;
  border: 1px solid #d9eaed;
  border-radius: 8px;
  padding: 10px;
}

.pmc-steps {
  counter-reset: step;
  display: grid;
  gap: 10px;
}

.pmc-method-item h3::before {
  counter-increment: step;
  content: "0" counter(step) " ";
  color: var(--pmc-brand);
  font-weight: 800;
}

.pmc-faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pmc-tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pmc-tag-list li {
  border: 1px solid #cbe2e6;
  border-radius: 999px;
  background: #f6fbfb;
  color: #2e5e67;
  padding: 9px 14px;
  line-height: 1.6;
}

.consulting-anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid #d6e7ea;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
}

.consulting-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d5e8ea;
  color: #2f5d66;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: #f7fcfc;
}

.consulting-lifecycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.consulting-lifecycle span {
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid #cae2e6;
  background: #f6fbfb;
  color: #2f5d66;
  font-weight: 700;
  font-size: 14px;
}

.consulting-service-card,
.consulting-deliverables-grid details,
.pmc-faq-item {
  border: 1px solid var(--pmc-line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}

.consulting-service-card summary,
.consulting-deliverables-grid summary,
.pmc-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #204d57;
}

.consulting-service-card summary::-webkit-details-marker,
.consulting-deliverables-grid summary::-webkit-details-marker,
.pmc-faq-item summary::-webkit-details-marker {
  display: none;
}

.consulting-service-card summary h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.consulting-service-card summary p {
  margin: 0;
  color: var(--pmc-text);
  white-space: normal;
}

.consulting-service-value {
  margin: 8px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--pmc-text) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

.consulting-service-value::before {
  content: none;
}

.consulting-service-card > div {
  margin-top: 10px;
}

.consulting-service-grid {
  align-items: start;
}

.consulting-service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
  border: 1px solid #dbe9ec;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.consulting-service-card:not([open]) {
  background: #ffffff;
  border-color: #e2ecef;
  box-shadow: 0 4px 12px rgba(18, 53, 61, 0.04);
}

.consulting-service-card:not([open]) summary h3 {
  color: #35525b;
}

.consulting-service-card[open] {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbfb 100%);
  border-color: #9fcfd4;
  box-shadow: 0 12px 24px rgba(12, 63, 73, 0.10);
}

.consulting-service-card[open] summary h3 {
  color: #0f5860;
}

.consulting-service-card summary {
  display: block;
  position: relative;
  padding-right: 110px;
}

.consulting-service-card summary h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.consulting-service-card summary h3::before {
  content: attr(data-module);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #c8e0e4;
  background: #ecf8f8;
  color: #1e5963;
  font-size: 12px;
  font-weight: 800;
}

.consulting-service-card summary::after {
  content: "点击展开详情";
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #5b7982;
  border: 1px solid #cfe3e7;
  border-radius: 999px;
  padding: 3px 10px;
  background: #f7fcfd;
  
}

.consulting-service-card[open] summary::after {
  content: "点击收起详情";
  color: #0f5860;
  border-color: #b8dde2;
  background: #edf9fa;
 
}

.consulting-service-card:not([open]) summary::after {
  color: #6b8690;
  border-color: #d5e6e9;
  background: #f8fcfd;
}

.consulting-service-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.consulting-service-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d3e7ea;
  background: #fbfefe;
  color: #44666f;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.consulting-deliver-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.consulting-deliver-list li {
  position: relative;
  padding-left: 28px;
  white-space: normal;
}

.consulting-deliver-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 18px;
  border: 1px solid #9fc2c9;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fa 100%);
  box-shadow: inset 0 -3px 0 #dceff2;
}

.consulting-deliver-list li::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 8px;
  height: 2px;
  background: #9fc2c9;
  box-shadow: 0 4px 0 #9fc2c9, 0 8px 0 #9fc2c9;
}

/* 服务内容卡片展开区字体与“典型咨询交付成果清单”保持一致 */
.pmc-main .consulting-service-card > div ul,
.pmc-main .consulting-service-card > div ul li {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.consulting-work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.consulting-work-list li {
  position: relative;
  padding-left: 24px;
}

.consulting-work-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid #9bc9cf;
  border-radius: 3px;
  background: #f3fbfc;
  color: #0f8f8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* 痛点卡片标题与说明统一字号 */
#why-consulting-needed .pmc-card h3 {
  font-size: 22px;
  line-height: 1.35;
}

#why-consulting-needed .pmc-card p {
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.consulting-pillars-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.consulting-pillar-card {
  position: relative;
  border: 1px solid #cfe3e7;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfc 100%);
  padding: 16px 14px 14px;
  box-shadow: 0 10px 24px rgba(14, 76, 88, 0.08);
}

.consulting-pillar-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 6px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #0f8f8f 0%, #3ab3b3 100%);
}

.consulting-pillar-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eaf7f7;
  border: 1px solid #cde4e8;
  color: #1f5a63;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.consulting-pillar-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.3;
  color: #153f48;
}

.consulting-pillar-card p {
  margin: 0;
  color: #4a6871;
}

.consulting-pillar-questions {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.consulting-pillar-questions li {
  border: 1px dashed #c9e1e5;
  border-radius: 10px;
  background: #fbfefe;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #2f5b64;
}

.consulting-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.consulting-deliver-kb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.consulting-deliver-kb-card {
  border: 1px solid #cfe3e7;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  padding: 14px;
}

.consulting-deliver-kb-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
  color: #173f48;
}

.consulting-deliver-kb-value {
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 3px solid #0f8f8f;
  background: #f2fafb;
  color: #3c626b;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.consulting-deliver-kb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.consulting-deliver-kb-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.6;
  color: #335d67;
}

.consulting-deliver-kb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 18px;
  border: 1px solid #9fc2c9;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fa 100%);
  box-shadow: inset 0 -3px 0 #dceff2;
}

.consulting-deliver-kb-list li::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 8px;
  height: 2px;
  background: #9fc2c9;
  box-shadow: 0 4px 0 #9fc2c9, 0 8px 0 #9fc2c9;
}

.consulting-cta-band {
  margin-top: 14px;
  border: 1px solid #cfe3e7;
  border-radius: 12px;
  background: #f3fafb;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consulting-cta-band h3 {
  margin: 0;
  font-size: 20px;
}

.consulting-adv-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consulting-adv-impact-card {
  position: relative;
  border: 1px solid #c9e2e6;
  border-left: 4px solid #0f8f8f;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 143, 143, 0.11), rgba(15, 143, 143, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfc 100%);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 24px rgba(13, 74, 85, 0.08);
}

.consulting-adv-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #b9d9df;
  background: #ebf8f9;
  color: #1b5962;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.consulting-adv-impact-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.35;
  color: #153f48;
}

.consulting-adv-impact-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #3e636c;
}

.pmc-mobile-hint {
  margin-top: 6px;
  font-size: 12px;
  color: #6a8791;
}

@media (max-width: 991px) {
  .pmc-main {
    padding-top: 90px;
  }

  .pmc-hero {
    grid-template-columns: 1fr;
  }

  .pmc-hero h1 {
    font-size: 38px;
  }

  .pmc-hero-tags span {
    min-height: 28px;
    font-size: 12px;
  }

  .pmc-grid-3,
  .pmc-grid-2 {
    grid-template-columns: 1fr;
  }

  .consulting-lifecycle,
  .consulting-pillars-visual,
  .consulting-deliver-kb-grid,
  .consulting-adv-impact-grid,
  .consulting-deliverables-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pmc-main {
    padding: 82px 12px 70px;
  }

  .pmc-section {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .pmc-section h2 {
    font-size: 28px;
  }

  .pmc-subtitle {
    font-size: 22px;
    padding: 9px 12px;
  }

  .pmc-hero h1 {
    font-size: 33px;
  }

  .pmc-hero-main {
    gap: 10px;
  }

  .pmc-hero-tags {
    gap: 6px;
  }

  .pmc-hero-aside {
    padding: 14px;
  }

  .pmc-service-pill-list {
    grid-template-columns: 1fr;
  }

  .pmc-service-pill-list li {
    min-height: 84px;
    padding-left: 40px;
  }

  .pmc-hero p,
  .pmc-section-intro,
  .pmc-qa-item p,
  .pmc-faq-item p {
    font-size: 15px;
    line-height: 1.75;
  }

  .pmc-cta-row .pmc-btn {
    flex: 1 1 calc(50% - 8px);
    min-height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }

  .pmc-cta-row .pmc-btn-ghost {
    flex-basis: 100%;
  }

  .pmc-form-grid {
    grid-template-columns: 1fr;
  }

  .consulting-anchor-nav {
    top: 64px;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .consulting-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
    .consulting-service-card summary {
    display: block;
    position: relative;
    padding-right: 1px;
}
    
.pmc-main.pmc-editing [contenteditable="true"] {
  outline: 1px dashed #89b5bc;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  #pmc-text-tools {
    left: 10px !important;
    right: 10px !important;
    bottom: 64px !important;
    max-width: calc(100vw - 20px);
    flex-wrap: wrap;
  }
}
