:root {
  --vp-navy: #1A1F2E;
  --vp-navy-2: #30384D;
  --vp-red: #E53935;
  --vp-red-accessible: #C62828;
  --vp-red-hover: #1A1F2E;
  --vp-text: #344054;
  --vp-light: #F7F8FA;
  --vp-border: #E4E7EC;
  --vp-white: #FFFFFF;
  --vp-success: #18794E;
  --vp-radius: 8px;
  --vp-shadow: 0 12px 34px rgba(26, 31, 46, .08);
}

.vp-section,
.vp-page-hero,
.vp-footer-pattern,
.vp-custom-footer {
  box-sizing: border-box;
}

.vp-section {
  padding: clamp(3.5rem, 7vw, 7rem) 1.25rem;
}

.vp-section > .wp-block-group__inner-container,
.vp-section > *:not(.alignfull),
.vp-custom-footer .vp-footer-inner,
.vp-shortcode-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vp-section-light {
  background: var(--vp-light);
}

.vp-section-dark {
  background: var(--vp-navy);
  color: var(--vp-white);
}

.vp-section-dark h2,
.vp-section-dark h3,
.vp-section-dark a {
  color: var(--vp-white);
}

.vp-page-hero {
  background: linear-gradient(135deg, var(--vp-navy), var(--vp-navy-2));
  color: var(--vp-white);
}

.vp-page-hero h1,
.vp-page-hero .vp-lead,
.vp-hero h1,
.vp-hero .vp-lead {
  color: inherit;
}

.vp-hero {
  background: linear-gradient(145deg, var(--vp-navy), var(--vp-navy-2));
  color: var(--vp-white);
  min-height: 620px;
  display: flex;
  align-items: center;
}

.vp-hero-grid {
  gap: clamp(2rem, 5vw, 5rem);
}

.vp-hero-title {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.vp-lead,
.vp-section-intro {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  max-width: 70ch;
}

.vp-eyebrow {
  color: var(--vp-red);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}

.vp-visual-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: calc(var(--vp-radius) * 2);
  border: 1px dashed rgba(255,255,255,.38);
  background: rgba(255,255,255,.06);
  text-align: center;
}

.vp-visual-placeholder-light {
  min-height: 180px;
  border-color: var(--vp-border);
  background: var(--vp-white);
  color: var(--vp-text);
}

.vp-buttons {
  gap: 1rem;
  margin-top: 1.5rem;
}

.vp-button-primary .wp-block-button__link,
.vp-shortcode-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  border-radius: var(--vp-radius);
  background: var(--vp-red-accessible);
  color: var(--vp-white) !important;
  text-decoration: none;
  font-weight: 700;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.vp-button-primary .wp-block-button__link:hover,
.vp-button-primary .wp-block-button__link:focus-visible,
.vp-shortcode-button:hover,
.vp-shortcode-button:focus-visible {
  background: var(--vp-red-hover);
  color: var(--vp-white) !important;
}

.vp-button-secondary .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.35rem;
  border: 2px solid currentColor;
  border-radius: var(--vp-radius);
  text-decoration: none;
  font-weight: 700;
}

.vp-button-primary .wp-block-button__link:focus-visible,
.vp-button-secondary .wp-block-button__link:focus-visible,
.vp-custom-footer a:focus-visible {
  outline: 3px solid #FFB4B1;
  outline-offset: 3px;
}

.vp-trust-strip {
  background: var(--vp-white);
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--vp-border);
}

.vp-trust-strip .wp-block-columns {
  max-width: 1200px;
  margin: 0 auto;
}

.vp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.vp-services-hub-cards {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.vp-services-hub-cards > .vp-card { grid-column: span 2; }
.vp-services-hub-cards > .vp-card:nth-child(4) { grid-column: 2 / span 2; }
.vp-services-hub-cards > .vp-card:nth-child(5) { grid-column: 4 / span 2; }

.vp-card,
.vp-step {
  height: 100%;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  background: var(--vp-white);
  color: var(--vp-text);
  box-shadow: var(--vp-shadow);
}

.vp-card h3,
.vp-step h3 {
  color: var(--vp-navy);
}

.vp-card a {
  font-weight: 700;
}

.vp-services-block {
  padding-top: 2.5rem;
}

.vp-card-grid-five {
  flex-wrap: wrap !important;
}

.vp-card-grid-five > .wp-block-column {
  flex: 1 1 210px;
}

.vp-step-number {
  color: var(--vp-red-accessible);
  font-size: 1.4rem;
  font-weight: 800;
}

.vp-why {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 3rem;
}

.vp-final-cta {
  background: var(--vp-navy);
  color: var(--vp-white);
  text-align: center;
}

.vp-final-cta h2,
.vp-final-cta p {
  color: var(--vp-white);
  margin-left: auto;
  margin-right: auto;
}

.vp-editorial-note {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--vp-red-accessible);
  background: #FFF6F5;
  color: var(--vp-text);
}

.vp-post-query .wp-block-post-template {
  gap: 1.25rem;
}

.vp-footer-pattern,
.vp-custom-footer {
  background: var(--vp-navy);
  color: rgba(255,255,255,.82);
}

.vp-footer-pattern {
  padding: 4rem 1.25rem 1.5rem;
}

.vp-footer-pattern h3,
.vp-footer-pattern a,
.vp-custom-footer h2,
.vp-custom-footer a {
  color: var(--vp-white);
}

.vp-footer-pattern ul,
.vp-footer-menu,
.vp-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vp-footer-pattern li,
.vp-footer-menu li,
.vp-footer-contact li {
  margin: 0 0 .7rem;
}

body.vps-custom-footer-enabled #colophon.site-footer,
body.vps-custom-footer-enabled footer#colophon.site-footer {
  display: none !important;
}

.vp-custom-footer {
  padding: 4.5rem 1.25rem 1.25rem;
}

.vp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.vp-footer-column h2 {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.vp-footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.vp-footer-wordmark {
  display: inline-block;
  color: var(--vp-white);
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.vp-footer-brand p {
  max-width: 34ch;
}

.vp-footer-menu a,
.vp-footer-contact a {
  text-decoration: none;
}

.vp-footer-menu a:hover,
.vp-footer-contact a:hover {
  text-decoration: underline;
}

.vp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 3rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: .92rem;
}

.vp-footer-missing {
  color: #FFCECC;
  font-size: .9rem;
}

@media (max-width: 960px) {
	.vp-services-hub-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vp-services-hub-cards > .vp-card,
	.vp-services-hub-cards > .vp-card:nth-child(4),
	.vp-services-hub-cards > .vp-card:nth-child(5) { grid-column: auto; }
  .vp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vp-hero {
    min-height: auto;
  }
}

@media (max-width: 781px) {
	.vp-card-grid { grid-template-columns: 1fr; }
  .vp-section {
    padding: 3.5rem 1.25rem;
  }
  .vp-hero-title {
    max-width: none;
  }
  .vp-visual-placeholder {
    min-height: 240px;
  }
  .vp-card-grid > .wp-block-column {
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .vp-footer-grid {
    grid-template-columns: 1fr;
  }
  .vp-custom-footer {
    padding-top: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vp-button-primary .wp-block-button__link,
  .vp-shortcode-button {
    transition: none;
  }
}
/* Native contact form: private WordPress storage, no third-party dependency. */
.vp-contact-form{max-width:760px;margin:2rem auto}.vp-contact-field{margin:0 0 1rem}.vp-contact-form label{display:block;font-weight:600;margin-bottom:.35rem}.vp-contact-form input,.vp-contact-form textarea{box-sizing:border-box;width:100%;min-height:44px;padding:.7rem;border:1px solid #E4E7EC;border-radius:4px;color:#344054;background:#fff}.vp-contact-form textarea{min-height:150px;resize:vertical}.vp-contact-form input[type=checkbox]{width:auto;min-height:0;margin-right:.4rem}.vp-contact-form .vp-contact-consent label{display:inline;font-weight:400}.vp-contact-form button{min-height:48px;padding:.75rem 1.25rem;border:0;border-radius:4px;background:#E53935;color:#fff;font-weight:700;cursor:pointer}.vp-contact-form button:hover,.vp-contact-form button:focus{background:#C62828}.vp-contact-form :focus-visible{outline:3px solid #1A1F2E;outline-offset:2px}.vp-contact-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.vp-contact-error{color:#b42318}.vp-contact-success{padding:1rem 1.25rem;border-left:4px solid #18794E;background:#ecfdf3;color:#065f46}

/* Native audit form: intentionally framework-free and mobile-first. */
.vp-audit-form{max-width:760px;margin:2rem auto}.vp-audit-field{margin:0 0 1rem}.vp-audit-form label{display:block;font-weight:600;margin-bottom:.35rem}.vp-audit-form input,.vp-audit-form select{box-sizing:border-box;width:100%;min-height:44px;padding:.7rem;border:1px solid #E4E7EC;border-radius:4px;color:#344054;background:#fff}.vp-audit-form input[type=checkbox]{width:auto;min-height:0;margin-right:.4rem}.vp-audit-form .vp-audit-field:has(input[type=checkbox]) label{display:inline;font-weight:400}.vp-audit-form button{min-height:48px;padding:.75rem 1.25rem;border:0;border-radius:4px;background:#E53935;color:#fff;font-weight:700;cursor:pointer}.vp-audit-form button:hover,.vp-audit-form button:focus{background:#C62828}.vp-audit-form :focus-visible{outline:3px solid #1A1F2E;outline-offset:2px}.vp-audit-error{display:block;color:#b42318;margin-top:.35rem}.vp-audit-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* Editorial typography: only posts explicitly marked by the priority rewrite. */
body.vps-priority-editorial-post .entry-content,
body.vps-priority-editorial-post .ast-single-post .entry-content {
  max-width: 800px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.7;
}
body.vps-priority-editorial-post .entry-header,
body.vps-priority-editorial-post .ast-single-post .entry-header {
  max-width: 800px;
  margin-inline: auto;
  padding-top: 1.25rem;
  margin-top: 0;
}
body.vps-priority-editorial-post .entry-meta .cat-links { display: inline; font-size: 0; }
body.vps-priority-editorial-post .entry-meta .cat-links::before { content: none !important; display: none !important; }
body.vps-priority-editorial-post .entry-meta .cat-links a { font-size: .875rem; }
body.vps-priority-editorial-post .entry-title,
body.vps-priority-editorial-post h1.entry-title { font-size: clamp(2.5rem, 4vw, 3rem); line-height: 1.15; }
body.vps-priority-editorial-post .entry-content p { margin-bottom: 1.4rem; }
body.vps-priority-editorial-post .entry-content h2 { margin-top: 3.5rem; margin-bottom: 1.2rem; font-size: clamp(1.75rem, 3vw, 2.125rem); line-height: 1.25; }
body.vps-priority-editorial-post .entry-content h3 { margin-top: 2.25rem; margin-bottom: 1rem; font-size: clamp(1.375rem, 2.5vw, 1.625rem); line-height: 1.32; }
body.vps-priority-editorial-post .entry-content li { margin-bottom: .65rem; }
body.vps-priority-editorial-post .vp-article-header { margin-bottom: 2rem; }
body.vps-priority-editorial-post .vp-article-category { margin-bottom: .75rem; color: var(--vp-red-accessible); font-size: .95rem; font-weight: 700; }
body.vps-priority-editorial-post .vp-article-key-points { margin: 2rem 0 3rem; padding: 1.5rem; border-left: 4px solid var(--vp-red-accessible); background: #FFF6F5; }
body.vps-priority-editorial-post .vp-article-key-points h2 { margin-top: 0; }
body.vps-priority-editorial-post .wp-block-table { overflow-x: auto; margin-bottom: 2rem; }
body.vps-priority-editorial-post .wp-block-table table { min-width: 680px; }
body.vps-priority-editorial-post .vp-article-cta { margin-top: 3.5rem; padding: 3.75rem 1.5rem; color: var(--vp-white); background: var(--vp-navy); text-align: center; }
body.vps-priority-editorial-post .vp-article-cta h2 { margin-top: 0; color: var(--vp-white); }
body.vps-priority-editorial-post .vp-article-cta p { color: var(--vp-white); }
body.vps-priority-editorial-post .vp-article-cta .wp-block-buttons { justify-content: center; }
body.vps-priority-editorial-post .vp-article-cta .wp-block-button__link { min-height: 48px; padding: .85rem 1.4rem; background: var(--vp-red-accessible); color: var(--vp-white); }
@media (max-width: 781px) {
  body.vps-priority-editorial-post .entry-content,
  body.vps-priority-editorial-post .entry-header { padding-inline: 20px; font-size: 16px; }
  body.vps-priority-editorial-post .entry-title,
  body.vps-priority-editorial-post h1.entry-title { font-size: clamp(2rem, 9vw, 2.375rem); }
  body.vps-priority-editorial-post .entry-content h2 { margin-top: 3rem; font-size: clamp(1.55rem, 7vw, 1.875rem); }
  body.vps-priority-editorial-post .entry-content h3 { margin-top: 2rem; font-size: clamp(1.3rem, 6vw, 1.5rem); }
  body.vps-priority-editorial-post .vp-article-cta { margin-top: 3rem; padding: 3rem 1.25rem; }
}

/* Core Query Loop archive, scoped to the Blog content created by VisioPro Setup. */
.vp-blog-archive { padding: clamp(3rem, 6vw, 5rem) 1.25rem; }
.vp-blog-archive .wp-block-post-template { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; margin: 2.5rem 0; padding: 0; }
.vp-blog-archive .wp-block-post { display: flex; margin: 0; }
.vp-blog-archive .vp-blog-card { display: flex; flex: 1; flex-direction: column; width: 100%; padding: 1.5rem; border: 1px solid var(--vp-border); border-radius: var(--vp-radius); background: var(--vp-white); box-shadow: var(--vp-shadow); }
.vp-blog-archive .vp-blog-card-category { margin: 0 0 .75rem; color: var(--vp-red-accessible); font-size: .875rem; font-weight: 700; }
.vp-blog-archive .vp-blog-card h2 { margin: 0 0 1rem; font-size: 1.35rem; line-height: 1.3; }
.vp-blog-archive .wp-block-post-excerpt { margin: 0 0 1.25rem; }
.vp-blog-archive .wp-block-read-more { margin-top: auto; font-weight: 700; }
.vp-blog-archive .wp-block-query-pagination { gap: .75rem; margin-top: 2rem; }
@media (max-width: 960px) { .vp-blog-archive .wp-block-post-template { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .vp-blog-archive .wp-block-post-template { grid-template-columns: 1fr; } }

/* Corrective Blog grid: strictly limited to the approved Blog page. */
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template,
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template.is-layout-grid,
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template.is-flex-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 2.5rem 0 !important;
  padding: 0 !important;
}
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template > li {
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}
body.page-id-3758 .vp-blog-query-gridfix .vp-blog-card {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  height: 100% !important;
  box-sizing: border-box !important;
  padding: 30px !important;
  border: 1px solid var(--vp-border) !important;
  border-radius: 10px !important;
  background: var(--vp-white) !important;
}
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-title,
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-excerpt,
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-terms {
  min-width: 0 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: auto;
}
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-title { font-size: clamp(1.5rem, 2vw, 1.75rem) !important; line-height: 1.28 !important; }
body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-excerpt { font-size: 1.0625rem !important; line-height: 1.65 !important; }
body.page-id-3758 .vp-blog-query-gridfix .vp-blog-card-category { font-size: .875rem !important; }
body.page-id-3758 .vp-blog-query-gridfix .vp-blog-card-category { font-size: 0 !important; }
body.page-id-3758 .vp-blog-query-gridfix .vp-blog-card-category a:first-child { display: inline !important; font-size: .875rem !important; }
body.page-id-3758 .vp-blog-query-gridfix .vp-blog-card-category a:not(:first-child) { display: none !important; }
body.page-id-3758 .vp-blog-query-gridfix .wp-block-read-more { margin-top: auto !important; font-size: 1rem !important; }
@media (max-width: 1024px) {
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template,
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template.is-layout-grid,
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template.is-flex-container { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 700px) {
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template,
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template.is-layout-grid,
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-template.is-flex-container { grid-template-columns: minmax(0, 1fr) !important; gap: 22px !important; }
  body.page-id-3758 .vp-blog-query-gridfix .vp-blog-card { padding: 28px !important; }
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-title { font-size: clamp(1.375rem, 6vw, 1.5625rem) !important; }
  body.page-id-3758 .vp-blog-query-gridfix .wp-block-post-excerpt { font-size: 1rem !important; }
}

/* Native server-side Blog grid; no block Query Loop selector is involved. */
body.page-id-3758 .vp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 2.5rem 0;
  padding: 0;
}
body.page-id-3758 .vp-blog-grid .vp-blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 0;
  box-sizing: border-box;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #E4E7EC;
  border-radius: 10px;
}
body.page-id-3758 .vp-blog-grid .vp-blog-card__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
body.page-id-3758 .vp-blog-grid .vp-blog-card__title a { color: var(--vp-navy); }
body.page-id-3758 .vp-blog-grid .vp-blog-card__category { margin: 0 0 .75rem; font-size: .875rem; font-weight: 700; }
body.page-id-3758 .vp-blog-grid .vp-blog-card__excerpt { margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.65; word-break: normal; overflow-wrap: break-word; hyphens: none; }
body.page-id-3758 .vp-blog-grid .vp-blog-card__link { margin: auto 0 0; font-size: 1rem; font-weight: 700; }
body.page-id-3758 .vp-blog-grid-pagination { margin-top: 2rem; }
body.page-id-3758 .vp-blog-grid-pagination .page-numbers { display: flex; flex-wrap: wrap; gap: .75rem; list-style: none; margin: 0; padding: 0; }
body.page-id-3758 .vp-blog-grid-pagination .page-numbers > * { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
body.page-id-3758 .vp-blog-grid-pagination .page-numbers .current { font-weight: 700; color: var(--vp-navy); }
@media (max-width: 1024px) { body.page-id-3758 .vp-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) {
  body.page-id-3758 .vp-blog-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  body.page-id-3758 .vp-blog-grid .vp-blog-card { padding: 24px; }
}

/* Dedicated homepage editorial grid; deliberately independent from the Blog archive. */
body.page-id-3746 .vp-home-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 2.5rem 0;
  padding: 0;
}
body.page-id-3746 .vp-home-article-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #E4E7EC;
  border-radius: 10px;
}
body.page-id-3746 .vp-home-article-category { margin: 0 0 .75rem; color: var(--vp-red-accessible); font-size: .875rem; font-weight: 700; }
body.page-id-3746 .vp-home-article-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
body.page-id-3746 .vp-home-article-title a { color: var(--vp-navy); }
body.page-id-3746 .vp-home-article-excerpt {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
body.page-id-3746 .vp-home-article-link { margin: auto 0 0; font-weight: 700; }
@media (max-width: 900px) { body.page-id-3746 .vp-home-articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  body.page-id-3746 .vp-home-articles-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  body.page-id-3746 .vp-home-article-card { padding: 24px; }
}

/* 1.10.5: layout-only repair of the existing homepage Query Loop. */
body.page-id-3746 .vp-home-articles-section { overflow-x: visible; }
body.page-id-3746 .vp-home-articles-section .wp-block-query { width: 100% !important; min-width: 0 !important; max-width: none !important; }
body.page-id-3746 .vp-home-articles-section .wp-block-post-template,
body.page-id-3746 .vp-home-articles-section .wp-block-post-template.is-flex-container,
body.page-id-3746 .vp-home-articles-section .wp-block-post-template.is-layout-flex {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
}
body.page-id-3746 .vp-home-articles-section .wp-block-post-template > .wp-block-post,
body.page-id-3746 .vp-home-articles-section .wp-block-post-template > li,
body.page-id-3746 .vp-home-articles-section article.wp-block-post,
body.page-id-3746 .vp-home-articles-section .wp-block-post > .wp-block-group {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  inline-size: 100% !important;
  min-inline-size: 0 !important;
  max-inline-size: none !important;
  flex: 1 1 auto !important;
  flex-basis: auto !important;
  grid-column: auto !important;
  box-sizing: border-box !important;
}
body.page-id-3746 .vp-home-articles-section .wp-block-post-title,
body.page-id-3746 .vp-home-articles-section .wp-block-post-title a,
body.page-id-3746 .vp-home-articles-section .wp-block-post-excerpt,
body.page-id-3746 .vp-home-articles-section .wp-block-post-excerpt__excerpt,
body.page-id-3746 .vp-home-articles-section .wp-block-post-terms,
body.page-id-3746 .vp-home-articles-section .wp-block-post-terms a,
body.page-id-3746 .vp-home-articles-section .wp-block-post p,
body.page-id-3746 .vp-home-articles-section .wp-block-post a {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: auto;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}
@media (max-width: 900px) and (min-width: 641px) {
  body.page-id-3746 .vp-home-articles-section .wp-block-post-template,
  body.page-id-3746 .vp-home-articles-section .wp-block-post-template.is-flex-container,
  body.page-id-3746 .vp-home-articles-section .wp-block-post-template.is-layout-flex { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px) {
  body.page-id-3746 .vp-home-articles-section .wp-block-post-template,
  body.page-id-3746 .vp-home-articles-section .wp-block-post-template.is-flex-container,
  body.page-id-3746 .vp-home-articles-section .wp-block-post-template.is-layout-flex { grid-template-columns: minmax(0, 1fr) !important; width: 100% !important; overflow-x: visible !important; }
}
/* Legal pages and notices are local to VisioPro components. */
.vp-legal-page { max-width: 860px; margin: 0 auto; padding: 48px 24px 64px; }
.vp-legal-page table { width: 100%; border-collapse: collapse; }
.vp-legal-page th, .vp-legal-page td { padding: 12px; border: 1px solid #E4E7EC; vertical-align: top; text-align: left; }
.vp-legal-form-notice { margin: 16px 0 0; font-size: .94rem; line-height: 1.6; color: #344054; }
