/* ============================================================
   MPN PAGES — incremental styles
   Loads after style.css; introduces only MPN-specific classes
   ============================================================ */

/* MPN page hero — slightly taller for the dual-CTA layout */
.mpn-hero { padding: 72px 60px 64px; }
.mpn-hero h1 { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 48px; color: var(--white); line-height: 1.1; margin-bottom: 18px; max-width: 880px; }
.mpn-hero .hero-sub { font-family: Arial, Helvetica, sans-serif; font-size: 17px; font-weight: 400; color: rgba(245,240,230,0.92); line-height: 1.65; max-width: 780px; margin-bottom: 32px; }
.mpn-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.mpn-hero-ctas .btn-gold,
.mpn-hero-ctas .btn-ghost { font-size: 14px; padding: 14px 26px; }

/* Per-client identification line in the hero */
.mpn-id-line { font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 400; color: rgba(245,240,230,0.85); letter-spacing: 0.02em; margin-bottom: 24px; line-height: 1.7; }
.mpn-id-line strong { color: var(--gold); font-weight: 600; }

/* Find-a-provider primary action band */
.mpn-find-band { background: var(--cream); padding: 56px 60px; border-top: 1px solid var(--border, #e5e1d8); border-bottom: 1px solid var(--border, #e5e1d8); }
.mpn-find-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.mpn-find-band h2 { font-family: Georgia, serif; font-weight: 700; font-size: 34px; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.mpn-find-band p { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 400; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.mpn-selector { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.mpn-selector select { font-family: Arial, Helvetica, sans-serif; font-size: 15px; padding: 13px 18px; min-width: 320px; border: 1px solid var(--navy); border-radius: 2px; background: var(--white); color: var(--navy); cursor: pointer; }
.mpn-selector .btn-gold { padding: 13px 26px; font-size: 12px; }
.mpn-find-helper { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: var(--text-muted); margin-top: 10px; }
.mpn-find-helper a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.mpn-find-pre { background: var(--white); border-left: 3px solid var(--gold); padding: 22px 26px; max-width: 760px; margin: 0 auto; text-align: left; font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 400; color: var(--text-muted); line-height: 1.75; }
.mpn-find-pre strong { color: var(--navy); font-weight: 600; }

/* Per-client primary search button (very prominent) */
.mpn-client-search { background: var(--cream); padding: 56px 60px; border-bottom: 1px solid var(--border, #e5e1d8); text-align: center; }
.mpn-client-search h2 { font-family: Georgia, serif; font-weight: 700; font-size: 32px; color: var(--navy); margin-bottom: 12px; }
.mpn-client-search p { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 400; color: var(--text-muted); line-height: 1.75; margin: 0 auto 26px; max-width: 720px; }
.mpn-search-btn { display: inline-block; font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--navy); color: var(--white); padding: 18px 36px; border-radius: 2px; border: 1px solid var(--navy); text-decoration: none; transition: background 0.2s; }
.mpn-search-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.mpn-search-aux { margin-top: 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: var(--text-muted); }
.mpn-search-aux a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.mpn-search-aux .last-updated { font-style: normal; color: var(--text-muted); font-size: 12px; letter-spacing: 0.04em; }

/* Client tile grid (Find an MPN provider section) */
.mpn-client-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 980px; margin: 32px auto 0;
}
.mpn-client-tile {
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border, #e5e1d8);
  border-top: 3px solid var(--gold);
  padding: 28px 24px 22px; min-height: 180px;
  text-decoration: none; color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.mpn-client-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 27, 48, 0.10);
  border-color: var(--gold);
}
.mpn-client-mark {
  font-family: Georgia, 'Times New Roman', serif; font-size: 34px; color: var(--navy);
  letter-spacing: -0.01em; font-weight: 400; margin-bottom: 6px;
}
.mpn-client-name {
  font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400;
  color: var(--text-muted); line-height: 1.5; margin-bottom: 18px;
}
.mpn-client-cta {
  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold-dark);
  margin-top: auto;
}
.mpn-client-tile:hover .mpn-client-cta { color: var(--navy); }

@media (max-width: 860px) {
  .mpn-client-grid { grid-template-columns: 1fr; gap: 12px; }
  .mpn-client-tile { min-height: 0; padding: 22px 20px; }
}

/* Rights note block (replaces the old three-column rights table) */
.mpn-rights-note { margin-top: 32px; padding: 28px 32px; border-top: 2px solid var(--gold); border-bottom: 0.5px solid var(--border, #e5e1d8); max-width: 880px; }
.mpn-rights-note h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.mpn-rights-note p { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 400; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.mpn-rights-note p:last-child { margin-bottom: 0; }
.mpn-rights-note strong { color: var(--navy); font-weight: 600; }
.mpn-rights-note a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.mpn-rights-note a:hover { color: var(--gold-dark); }

/* MAA contact card */
.maa-card { background: var(--navy); color: var(--white); padding: 36px 40px; border-radius: 2px; max-width: 640px; margin: 0 auto; }
.maa-card .maa-label { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.maa-card h3 { font-family: Georgia, serif; font-weight: 700; font-size: 24px; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
.maa-row { display: flex; gap: 10px; align-items: baseline; margin-bottom: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: 400; color: rgba(245,240,230,0.92); line-height: 1.5; }
.maa-row .maa-key { font-weight: 600; color: var(--gold); min-width: 90px; flex-shrink: 0; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.maa-row a { color: var(--white); border-bottom: 1px solid var(--gold); text-decoration: none; }
.maa-card .maa-foot { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(245,240,230,0.18); font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: 400; color: rgba(245,240,230,0.78); line-height: 1.65; }

/* Employer/payor three-column callout */
.mpn-emp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 36px; border-top: 2px solid var(--gold); }
.mpn-emp-cell { padding: 32px 28px; border-right: 0.5px solid var(--border, #e5e1d8); }
.mpn-emp-cell:last-child { border-right: none; }
.mpn-emp-cell h4 { font-family: Georgia, serif; font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.mpn-emp-cell p { font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 400; color: var(--text-muted); line-height: 1.7; }

/* Resources list */
.mpn-resources { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.mpn-res-item { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: var(--cream); border-left: 2px solid var(--gold); text-decoration: none; transition: background 0.2s; }
.mpn-res-item:hover { background: #ede8d9; }
.mpn-res-icon { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold); flex-shrink: 0; min-width: 36px; }
.mpn-res-text { font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: var(--navy); font-weight: 500; line-height: 1.4; }
.mpn-res-text .mpn-res-sub { display: block; font-size: 12px; font-weight: 400; color: var(--text-muted); margin-top: 2px; }
.mpn-resources-note { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 400; color: var(--text-muted); font-style: italic; margin-top: 20px; line-height: 1.65; }

/* Identification grid (client-specific MPN page) */
.mpn-id-grid { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 760px; border-top: 1px solid var(--border, #e5e1d8); }
.mpn-id-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--border, #e5e1d8); font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.6; }
.mpn-id-row .lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); padding-top: 2px; }
.mpn-id-row .val { color: var(--navy); font-weight: 400; }
.mpn-id-row .val a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
@media (max-width: 640px) {
  .mpn-id-row { grid-template-columns: 1fr; gap: 4px; }
  .mpn-id-row .lbl { padding-top: 0; }
}

/* Inaccuracy report card */
.mpn-inacc { background: var(--cream); border-left: 3px solid var(--gold); padding: 28px 32px; max-width: 640px; }
.mpn-inacc h4 { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.mpn-inacc .mpn-inacc-title { font-family: Georgia, serif; font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 14px; }
.mpn-inacc-row { font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: var(--navy); line-height: 1.7; }
.mpn-inacc-row a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.mpn-inacc-row .lbl { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* DWC contact band */
.mpn-dwc { background: var(--cream); padding: 36px 40px; max-width: 760px; margin: 0 auto; border-left: 2px solid var(--gold); }
.mpn-dwc h3 { font-family: Georgia, serif; font-weight: 700; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.mpn-dwc p { font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: 400; color: var(--text-muted); line-height: 1.75; }
.mpn-dwc a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }

/* Disclaimer blocks */
.mpn-disclaimers { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: 400; color: var(--text-muted); line-height: 1.7; max-width: 880px; }
.mpn-disclaimers p { margin-bottom: 14px; }
.mpn-disclaimers .mpn-disc-label { font-weight: 600; color: var(--navy); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 4px; }

/* MPN Contact card (per-client) */
.mpn-contact-card { background: var(--white); border: 1px solid var(--border, #e5e1d8); border-top: 2px solid var(--gold); padding: 28px 32px; max-width: 540px; }
.mpn-contact-card .mpn-contact-label { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.mpn-contact-card h4 { font-family: Georgia, serif; font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.mpn-contact-card .mpn-contact-row { font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: var(--navy); line-height: 1.65; margin-bottom: 6px; }
.mpn-contact-card a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }

/* Mobile */
@media (max-width: 860px) {
  .mpn-hero { padding: 48px 24px 44px; }
  .mpn-hero h1 { font-size: 32px; }
  .mpn-hero .hero-sub { font-size: 16px; }
  .mpn-hero-ctas .btn-gold,
  .mpn-hero-ctas .btn-ghost { width: 100%; text-align: center; }
  .mpn-find-band, .mpn-client-search { padding: 40px 24px; }
  .mpn-find-band h2, .mpn-client-search h2 { font-size: 26px; }
  .mpn-selector { flex-direction: column; }
  .mpn-selector select { min-width: 0; width: 100%; }
  .mpn-selector .btn-gold { width: 100%; }
  .mpn-emp-grid { grid-template-columns: 1fr; }
  .mpn-rights-note { padding: 22px 20px; }
  .mpn-right-cell, .mpn-emp-cell { border-right: none; border-bottom: 0.5px solid var(--border, #e5e1d8); }
  .mpn-right-cell:last-child, .mpn-emp-cell:last-child { border-bottom: none; }
  .maa-card { padding: 28px 22px; }
  .maa-card h3 { font-size: 20px; }
  .maa-row { flex-direction: column; gap: 2px; }
  .maa-row .maa-key { min-width: 0; }
  .mpn-resources { grid-template-columns: 1fr; }
  .mpn-search-btn { display: block; width: 100%; padding: 16px 20px; }
  .mpn-dwc { padding: 28px 22px; }
}
