
  .pmx-wrap {
    --pmx-navy: #1A2B5E;
    --pmx-navy-light: #2E4080;
    --pmx-gold: #C8A84B;
    --pmx-gold-light: #E8D9AE;
    --pmx-bg: #F7F8FB;
    --pmx-card-bg: #FFFFFF;
    --pmx-text: #2A2D3A;
    --pmx-text-light: #6B7280;
    --pmx-border: #E2E5EC;
    --pmx-warn: #B5481E;
    --pmx-warn-bg: #FBEFE8;

    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Segoe UI", sans-serif;
    color: var(--pmx-text);
    line-height: 1.7;
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
  }
  .pmx-wrap * { box-sizing: border-box; }
  .pmx-wrap img { max-width: 100%; height: auto; }

  /* ===== Article hero ===== */
  .pmx-hero {
    background: linear-gradient(135deg, var(--pmx-navy) 0%, var(--pmx-navy-light) 100%);
    color: #fff;
    padding: 28px 28px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .pmx-hero::after {
    content: "";
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 8px;
    background: var(--pmx-gold);
  }
  .pmx-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pmx-gold-light);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .pmx-hero h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin: 0 0 6px;
  }
  .pmx-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
  }

  /* ===== Notice box ===== */
  .pmx-notice {
    background: var(--pmx-warn-bg);
    border-left: 4px solid var(--pmx-warn);
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 20px;
  }
  .pmx-notice-title {
    font-weight: 700;
    color: var(--pmx-warn);
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .pmx-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pmx-notice li {
    font-size: 12.5px;
    color: var(--pmx-text);
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 4px;
  }
  .pmx-notice li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--pmx-warn);
  }
  .pmx-notice li:last-child { margin-bottom: 0; }

  /* ===== Table of contents ===== */
  .pmx-toc {
    border: 1px solid var(--pmx-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
  }
  .pmx-toc-header {
    background: var(--pmx-navy);
    color: #fff;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .pmx-toc ul {
    list-style: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pmx-toc li {
    width: 50% !important;
    box-sizing: border-box !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pmx-toc li a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--pmx-text);
    border-bottom: 1px solid var(--pmx-border);
    border-right: 1px solid var(--pmx-border);
  }
  .pmx-toc li:nth-child(2n) a { border-right: none; }
  .pmx-toc-num {
    font-family: Georgia, serif;
    font-weight: 700;
    color: var(--pmx-gold);
    font-size: 14px;
    min-width: 22px;
  }
  .pmx-toc-ja {
    font-weight: 600;
    font-size: 13px;
  }
  .pmx-toc-en {
    font-size: 11px;
    color: var(--pmx-text-light);
    margin-left: auto;
    white-space: nowrap;
  }

  /* ===== Section heading (generic) ===== */
  .pmx-section-heading {
    font-size: 19px;
    font-weight: 700;
    color: var(--pmx-navy);
    letter-spacing: 0.03em;
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pmx-border);
  }
  .pmx-section-heading .accent { color: var(--pmx-gold); }

  /* ===== Inline banner row (between category sections) ===== */
  .pmx-inline-banner-row {
    text-align: center;
    margin: 4px 0 28px;
    padding: 14px 0;
    border-top: 1px dashed var(--pmx-border);
    border-bottom: 1px dashed var(--pmx-border);
  }
  .pmx-inline-banner-item {
    display: inline-block;
    width: 150px;
    max-width: 45%;
    margin: 0 6px;
    vertical-align: middle;
    opacity: 0.92;
    transition: opacity 0.15s;
  }
  .pmx-inline-banner-item:hover { opacity: 1; }
  .pmx-inline-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--pmx-border);
  }

  /* ===== Category sections ===== */
  .pmx-category {
    margin-bottom: 28px;
    scroll-margin-top: 90px;
  }
  .pmx-category-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .pmx-category-num {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--pmx-gold);
    line-height: 1;
    min-width: 42px;
  }
  .pmx-category-titles {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .pmx-category-ja {
    font-size: 17px;
    font-weight: 700;
    color: var(--pmx-navy);
    letter-spacing: 0.03em;
    margin: 0;
  }
  .pmx-category-en {
    font-size: 11px;
    color: var(--pmx-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  html body .pmx-wrap .pmx-drug-grid {
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    line-height: 0 !important;
  }
  html body .pmx-wrap .pmx-drug-card {
    display: inline-block !important;
    vertical-align: top !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    border: 1px solid var(--pmx-border);
    border-radius: 6px;
    padding: 10px 12px;
    background: var(--pmx-bg);
    width: 48.7% !important;
    max-width: 48.7% !important;
    box-sizing: border-box !important;
    margin: 0 0 12px 0 !important;
    float: none !important;
  }
  html body .pmx-wrap .pmx-drug-card:nth-child(odd) {
    margin-right: 2% !important;
  }
  html body .pmx-wrap .pmx-drug-card-inner {
    display: flex !important;
    gap: 12px;
    align-items: flex-start;
  }
  .pmx-drug-img {
    flex: 0 0 70px !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--pmx-border);
    border-radius: 4px;
    overflow: hidden;
  }
  .pmx-drug-img img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    margin: 0 !important;
  }
  .pmx-drug-body { flex: 1 !important; min-width: 0; }
  .pmx-drug-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  .pmx-drug-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--pmx-navy);
    margin: 0;
  }
  .pmx-drug-type {
    font-size: 10.5px;
    background: var(--pmx-navy);
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pmx-drug-yomi {
    font-size: 11px;
    color: var(--pmx-text-light);
    margin-bottom: 4px;
  }
  .pmx-drug-desc {
    font-size: 12.5px;
    margin: 0 0 4px;
  }
  .pmx-note {
    font-size: 11.5px;
    color: var(--pmx-navy-light);
    background: #EEF1FA;
    border-radius: 4px;
    padding: 4px 8px;
    margin-bottom: 4px;
  }
  .pmx-drug-ingredients {
    font-size: 11px;
    color: var(--pmx-text-light);
    margin: 0;
  }
  .pmx-warn {
    font-size: 11px;
    color: var(--pmx-warn);
    font-weight: 600;
    margin-top: 4px;
  }

  /* ===== Glossary ===== */
  .pmx-glossary-block {
    margin-bottom: 24px;
  }
  .pmx-glossary-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pmx-navy);
    margin-bottom: 12px;
  }
  .pmx-glossary-title .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .pmx-dot-red { background: #E0795A; }
  .pmx-dot-blue { background: var(--pmx-navy-light); }
  .pmx-dot-green { background: #5AA88B; }

  table.pmx-term-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 12.5px;
  }
  table.pmx-term-table th {
    background: var(--pmx-navy);
    color: #fff;
    text-align: left;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  table.pmx-term-table td {
    padding: 7px 12px;
    border-bottom: 1px solid var(--pmx-border);
    vertical-align: top;
  }
  table.pmx-term-table tr:nth-child(even) td { background: var(--pmx-bg); }
  .pmx-term-en { font-weight: 700; color: var(--pmx-navy-light); white-space: nowrap; width: 26%; }
  .pmx-term-ja { font-weight: 600; white-space: nowrap; width: 22%; }
  .pmx-term-memo { color: var(--pmx-text-light); }

  /* ===== Service Promo Cards ===== */
  html body .pmx-wrap .pmx-promo-row {
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
  }
  html body .pmx-wrap .pmx-promo-card {
    display: inline-block !important;
    vertical-align: top !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    width: 48.7% !important;
    max-width: 48.7% !important;
    box-sizing: border-box !important;
    border: 1px solid var(--pmx-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--pmx-card-bg);
    box-shadow: 0 1px 4px rgba(26,43,94,0.06);
    margin: 0 0 20px 0 !important;
    float: none !important;
  }
  html body .pmx-wrap .pmx-promo-card:nth-child(odd) {
    margin-right: 2% !important;
  }
  .pmx-promo-head {
    background: linear-gradient(135deg, var(--pmx-navy) 0%, var(--pmx-navy-light) 100%);
    color: #fff;
    padding: 14px 18px;
  }
  .pmx-promo-head .pmx-promo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
    margin-right: 12px;
  }
  .pmx-promo-head .pmx-promo-icon svg { width: 22px; height: 22px; vertical-align: middle; }
  .pmx-promo-head-text {
    display: inline-block;
    vertical-align: middle;
  }
  .pmx-promo-tag {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: var(--pmx-gold-light);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .pmx-promo-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .pmx-promo-body {
    padding: 16px 18px;
  }
  .pmx-promo-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.96;
  }
  .pmx-promo-lead {
    font-size: 13px;
    font-weight: 700;
    color: var(--pmx-navy);
    margin: 0 0 10px;
  }
  .pmx-promo-desc {
    font-size: 12px;
    color: var(--pmx-text);
    margin: 0 0 10px;
  }
  .pmx-promo-highlight {
    background: var(--pmx-bg);
    border-left: 3px solid var(--pmx-gold);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--pmx-navy-light);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .pmx-promo-highlight .check {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
  }
  .pmx-promo-features {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
  }
  .pmx-promo-features li {
    font-size: 11.5px;
    color: var(--pmx-text-light);
    padding-left: 1.1em;
    position: relative;
    margin-bottom: 4px;
  }
  .pmx-promo-features li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--pmx-gold);
    font-weight: 700;
  }
  .pmx-promo-cta a {
    display: inline-block;
    background: var(--pmx-navy);
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 999px;
    letter-spacing: 0.04em;
  }
  .pmx-promo-cta a svg { width: 12px; height: 12px; vertical-align: middle; margin-left: 4px; }
  .pmx-promo-cta .pmx-url-text {
    display: block;
    font-size: 10px;
    color: var(--pmx-text-light);
    margin-top: 6px;
    word-break: break-all;
  }

  /* ===== Healthcare Program section ===== */
  .pmx-hcp {
    margin-top: 36px;
  }
  .pmx-hcp-hero {
    background: linear-gradient(135deg, var(--pmx-navy) 0%, var(--pmx-navy-light) 100%);
    color: #fff;
    padding: 28px 28px;
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
  }
  .pmx-hcp-hero::after {
    content: "";
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 8px;
    background: var(--pmx-gold);
  }
  .pmx-hcp-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pmx-gold-light);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .pmx-hcp-hero h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
  }
  .pmx-hcp-hero h2 .accent { color: var(--pmx-gold-light); }
  .pmx-hcp-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
    line-height: 1.7;
  }

  .pmx-hcp-content {
    border: 1px solid var(--pmx-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 24px 28px 28px;
  }

  html body .pmx-wrap .pmx-hcp-flow {
    font-size: 0 !important;
    margin-bottom: 24px;
    line-height: 0 !important;
    text-align: center;
  }
  html body .pmx-wrap .pmx-hcp-flow-step {
    display: inline-block !important;
    vertical-align: middle !important;
    width: 30% !important;
    max-width: 30% !important;
    box-sizing: border-box !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    background: var(--pmx-bg);
    border: 1px solid var(--pmx-border);
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    margin: 0 !important;
  }
  .pmx-hcp-flow-step .step-icon {
    display: block;
    margin: 0 auto 6px;
  }
  .pmx-hcp-flow-step .step-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    margin: 0 auto;
  }
  .pmx-hcp-flow-step .step-text {
    color: var(--pmx-navy);
    font-weight: 700;
    line-height: 1.4;
  }
  html body .pmx-wrap .pmx-hcp-flow-arrow {
    display: inline-block !important;
    vertical-align: middle !important;
    width: 3% !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: var(--pmx-gold);
    font-weight: 700;
  }
  .pmx-hcp-flow-arrow svg {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0 auto;
  }

  .pmx-hcp-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pmx-navy);
    text-align: center;
    margin: 0 0 8px;
  }
  .pmx-hcp-section-title .accent { color: var(--pmx-gold); }
  .pmx-hcp-section-lead {
    font-size: 12.5px;
    color: var(--pmx-text);
    text-align: center;
    margin: 0 0 16px;
    line-height: 1.8;
  }

  .pmx-hcp-firstcall-img {
    width: 100%;
    max-width: 380px;
    display: block;
    margin: 0 auto 22px;
    border-radius: 6px;
    border: 1px solid var(--pmx-border);
  }

  html body .pmx-wrap .pmx-hcp-features {
    font-size: 0 !important;
    margin-bottom: 22px;
    line-height: 0 !important;
  }
  html body .pmx-wrap .pmx-hcp-feature {
    display: inline-block !important;
    vertical-align: top !important;
    width: 31.3% !important;
    max-width: 31.3% !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    background: var(--pmx-card-bg);
    border: 1px solid var(--pmx-border);
    border-top: 3px solid var(--pmx-gold);
    border-radius: 6px;
    padding: 14px 16px;
    margin: 0 2.5% 14px 0 !important;
  }
  html body .pmx-wrap .pmx-hcp-feature:nth-child(3n) {
    margin-right: 0 !important;
  }
  .pmx-hcp-feature .feat-icon {
    width: 28px; height: 28px;
    margin-bottom: 8px;
  }
  .pmx-hcp-feature .feat-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--pmx-navy);
    margin: 0 0 5px;
  }
  .pmx-hcp-feature .feat-desc {
    font-size: 11.5px;
    color: var(--pmx-text-light);
    line-height: 1.7;
    margin: 0;
  }

  html body .pmx-wrap .pmx-hcp-cta-box {
    background: linear-gradient(135deg, var(--pmx-navy) 0%, var(--pmx-navy-light) 100%) !important;
    border-radius: 10px !important;
    padding: 26px 28px !important;
    text-align: center !important;
    color: #fff !important;
    border: none !important;
  }
  html body .pmx-wrap .pmx-hcp-cta-box * {
    color: #fff;
    text-align: center;
  }
  .pmx-hcp-cta-box .cta-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--pmx-gold-light) !important;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .pmx-hcp-cta-box .cta-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.5;
    color: #fff !important;
  }
  .pmx-hcp-cta-box .cta-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0 18px;
    line-height: 1.7;
  }
  html body .pmx-wrap .pmx-hcp-cta-btn {
    display: inline-block !important;
    background: var(--pmx-gold) !important;
    color: var(--pmx-navy) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 13px 36px !important;
    border-radius: 999px !important;
    letter-spacing: 0.04em;
  }
  .pmx-hcp-cta-btn svg { width: 14px; height: 14px; vertical-align: middle; margin-left: 6px; }
  .pmx-hcp-cta-url {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7) !important;
    margin-top: 12px;
    word-break: break-all;
  }
  .pmx-hcp-note {
    font-size: 10.5px;
    color: var(--pmx-text-light);
    margin-top: 16px;
    line-height: 1.6;
  }

  /* ===== Footer credit ===== */
  .pmx-credit {
    padding: 18px 0;
    border-top: 1px solid var(--pmx-border);
    font-size: 11px;
    color: var(--pmx-text-light);
    margin-top: 28px;
  }
  .pmx-credit a { color: var(--pmx-navy-light); }
  .pmx-credit-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  /* ===== Glossary table responsive correction (V5) =====
   * 3 columns: English 30% / 日本語 20% / 説明・補足 50%.
   * The mobile wrapper uses the available viewport width evenly.
   */
  @media (max-width: 640px) {
    body.medical-assist-standalone {
      margin: 0;
      padding: 0;
    }
    body.medical-assist-standalone .pmx-wrap {
      width: 100%;
      max-width: none;
      margin: 0;
      padding-left: 14px;
      padding-right: 14px;
    }
    body.medical-assist-standalone table.pmx-term-table {
      width: 100%;
      table-layout: fixed;
    }
    body.medical-assist-standalone table.pmx-term-table th,
    body.medical-assist-standalone table.pmx-term-table td {
      padding-left: 10px;
      padding-right: 10px;
    }
    body.medical-assist-standalone .pmx-term-en {
      width: 30%;
    }
    body.medical-assist-standalone .pmx-term-ja {
      width: 20%;
    }
    body.medical-assist-standalone .pmx-term-memo {
      width: 50%;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: normal;
    }
  }


  /* ===== V6 branded header =====
   * Scoped to Medical Assist only.
   * The supplied Prestige International logo is kept at a restrained
   * corporate width with balanced vertical spacing.
   */
  .pmx-brand-header {
    margin: 0 0 32px;
    padding: 18px 0 24px;
    text-align: center;
    border-bottom: 1px solid #e2e5ec;
  }

  .pmx-brand-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 18px;
  }

  .pmx-brand-logo {
    display: block;
    width: min(600px, 88%);
    height: auto;
    margin: 0 auto;
  }

  .pmx-page-title {
    margin: 0;
    padding: 0;
    color: var(--pmx-navy);
    font-size: 34px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.015em;
  }

  @media (max-width: 640px) {
    .pmx-brand-header {
      margin-bottom: 24px;
      padding: 12px 0 18px;
    }

    .pmx-brand-logo-wrap {
      margin-bottom: 14px;
    }

    .pmx-brand-logo {
      width: 92%;
      max-width: 520px;
    }

    .pmx-page-title {
      font-size: 24px;
      line-height: 1.5;
      letter-spacing: 0;
    }
  }

  /* ===== Responsive ===== */
  @media (max-width: 640px) {
    html body .pmx-wrap .pmx-drug-card { width: 100% !important; max-width: 100% !important; margin-right: 0 !important; }
    .pmx-toc li { width: 100% !important; }
    .pmx-toc li a { border-right: none; }
    html body .pmx-wrap .pmx-promo-card { width: 100% !important; max-width: 100% !important; margin-right: 0 !important; }
    html body .pmx-wrap .pmx-hcp-flow-step { width: 100% !important; max-width: 100% !important; margin-bottom: 8px !important; }
    html body .pmx-wrap .pmx-hcp-flow-arrow { display: block !important; width: 100% !important; transform: rotate(90deg); margin: 4px 0 !important; }
    html body .pmx-wrap .pmx-hcp-feature { width: 100% !important; max-width: 100% !important; margin-right: 0 !important; }
  }


  /* ===== Services lead ===== */
  .pmx-services-lead { font-size:13px; color:var(--pmx-text-light); margin:-4px 0 18px; }
