/*
 * PH SIM Registration — editorial design system v2
 * Brand-led, accessible, mobile-first, and intentionally independent of
 * page-builder markup. Kadence supplies the shell; this layer supplies the UI.
 */

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/poppins-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/poppins-700-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./fonts/poppins-800-latin.woff2") format("woff2");
}

:root {
  --psr-blue: #0b57b7;
  --psr-blue-dark: #073b80;
  --psr-blue-soft: #eaf3ff;
  --psr-gold: #d4a94f;
  --psr-gold-soft: #fff7df;
  --psr-ink: #142033;
  --psr-text: #334155;
  --psr-muted: #64748b;
  --psr-line: #dbe4ef;
  --psr-surface: #ffffff;
  --psr-canvas: #f5f8fc;
  --psr-good: #08745b;
  --psr-good-soft: #e9f8f3;
  --psr-warn: #9a5a08;
  --psr-warn-soft: #fff7e6;
  --psr-danger: #b4233a;
  --psr-danger-soft: #fff0f2;
  --psr-radius-sm: 10px;
  --psr-radius: 16px;
  --psr-radius-lg: 24px;
  --psr-shadow-sm: 0 1px 2px rgb(20 32 51 / 5%), 0 5px 18px rgb(20 32 51 / 5%);
  --psr-shadow: 0 18px 55px rgb(20 32 51 / 10%);
  --psr-container: 1180px;
  --psr-reading: 760px;
  --psr-gutter: clamp(18px, 4vw, 32px);
  --psr-section: clamp(56px, 8vw, 96px);
}

html { scroll-behavior: smooth; }
html body {
  color: var(--psr-text);
  background: var(--psr-canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}
html body,
body button,
body input,
body select,
body textarea { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { height: auto; max-width: 100%; }
a { color: var(--psr-blue-dark); text-underline-offset: 3px; }
a:hover { color: var(--psr-blue); }
:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid rgb(11 87 183 / 28%);
  outline-offset: 3px;
}
::selection { color: var(--psr-ink); background: #d8e9ff; }

/* Kadence shell ------------------------------------------------------- */
.site { overflow: clip; }
.site-header {
  border-bottom: 1px solid var(--psr-line);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 1px 0 rgb(20 32 51 / 2%);
}
.site-header-row-container-inner > .site-container,
.site-footer-row-container-inner > .site-container,
.content-container.site-container {
  width: min(100%, var(--psr-container));
  padding-inline: var(--psr-gutter);
}
.site-branding a.brand img,
.custom-logo-link img {
  width: 186px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.main-navigation .primary-menu-container > ul > li > a {
  color: var(--psr-ink);
  font-size: .93rem;
  font-weight: 650;
  letter-spacing: -.01em;
}
.main-navigation .primary-menu-container > ul > li > a:hover,
.main-navigation .primary-menu-container > ul > li.current-menu-item > a,
.main-navigation .primary-menu-container > ul > li.current-menu-ancestor > a { color: var(--psr-blue); }
.main-navigation ul ul {
  width: 270px;
  padding: 10px;
  border: 1px solid var(--psr-line);
  border-radius: 14px;
  background: var(--psr-surface);
  box-shadow: var(--psr-shadow);
}
.main-navigation ul ul a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--psr-text);
  font-size: .88rem;
  line-height: 1.35;
}
.main-navigation ul ul a:hover { color: var(--psr-blue-dark); background: var(--psr-blue-soft); }
.menu-highlight > a {
  padding: 10px 16px !important;
  border-radius: 999px;
  color: #fff !important;
  background: var(--psr-blue);
  box-shadow: 0 7px 20px rgb(11 87 183 / 20%);
}
.menu-highlight > a:hover { background: var(--psr-blue-dark); }
.mobile-toggle-open-container .menu-toggle-open {
  border: 1px solid var(--psr-line);
  border-radius: 10px;
  color: var(--psr-ink);
  background: #fff;
}
.popup-drawer .drawer-inner { background: #fff; }
.mobile-navigation a { font-weight: 600; }

.content-area { margin: clamp(34px, 6vw, 74px) 0; }
body.home .content-area { margin-top: 0; }
main.wrap, main.wrap.kt-clear { max-width: none; padding: 0; margin: 0; }
.entry.content-bg,
.entry.content-bg.single-entry {
  border-radius: var(--psr-radius-lg);
  box-shadow: var(--psr-shadow-sm);
  background: var(--psr-surface);
}
.entry-content-wrap { padding: clamp(24px, 5vw, 58px); }
body.home .entry.content-bg,
body.home .entry.content-bg.single-entry { border-radius: 0; box-shadow: none; background: transparent; }
body.home .entry-content-wrap { padding: 0; }
.entry-header { max-width: var(--psr-reading); margin-inline: auto; }
.entry-title {
  color: var(--psr-ink);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.entry-meta { color: var(--psr-muted); font-size: .85rem; }
.entry-content > * { max-width: var(--psr-reading); margin-inline: auto; }
.entry-content > :where(.psr-wide, .home-shell, .guide-layout, .blog-hub, .psr-featured-image) { max-width: none; }

/* Trust strip --------------------------------------------------------- */
.trust-bar,
.psr-trust-bar {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 8px var(--psr-gutter);
  border-bottom: 1px solid #ecdba9;
  color: #55431e;
  background: var(--psr-gold-soft);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}
.psr-trust-bar a { color: #4e3a12; font-weight: 700; }

/* Typography ---------------------------------------------------------- */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--psr-ink);
  font-weight: 760;
  letter-spacing: -.025em;
}
.entry-content h1 { font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: 1.03; letter-spacing: -.055em; }
.entry-content h2 { margin-top: 2.5em; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.2; scroll-margin-top: 110px; }
.entry-content h3 { margin-top: 1.8em; font-size: clamp(1.18rem, 2vw, 1.4rem); line-height: 1.3; scroll-margin-top: 110px; }
.entry-content h4 { margin-top: 1.6em; font-size: 1.02rem; }
.entry-content p { margin: 0 0 1.2em; }
.entry-content ul,
.entry-content ol { margin: 0 0 1.35em; padding-left: 1.3em; }
.entry-content li { margin-bottom: .55em; }
.entry-content li::marker { color: var(--psr-blue); font-weight: 800; }
.entry-content :where(p, li) > a { font-weight: 620; text-decoration-thickness: 1.5px; text-decoration-color: rgb(7 59 128 / 32%); }
.entry-content :where(p, li) > a:hover { text-decoration-color: currentColor; }
.eyebrow,
.psr-eyebrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--psr-blue-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
}
.eyebrow::before,
.psr-eyebrow::before { width: 24px; height: 2px; content: ""; background: var(--psr-gold); }
.dek,
.psr-dek,
.entry-content .lead {
  color: var(--psr-text);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.62;
}
.meta-line,
.psr-meta-line { color: var(--psr-muted); font-size: .84rem; }
.psr-kicker { color: var(--psr-blue-dark); font-weight: 750; }

/* Buttons ------------------------------------------------------------- */
.btn-row,
.psr-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 26px 0; }
.btn,
.psr-button,
.psr-btn-go,
.wp-block-button__link {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--psr-blue);
  box-shadow: 0 8px 22px rgb(11 87 183 / 18%);
  font-size: .93rem;
  font-weight: 760;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover,
.psr-button:hover,
.psr-btn-go:hover,
.wp-block-button__link:hover { color: #fff; background: var(--psr-blue-dark); box-shadow: 0 12px 28px rgb(7 59 128 / 24%); transform: translateY(-1px); }
.btn-outline,
.psr-button--secondary {
  border-color: var(--psr-line);
  color: var(--psr-ink);
  background: #fff;
  box-shadow: none;
}
.btn-outline:hover,
.psr-button--secondary:hover { border-color: #a9c4e7; color: var(--psr-blue-dark); background: var(--psr-blue-soft); }
.btn-block { width: 100%; }

/* Homepage ------------------------------------------------------------ */
.home-shell { background: var(--psr-canvas); }
.home-shell > section { padding: var(--psr-section) var(--psr-gutter); }
.home-shell > section > .psr-container,
.psr-container { width: min(100%, var(--psr-container)); margin-inline: auto; }
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--psr-line);
  background:
    radial-gradient(circle at 84% 8%, rgb(212 169 79 / 20%), transparent 27%),
    linear-gradient(135deg, #fff 0%, #f1f7ff 100%);
}
.home-hero::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgb(11 87 183 / 10%);
  border-radius: 50%;
  content: "";
}
.home-hero .psr-container { display: grid; gap: clamp(34px, 6vw, 78px); align-items: center; }
.home-hero h1 { max-width: 760px; margin: 0 0 22px; }
.home-hero .psr-dek { max-width: 690px; }
.home-hero__visual { position: relative; z-index: 1; }
.home-hero__visual img { display: block; width: 100%; border-radius: var(--psr-radius-lg); box-shadow: var(--psr-shadow); }
.safety-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 670px;
  margin-top: 24px;
  color: var(--psr-muted);
  font-size: .82rem;
  line-height: 1.5;
}
.safety-line::before { color: var(--psr-good); content: "✓"; font-weight: 900; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading h2 { margin: 0 0 12px; }
.section-heading p { color: var(--psr-muted); }
.carrier-grid { display: grid; gap: 13px; }
.carrier-card {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--psr-line);
  border-radius: var(--psr-radius);
  color: var(--psr-ink);
  background: #fff;
  box-shadow: var(--psr-shadow-sm);
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.carrier-card::before { position: absolute; inset: 0 auto 0 0; width: 4px; content: ""; background: var(--carrier, var(--psr-blue)); }
.carrier-card:hover { border-color: #aac4e5; color: var(--psr-blue-dark); box-shadow: var(--psr-shadow); transform: translateY(-2px); }
.carrier-card__mark {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 11px;
  place-items: center;
  color: var(--carrier, var(--psr-blue));
  background: color-mix(in srgb, var(--carrier, var(--psr-blue)) 10%, white);
  font-weight: 850;
}
.carrier-card strong { font-size: 1.04rem; }
.carrier-card span { color: var(--psr-muted); font-size: .78rem; }
.carrier-globe { --carrier: #0b57b7; }
.carrier-tm { --carrier: #6d28d9; }
.carrier-gomo { --carrier: #007f6d; }
.carrier-smart { --carrier: #f05a28; }
.carrier-tnt { --carrier: #e74321; }
.carrier-dito { --carrier: #d7193f; }
.home-paths { background: #fff; }
.path-grid,
.guide-grid,
.post-grid { display: grid; gap: 16px; }
.path-card,
.guide-card,
.post-card {
  overflow: hidden;
  border: 1px solid var(--psr-line);
  border-radius: var(--psr-radius);
  background: #fff;
  box-shadow: var(--psr-shadow-sm);
}
.path-card { padding: 24px; }
.path-card__number { color: var(--psr-blue); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.path-card h3 { margin: 10px 0 9px; font-size: 1.18rem; }
.path-card p { color: var(--psr-muted); font-size: .9rem; }
.path-card a { font-weight: 750; }
.home-trust { color: #fff; background: var(--psr-blue-dark); }
.home-trust .section-heading h2,
.home-trust h3 { color: #fff; }
.home-trust .section-heading p,
.home-trust p { color: #d7e6f8; }
.trust-grid { display: grid; gap: 24px; }
.trust-item { padding-left: 20px; border-left: 2px solid var(--psr-gold); }
.trust-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.trust-item p { margin: 0; font-size: .88rem; }

/* Guide layout -------------------------------------------------------- */
.guide-header { max-width: 860px; margin: 0 auto clamp(34px, 6vw, 60px); }
.guide-header .psr-eyebrow,
.blog-hub__hero .psr-eyebrow { margin-bottom: 20px; }
.guide-header h1,
.blog-hub__hero h1 { margin: 0 0 18px; }
.guide-header h1 { margin: 0 0 20px; }
.guide-header .psr-dek { max-width: 750px; }
.guide-layout { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
.guide-main { min-width: 0; }
.guide-main > h2:first-child { margin-top: 0; }
.guide-rail { display: grid; gap: 16px; }
.rail-card {
  padding: 20px;
  border: 1px solid var(--psr-line);
  border-radius: var(--psr-radius);
  background: #fff;
  box-shadow: var(--psr-shadow-sm);
  font-size: .84rem;
  line-height: 1.55;
}
.rail-card h2,
.rail-card h3 { margin: 0 0 12px; font-size: .95rem; }
.rail-card ul { margin: 0; padding-left: 18px; }
.rail-card li { margin-bottom: 7px; }
.rail-card p:last-child { margin-bottom: 0; }
.rail-card--official { border-top: 4px solid var(--psr-blue); }
.official-domain { display: block; margin: 8px 0 14px; color: var(--psr-good); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .76rem; overflow-wrap: anywhere; }
.answer-box,
.psr-answer {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid #b8d4f5;
  border-left: 5px solid var(--psr-blue);
  border-radius: var(--psr-radius-sm);
  color: var(--psr-ink);
  background: var(--psr-blue-soft);
}
.answer-box > :last-child,
.psr-answer > :last-child { margin-bottom: 0; }
.answer-label { display: block; margin-bottom: 7px; color: var(--psr-blue-dark); font-size: .73rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.info,
.psr-note,
.notice {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid var(--psr-line);
  border-radius: var(--psr-radius-sm);
  background: #f8fafc;
  font-size: .91rem;
}
.info-warn,
.psr-note--warn,
.notice--warn { border-color: #eed49c; background: var(--psr-warn-soft); }
.info-danger,
.psr-note--danger,
.notice--danger { border-color: #f1c4cb; background: var(--psr-danger-soft); }
.info-good,
.psr-note--good,
.notice--safe { border-color: #adddcc; background: var(--psr-good-soft); }
.taglish {
  margin: 26px 0;
  padding: 20px 22px;
  border-radius: var(--psr-radius-sm);
  color: #3d321d;
  background: var(--psr-gold-soft);
}
.taglish-label { margin-bottom: 6px !important; color: #6f531b; font-size: .7rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.checklist { display: grid; gap: 10px; padding: 0 !important; list-style: none; }
.checklist li { position: relative; margin: 0; padding: 12px 14px 12px 42px; border: 1px solid var(--psr-line); border-radius: 9px; background: #fff; }
.checklist li::before { position: absolute; left: 15px; color: var(--psr-good); content: "✓"; font-weight: 900; }
.steps { padding: 0 !important; counter-reset: psr-step; list-style: none; }
.step {
  position: relative;
  margin: 0 0 18px !important;
  padding: 22px 22px 22px 76px;
  border: 1px solid var(--psr-line);
  border-radius: var(--psr-radius);
  background: #fff;
  box-shadow: var(--psr-shadow-sm);
  counter-increment: psr-step;
}
.step::before {
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--psr-blue);
  content: counter(psr-step);
  font-weight: 850;
}
.step h3 { margin: 0 0 8px; }
.step p:last-child { margin-bottom: 0; }
.change-log { padding: 0; list-style: none; }
.change-log li { display: grid; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--psr-line); }
.change-log time { color: var(--psr-muted); font-size: .78rem; font-weight: 700; }

/* Portal CTA ---------------------------------------------------------- */
.portal-cta,
.psr-portal-cta {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #b8d4f5;
  border-radius: var(--psr-radius);
  background: linear-gradient(135deg, #f7fbff, #eaf3ff);
}
.psr-portal-meta,
.portal-meta { margin: 10px 0 0 !important; color: var(--psr-muted); font-size: .76rem; line-height: 1.5; }
.psr-verified {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  color: #0b634f;
  background: var(--psr-good-soft);
  font-size: .7rem;
  font-weight: 750;
}

/* Tables -------------------------------------------------------------- */
.table-wrap,
.comparison-wrap { margin: 26px 0; overflow-x: auto; border: 1px solid var(--psr-line); border-radius: 12px; background: #fff; }
.entry-content table { width: 100%; min-width: 620px; margin: 0; border: 0; border-collapse: collapse; font-size: .87rem; line-height: 1.48; }
.entry-content th { padding: 13px 15px; border: 0; border-bottom: 1px solid var(--psr-line); color: var(--psr-ink); background: #edf4fc; font-size: .78rem; letter-spacing: .02em; text-align: left; }
.entry-content td { padding: 13px 15px; border: 0; border-bottom: 1px solid #e8eef5; vertical-align: top; }
.entry-content tr:last-child td { border-bottom: 0; }

/* FAQ / sources / author --------------------------------------------- */
.faq { margin-top: 52px; }
.faq details { margin-bottom: 10px; border: 1px solid var(--psr-line); border-radius: var(--psr-radius-sm); background: #fff; }
.faq summary { position: relative; padding: 17px 48px 17px 18px; color: var(--psr-ink); cursor: pointer; font-weight: 720; line-height: 1.4; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 16px; right: 18px; color: var(--psr-blue); content: "+"; font-size: 1.35rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq-body { padding: 0 18px 17px; color: var(--psr-text); }
.faq-body > :last-child { margin-bottom: 0; }
.sources,
.psr-sources { margin-top: 52px; padding: 22px; border-top: 3px solid var(--psr-gold); border-radius: 0 0 12px 12px; background: #fbfcfe; }
.sources h2,
.psr-sources h2 { margin-top: 0; font-size: 1.18rem; }
.sources li,
.psr-sources li { margin-bottom: 9px; overflow-wrap: anywhere; font-size: .86rem; }
.author-box,
.psr-author-box {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  padding: 22px;
  border: 1px solid var(--psr-line);
  border-radius: var(--psr-radius);
  background: #fff;
}
.author-avatar { display: grid; width: 52px; height: 52px; border-radius: 50%; place-items: center; color: #fff; background: var(--psr-blue-dark); font-weight: 850; }
.author-box h2,
.author-box h3 { margin: 0 0 5px; font-size: 1.02rem; }
.author-box p { margin: 0; color: var(--psr-muted); font-size: .84rem; }

/* Blog and related cards --------------------------------------------- */
.psr-featured-image { margin: 0 0 32px; overflow: hidden; border-radius: var(--psr-radius-lg); background: #eaf1f9; }
.psr-featured-image img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-hub { display: grid; gap: 48px; }
.blog-hub__hero { max-width: 860px; }
.blog-hub__hero h1 { margin: 0 0 20px; }
.topic-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: -22px; }
.topic-nav a { padding: 8px 12px; border: 1px solid var(--psr-line); border-radius: 999px; color: var(--psr-ink); background: #fff; font-size: .78rem; font-weight: 720; text-decoration: none; }
.topic-nav a:hover { border-color: #a9c4e7; color: var(--psr-blue-dark); background: var(--psr-blue-soft); }
.blog-topic { scroll-margin-top: 110px; }
.blog-topic .section-heading { margin-bottom: 22px; }
.blog-topic .section-heading h2 { margin-top: 0; }
.blog-category__header { max-width: 760px; margin-bottom: 22px; }
.blog-category__header h2 { margin: 0 0 8px; }
.blog-category__header p { color: var(--psr-muted); }
.post-card { display: flex; min-width: 0; flex-direction: column; }
.post-card__image { display: block; overflow: hidden; background: #e9f1fa; }
.post-card__image img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .28s ease; }
.post-card:hover .post-card__image img { transform: scale(1.025); }
.post-card__body { display: flex; padding: 19px; flex: 1; flex-direction: column; }
.post-card__meta { margin-bottom: 9px; color: var(--psr-muted); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { margin: 0 0 9px; font-size: 1.08rem; line-height: 1.32; }
.post-card h3 a { color: var(--psr-ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--psr-blue); }
.post-card p { margin: 0 0 16px; color: var(--psr-muted); font-size: .84rem; line-height: 1.55; }
.post-card__more { margin-top: auto; font-size: .82rem; font-weight: 760; }
.psr-related-news { max-width: var(--psr-reading); margin: 54px auto 0; padding-top: 28px; border-top: 1px solid var(--psr-line); }
.psr-related-news > h2 { margin-top: 0; }
.quick-grid { display: grid; gap: 12px; }
.quick-card { display: block; padding: 17px; border: 1px solid var(--psr-line); border-radius: 12px; color: var(--psr-ink); background: #fff; text-decoration: none; }
.quick-card:hover { border-color: #a9c4e7; color: var(--psr-blue-dark); background: #fbfdff; }
.quick-card time { color: var(--psr-muted); font-size: .7rem; }
.quick-card h3 { margin: 7px 0; font-size: .98rem; }
.quick-card p { margin: 0; color: var(--psr-muted); font-size: .79rem; line-height: 1.5; }
.quick-card__image { display: block; margin: -17px -17px 15px; overflow: hidden; border-radius: 11px 11px 0 0; background: #e9f1fa; }
.quick-card__image img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.quick-card h3 a { color: inherit; text-decoration: none; }
.psr-related-more { font-size: .85rem; }

/* Sitemap ------------------------------------------------------------- */
.sitemap-grid { display: grid; gap: 18px; }
.sitemap-group,
.sitemap-grid > section { padding: 20px; border: 1px solid var(--psr-line); border-radius: var(--psr-radius); background: #fff; }
.sitemap-group h2,
.sitemap-grid > section h2 { margin-top: 0; font-size: 1.15rem; }
.sitemap-group ul,
.sitemap-grid > section ul { margin-bottom: 0; }

/* Footer -------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--psr-line); color: #c9d8ea; background: #0d203b; }
.site-footer h2,
.site-footer h3 { color: #fff; }
.site-footer a { color: #e6eef8; }
.site-footer a:hover { color: #fff; }
.site-bottom-footer-wrap { border-top: 1px solid rgb(255 255 255 / 10%); }

/* Responsive ---------------------------------------------------------- */
@media (min-width: 560px) {
  .carrier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-grid,
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .author-box { grid-template-columns: auto 1fr; align-items: center; }
}
@media (min-width: 760px) {
  .path-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sitemap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  body.single-post .content-container.site-container { max-width: var(--psr-container); }
  body.single-post .article-post-thumbnail.alignwide {
    margin-right: calc(-1 * var(--psr-gutter)) !important;
    margin-left: calc(-1 * var(--psr-gutter)) !important;
    padding-bottom: clamp(380px, 42vw, 560px) !important;
  }
  .home-hero .psr-container { grid-template-columns: minmax(0, 1.13fr) minmax(320px, .87fr); }
  .carrier-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .guide-layout { grid-template-columns: minmax(0, 1fr) 270px; }
  .guide-rail { position: sticky; top: 110px; }
  .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 899px) {
  .guide-rail { order: 1; }
  .rail-card--toc { display: none; }
}
@media (max-width: 719px) {
  body { font-size: 16px; }
  .content-container.site-container { padding-inline: 14px; }
  .site-branding a.brand img,
  .custom-logo-link img { width: 154px; max-height: 56px; }
  .entry-content-wrap { padding: 24px 18px 32px; }
  .home-shell > section { padding-inline: 18px; }
  .step { padding: 68px 18px 20px; }
  .step::before { top: 18px; left: 18px; }
  .btn,
  .psr-button,
  .psr-btn-go { width: 100%; }
  .site-branding a.brand img,
  .custom-logo-link img { width: 148px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
@media print {
  .site-header,
  .site-footer,
  .trust-bar,
  .psr-trust-bar,
  .guide-rail,
  .psr-related-news,
  .btn-row,
  .psr-actions { display: none !important; }
  body,
  .entry.content-bg { color: #000; background: #fff; box-shadow: none; }
  .content-area { margin: 0; }
  .entry-content-wrap { padding: 0; }
  a { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .75em; }
}
/* Pages with a content-managed H1 do not need Kadence's empty title hero. */
.psr-no-hero-title .entry-hero,
.psr-no-hero-title .page-hero-section {
  display: none;
}
