/* Irish Calculators Guide Pages - Phase 2 premium article system */

body .ic-guide-page {
  --ic-guide-green: #117a4b;
  --ic-guide-green-dark: #0c5f3a;
  --ic-guide-green-soft: #edf8f2;
  --ic-guide-green-line: rgba(17, 122, 75, 0.22);
  --ic-guide-text: #102033;
  --ic-guide-muted: #5c6876;
  --ic-guide-soft: #f6f8f7;
  --ic-guide-panel: #ffffff;
  --ic-guide-border: #dce6e0;
  --ic-guide-border-strong: #c9d9d0;
  --ic-guide-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--ic-guide-soft);
  color: var(--ic-guide-text);
  font-family: var(--ic-font-body, var(--ic-font, 'Inter', 'Outfit', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif));
  font-size: var(--ic-base-font-size, 15px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body .ic-guide-page :where(h1, h2, h3, h4, .ic-guide-kicker span, .ic-guide-btn, .ic-guide-card strong, .ic-guide-card__label, .ic-guide-cta__copy strong, .ic-guide-table th, .ic-guide-toc strong, .ic-guide-section-heading h2, .ic-guide-block-label h2, .ic-guide-calculator-preview h2, .ic-guide-eyebrow, .ic-guide-prev-next strong, .ic-guide-calculator-chip strong) {
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

body .ic-guide-page :where(p, li, td, .ic-guide-card span, .ic-guide-cta__copy span, .ic-guide-sources a, .ic-guide-toc a, .ic-guide-calculator-preview p, .ic-guide-calculator-chip small, .ic-guide-stat-row span) {
  font-family: var(--ic-font-body, var(--ic-font, 'Inter', 'Outfit', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif));
}

body .ic-guide-page .ic-guide-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: clip;
  background: var(--ic-guide-soft);
}

body .ic-guide-page .ic-guide-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

body .ic-guide-page .ic-guide-container--hero {
  width: min(100% - 32px, 1200px);
}

body .ic-guide-page .ic-guide-container--content {
  width: min(100% - 32px, 760px);
}

body .ic-guide-page .ic-guide-container--with-toc {
  width: min(100% - 32px, 1200px);
}

/* ===== Hero ===== */
body .ic-guide-page .ic-guide-hero {
  position: relative;
  padding: 24px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #0f7649 0%, var(--ic-guide-green-dark) 100%);
}

body .ic-guide-page .ic-guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.5;
}

body .ic-guide-page .ic-guide-breadcrumbs a,
body .ic-guide-page .ic-guide-breadcrumbs span {
  color: inherit;
  text-decoration: none;
}

body .ic-guide-page .ic-guide-breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body .ic-guide-page .ic-guide-breadcrumbs [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

body .ic-guide-page .ic-guide-breadcrumbs__sep {
  opacity: 0.62;
}

body .ic-guide-page .ic-guide-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

body .ic-guide-page .ic-guide-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body .ic-guide-page svg {
  width: 1em;
  height: 1em;
}

body .ic-guide-page .ic-guide-kicker svg {
  width: 14px;
  height: 14px;
}

body .ic-guide-page .ic-guide-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body .ic-guide-page .ic-guide-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.6;
}

/* ===== Layout ===== */
body .ic-guide-page .ic-guide-main {
  padding: 34px 0 44px;
}

body .ic-guide-page .ic-guide-layout {
  display: grid;
  gap: 44px;
}

body .ic-guide-page .ic-guide-layout--single {
  max-width: 760px;
  margin-inline: auto;
}

body .ic-guide-page .ic-guide-layout--with-toc {
  grid-template-columns: minmax(0, 760px) 220px;
  align-items: start;
}

body .ic-guide-page .ic-guide-article {
  min-width: 0;
}

body .ic-guide-page .ic-guide-section {
  scroll-margin-top: 110px;
  margin-top: 48px;
}

body .ic-guide-page .ic-guide-article h2 {
  margin: 0 0 13px;
  color: #111827;
  font-size: clamp(26px, 2.7vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

body .ic-guide-page .ic-guide-section-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 13px;
}

body .ic-guide-page .ic-guide-section-title h2 {
  margin: 0;
}

body .ic-guide-page .ic-guide-section-title__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  color: var(--ic-guide-green);
  background: var(--ic-guide-green-soft);
}

body .ic-guide-page .ic-guide-section-title__icon svg {
  width: 17px;
  height: 17px;
}

body .ic-guide-page .ic-guide-copy p,
body .ic-guide-page .ic-guide-copy li {
  color: var(--ic-guide-muted);
  font-size: 16px;
  line-height: 1.72;
}

body .ic-guide-page .ic-guide-copy p {
  margin: 0 0 16px;
}

body .ic-guide-page .ic-guide-copy strong,
body .ic-guide-page .ic-guide-article strong {
  color: #111827;
  font-weight: 600;
}

/* ===== Quick Answer ===== */
body .ic-guide-page .ic-guide-quick-answer {
  margin: 0 0 34px;
  padding: 23px 24px;
  border: 1px solid rgba(17,122,75,0.15);
  border-left: 4px solid var(--ic-guide-green);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ic-guide-shadow);
}

body .ic-guide-page .ic-guide-block-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

body .ic-guide-page .ic-guide-block-label > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--ic-guide-green);
  background: var(--ic-guide-green-soft);
}

body .ic-guide-page .ic-guide-block-label h2 {
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-quick-answer ul,
body .ic-guide-page .ic-guide-sources ul,
body .ic-guide-page .ic-guide-copy ul,
body .ic-guide-page .ic-guide-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body .ic-guide-page .ic-guide-quick-answer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #edf2ef;
  color: var(--ic-guide-muted);
  font-size: 15px;
  line-height: 1.62;
}

body .ic-guide-page .ic-guide-quick-answer li:first-child {
  border-top: 0;
}

body .ic-guide-page .ic-guide-quick-answer li svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--ic-guide-green);
}

/* ===== Table of contents ===== */
body .ic-guide-page .ic-guide-toc--desktop {
  position: sticky;
  top: 96px;
  display: block;
}

body .ic-guide-page .ic-guide-toc__inner {
  padding: 16px 0 16px 18px;
  border-left: 1px solid var(--ic-guide-border);
}

body .ic-guide-page .ic-guide-toc strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-toc strong svg {
  color: var(--ic-guide-green);
}

body .ic-guide-page .ic-guide-toc li + li {
  margin-top: 8px;
}

body .ic-guide-page .ic-guide-toc a {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

body .ic-guide-page .ic-guide-toc a:hover {
  color: var(--ic-guide-green);
}

body .ic-guide-page .ic-guide-toc--mobile {
  display: none;
  margin: 0 0 28px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
}

body .ic-guide-page .ic-guide-toc--mobile summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 16px;
  color: #111827;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

body .ic-guide-page .ic-guide-toc--mobile summary::-webkit-details-marker {
  display: none;
}

body .ic-guide-page .ic-guide-toc--mobile ol {
  padding: 0 16px 16px 42px;
}

/* ===== Cards ===== */
body .ic-guide-page .ic-guide-hub-cards,
body .ic-guide-page .ic-guide-related,
body .ic-guide-page .ic-guide-sources {
  margin-top: 42px;
}

body .ic-guide-page .ic-guide-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body .ic-guide-page .ic-guide-card {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body .ic-guide-page .ic-guide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17,122,75,0.28);
  box-shadow: 0 16px 34px rgba(15,23,42,0.07);
}

body .ic-guide-page .ic-guide-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--ic-guide-green);
  background: var(--ic-guide-green-soft);
}

body .ic-guide-page .ic-guide-card--coins .ic-guide-card__icon,
body .ic-guide-page .ic-guide-calculator-chip--coins > span {
  color: #0f7a4f;
  background: #edf8f2;
}

body .ic-guide-page .ic-guide-card--scale .ic-guide-card__icon,
body .ic-guide-page .ic-guide-calculator-chip--home > span {
  color: #1d6aa8;
  background: #eef6ff;
}

body .ic-guide-page .ic-guide-card--swap .ic-guide-card__icon,
body .ic-guide-page .ic-guide-card--app .ic-guide-card__icon,
body .ic-guide-page .ic-guide-calculator-chip--wallet > span {
  color: #6d4fd8;
  background: #f3f0ff;
}

body .ic-guide-page .ic-guide-card--calendar .ic-guide-card__icon,
body .ic-guide-page .ic-guide-calculator-chip--target > span {
  color: #a86205;
  background: #fff7e8;
}

body .ic-guide-page .ic-guide-card--file .ic-guide-card__icon,
body .ic-guide-page .ic-guide-calculator-chip--card > span {
  color: #334155;
  background: #f1f5f9;
}


body .ic-guide-page .ic-guide-card__body {
  display: block;
  min-width: 0;
}

body .ic-guide-page .ic-guide-card strong {
  display: block;
  margin: 0 0 7px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.34;
}

body .ic-guide-page .ic-guide-card__description,
body .ic-guide-page .ic-guide-card span:not(.ic-guide-card__icon):not(.ic-guide-card__arrow) {
  display: block;
  color: var(--ic-guide-muted);
  font-size: 14px;
  line-height: 1.55;
}

body .ic-guide-page .ic-guide-card__label {
  display: block;
  margin: 0 0 7px;
  color: var(--ic-guide-green) !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  color: #94a3b8;
  transition: transform .18s ease, color .18s ease;
}

body .ic-guide-page .ic-guide-card__arrow svg {
  width: 16px;
  height: 16px;
}

body .ic-guide-page .ic-guide-card:hover .ic-guide-card__arrow {
  color: var(--ic-guide-green);
  transform: translateX(2px);
}

body .ic-guide-page .ic-guide-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body .ic-guide-page .ic-guide-section-heading h2 {
  margin: 0;
}

body .ic-guide-page .ic-guide-section-heading__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--ic-guide-green);
  background: var(--ic-guide-green-soft);
}

/* ===== Editorial blocks ===== */
body .ic-guide-page .ic-guide-rule {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-left: 4px solid var(--ic-guide-green);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 0 var(--ic-guide-border);
}

body .ic-guide-page .ic-guide-rule span {
  color: var(--ic-guide-muted);
  line-height: 1.7;
}

body .ic-guide-page .ic-guide-checklist {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
}

body .ic-guide-page .ic-guide-checklist li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-top: 1px solid #edf2ef;
  background: #fff;
}

body .ic-guide-page .ic-guide-checklist li:first-child {
  border-top: 0;
}

body .ic-guide-page .ic-guide-checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ic-guide-green);
  font-size: 11px;
  font-weight: 600;
}

body .ic-guide-page .ic-guide-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
}

body .ic-guide-page .ic-guide-table th,
body .ic-guide-page .ic-guide-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--ic-guide-border);
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
}

body .ic-guide-page .ic-guide-table tr:last-child th,
body .ic-guide-page .ic-guide-table tr:last-child td {
  border-bottom: 0;
}

body .ic-guide-page .ic-guide-table th {
  color: #111827;
  background: #f8faf9;
  font-weight: 600;
}

body .ic-guide-page .ic-guide-table td {
  color: var(--ic-guide-muted);
  font-variant-numeric: tabular-nums;
}

/* ===== Sources / CTA / related ===== */
body .ic-guide-page .ic-guide-sources {
  padding: 20px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 18px;
  background: #f8fbf9;
}

body .ic-guide-page .ic-guide-sources__header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

body .ic-guide-page .ic-guide-sources h2 {
  margin: 0;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-sources__header span {
  color: #7a8795;
  font-size: 13px;
  font-style: italic;
}

body .ic-guide-page .ic-guide-sources li + li {
  margin-top: 8px;
}

body .ic-guide-page .ic-guide-sources a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ic-guide-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

body .ic-guide-page .ic-guide-sources a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

body .ic-guide-page .ic-guide-sources svg {
  width: 13px;
  height: 13px;
}

body .ic-guide-page .ic-guide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 48px 0 0;
  padding: 22px;
  border: 1px solid rgba(17,122,75,0.18);
  border-radius: 20px;
  background: var(--ic-guide-green-soft);
}

body .ic-guide-page .ic-guide-cta__copy strong,
body .ic-guide-page .ic-guide-cta__copy span {
  display: block;
}

body .ic-guide-page .ic-guide-cta__copy strong {
  margin: 0 0 4px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

body .ic-guide-page .ic-guide-cta__copy span {
  color: var(--ic-guide-muted);
  font-size: 14px;
  line-height: 1.55;
}

body .ic-guide-page .ic-guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--ic-guide-green);
  box-shadow: 0 10px 24px rgba(17,122,75,0.15);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease;
}

body .ic-guide-page .ic-guide-btn:hover {
  transform: translateY(-1px);
  background: var(--ic-guide-green-dark);
}

body .ic-guide-page .ic-guide-related {
  padding-top: 36px;
  border-top: 1px solid var(--ic-guide-border-strong);
}

body .ic-guide-page .ic-guide-card-grid--related {
  align-items: stretch;
}



/* ===== Phase 2 guide depth blocks ===== */
body .ic-guide-page .ic-guide-takeaways {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(17,122,75,0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

body .ic-guide-page .ic-guide-takeaways ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .ic-guide-page .ic-guide-takeaways li {
  position: relative;
  padding-left: 22px;
  color: var(--ic-guide-muted);
  font-size: 15px;
  line-height: 1.65;
}

body .ic-guide-page .ic-guide-takeaways li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ic-guide-green);
}

body .ic-guide-page .ic-guide-calculator-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(17,122,75,0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(17,122,75,0.08), transparent 30%),
    #ffffff;
  box-shadow: var(--ic-guide-shadow);
}

body .ic-guide-page .ic-guide-calculator-preview__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--ic-guide-green);
  background: var(--ic-guide-green-soft);
}

body .ic-guide-page .ic-guide-calculator-preview__icon svg {
  width: 22px;
  height: 22px;
}

body .ic-guide-page .ic-guide-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--ic-guide-green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-calculator-preview h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body .ic-guide-page .ic-guide-calculator-preview p {
  margin: 0;
  color: var(--ic-guide-muted);
  font-size: 14px;
  line-height: 1.62;
}

body .ic-guide-page .ic-guide-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

body .ic-guide-page .ic-guide-stat-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(17,122,75,0.13);
  border-radius: 999px;
  background: #f7fbf9;
  color: var(--ic-guide-muted);
  font-size: 12px;
  line-height: 1;
}

body .ic-guide-page .ic-guide-stat-row strong {
  color: var(--ic-guide-green);
  font-variant-numeric: tabular-nums;
}

body .ic-guide-page .ic-guide-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

body .ic-guide-page .ic-guide-prev-next__card,
body .ic-guide-page .ic-guide-prev-next__spacer {
  min-height: 92px;
  border-radius: 18px;
}

body .ic-guide-page .ic-guide-prev-next__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--ic-guide-border);
  background: #fff;
  text-decoration: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body .ic-guide-page .ic-guide-prev-next__card:hover {
  transform: translateY(-2px);
  border-color: rgba(17,122,75,0.30);
  box-shadow: 0 14px 30px rgba(15,23,42,0.06);
}

body .ic-guide-page .ic-guide-prev-next__card--next {
  text-align: right;
}

body .ic-guide-page .ic-guide-prev-next__card span {
  color: #728091;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-prev-next__card strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.35;
}

body .ic-guide-page .ic-guide-more-calculators {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--ic-guide-border-strong);
}

body .ic-guide-page .ic-guide-calculator-chip-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body .ic-guide-page .ic-guide-calculator-chip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body .ic-guide-page .ic-guide-calculator-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(17,122,75,0.28);
  box-shadow: 0 12px 24px rgba(15,23,42,0.055);
}

body .ic-guide-page .ic-guide-calculator-chip > span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: var(--ic-guide-green);
  background: var(--ic-guide-green-soft);
}

body .ic-guide-page .ic-guide-calculator-chip strong {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body .ic-guide-page .ic-guide-calculator-chip small {
  display: block;
  overflow: hidden;
  color: var(--ic-guide-muted);
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ===== Responsive ===== */
@media (max-width: 1023px) {
  body .ic-guide-page .ic-guide-container--with-toc {
    width: min(100% - 32px, 760px);
  }

  body .ic-guide-page .ic-guide-layout--with-toc {
    display: block;
  }

  body .ic-guide-page .ic-guide-toc--desktop {
    display: none;
  }

  body .ic-guide-page .ic-guide-toc--mobile {
    display: block;
  }
}

@media (max-width: 900px) {
  body .ic-guide-page .ic-guide-calculator-preview {
    grid-template-columns: auto minmax(0, 1fr);
  }

  body .ic-guide-page .ic-guide-calculator-preview .ic-guide-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  body .ic-guide-page .ic-guide-calculator-chip-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body .ic-guide-page .ic-guide-hero {
    padding: 22px 0 42px;
  }

  body .ic-guide-page .ic-guide-main {
    padding-top: 26px;
  }

  body .ic-guide-page .ic-guide-card-grid {
    grid-template-columns: 1fr;
  }

  body .ic-guide-page .ic-guide-cta {
    align-items: stretch;
    flex-direction: column;
  }

  body .ic-guide-page .ic-guide-btn {
    width: 100%;
  }

  body .ic-guide-page .ic-guide-prev-next {
    grid-template-columns: 1fr;
  }

  body .ic-guide-page .ic-guide-prev-next__spacer {
    display: none;
  }

  body .ic-guide-page .ic-guide-prev-next__card--next {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body .ic-guide-page .ic-guide-container,
  body .ic-guide-page .ic-guide-container--hero,
  body .ic-guide-page .ic-guide-container--content,
  body .ic-guide-page .ic-guide-container--with-toc {
    width: min(100% - 24px, 1200px);
  }

  body .ic-guide-page .ic-guide-hero h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  body .ic-guide-page .ic-guide-hero p,
  body .ic-guide-page .ic-guide-copy p,
  body .ic-guide-page .ic-guide-copy li,
  body .ic-guide-page .ic-guide-quick-answer li {
    font-size: 14px;
  }

  body .ic-guide-page .ic-guide-quick-answer,
  body .ic-guide-page .ic-guide-cta,
  body .ic-guide-page .ic-guide-sources {
    border-radius: 16px;
    padding: 18px;
  }

  body .ic-guide-page .ic-guide-card {
    min-height: auto;
  }

  body .ic-guide-page .ic-guide-table {
    display: block;
    overflow-x: auto;
  }

  body .ic-guide-page .ic-guide-calculator-preview {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  body .ic-guide-page .ic-guide-calculator-preview__icon {
    width: 42px;
    height: 42px;
  }

  body .ic-guide-page .ic-guide-calculator-chip-row {
    grid-template-columns: 1fr;
  }
}


/* ===== Phase 2.1 refinements ===== */
body .ic-guide-page .ic-guide-block-label--compact {
  margin-bottom: 0;
}

body .ic-guide-page .ic-guide-block-label--compact h2 {
  margin: 0;
}

@media (min-width: 1025px) {
  body .ic-guide-page .ic-guide-container--hero {
    margin-inline: auto;
  }
}


/* ===== v3.9.28 final editorial polish ===== */
body .ic-guide-page .ic-guide-hero {
  padding-bottom: 50px;
}

body .ic-guide-page .ic-guide-hero h1 {
  max-width: 700px;
  color: #ffffff;
}

body .ic-guide-page .ic-guide-hero p {
  max-width: 700px;
  color: rgba(255,255,255,0.93);
}

body .ic-guide-page .ic-guide-main {
  padding-top: 36px;
  padding-bottom: 36px;
}

body .ic-guide-page .ic-guide-copy p,
body .ic-guide-page .ic-guide-copy li {
  font-size: 17px;
  line-height: 1.7;
}

body .ic-guide-page .ic-guide-section {
  margin-top: 56px;
}

body .ic-guide-page .ic-guide-article h2 {
  font-size: clamp(29px, 2.8vw, 32px);
  line-height: 1.12;
}

body .ic-guide-page .ic-guide-section-title,
body .ic-guide-page .ic-guide-section-title__icon {
  display: none !important;
}

body .ic-guide-page .ic-guide-calculator-preview {
  margin-top: 0;
  margin-bottom: 30px;
}

body .ic-guide-page .ic-guide-quick-answer {
  margin-bottom: 30px;
}

body .ic-guide-page .ic-guide-stat-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 12px;
}

body .ic-guide-page .ic-guide-stat-tile {
  padding: 13px 12px;
  border: 1px solid rgba(17,122,75,0.15);
  border-radius: 15px;
  background: #f8fcfa;
}

body .ic-guide-page .ic-guide-stat-tile strong {
  display: block;
  color: var(--ic-guide-green);
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

body .ic-guide-page .ic-guide-stat-tile span {
  display: block;
  margin-top: 5px;
  color: var(--ic-guide-muted);
  font-size: 12px;
  line-height: 1.25;
}

body .ic-guide-page .ic-guide-editorial-block {
  margin: 26px 0 6px;
}

body .ic-guide-page .ic-guide-editorial-block h3 {
  margin: 0 0 14px;
  color: #111827;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body .ic-guide-page .ic-guide-comparison__grid,
body .ic-guide-page .ic-guide-deadline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body .ic-guide-page .ic-guide-deadline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body .ic-guide-page .ic-guide-comparison__card,
body .ic-guide-page .ic-guide-deadline-card {
  padding: 18px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 18px;
  background: #ffffff;
}

body .ic-guide-page .ic-guide-comparison__card strong,
body .ic-guide-page .ic-guide-deadline-card strong {
  display: block;
  color: #111827;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui);
  font-size: 16px;
  line-height: 1.3;
}

body .ic-guide-page .ic-guide-comparison__card p,
body .ic-guide-page .ic-guide-deadline-card p {
  margin: 8px 0 0;
  color: var(--ic-guide-muted);
  font-size: 14px;
  line-height: 1.6;
}

body .ic-guide-page .ic-guide-deadline-card strong {
  color: var(--ic-guide-green);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

body .ic-guide-page .ic-guide-deadline-card span {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

body .ic-guide-page .ic-guide-callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--ic-guide-border);
  background: #ffffff;
}

body .ic-guide-page .ic-guide-callout strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui);
  font-size: 15px;
}

body .ic-guide-page .ic-guide-callout p {
  margin: 0;
  color: var(--ic-guide-muted);
  font-size: 15px;
  line-height: 1.65;
}

body .ic-guide-page .ic-guide-callout--info {
  border-color: #bfdbfe;
  background: #eff6ff;
}

body .ic-guide-page .ic-guide-callout--success {
  border-color: rgba(17,122,75,0.20);
  background: #f0fdf4;
}

body .ic-guide-page .ic-guide-callout--warning {
  border-color: #fde68a;
  background: #fffbeb;
}

body .ic-guide-page .ic-guide-steps ol {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
  border: 1px solid var(--ic-guide-border);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

body .ic-guide-page .ic-guide-steps li {
  position: relative;
  counter-increment: guide-step;
  padding: 16px 18px 16px 58px;
  border-top: 1px solid #edf2ef;
}

body .ic-guide-page .ic-guide-steps li:first-child {
  border-top: 0;
}

body .ic-guide-page .ic-guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 18px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ic-guide-green);
  font-size: 12px;
  font-weight: 600;
}

body .ic-guide-page .ic-guide-steps strong,
body .ic-guide-page .ic-guide-steps span {
  display: block;
}

body .ic-guide-page .ic-guide-steps strong {
  color: #111827;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui);
  font-size: 15px;
  line-height: 1.35;
}

body .ic-guide-page .ic-guide-steps span {
  margin-top: 4px;
  color: var(--ic-guide-muted);
  font-size: 14px;
  line-height: 1.55;
}

body .ic-guide-page .ic-guide-faqs {
  margin-top: 54px;
}

body .ic-guide-page .ic-guide-faq-list {
  overflow: hidden;
  border: 1px solid var(--ic-guide-border);
  border-radius: 18px;
  background: #ffffff;
}

body .ic-guide-page .ic-guide-faq {
  border-top: 1px solid #edf2ef;
}

body .ic-guide-page .ic-guide-faq:first-child {
  border-top: 0;
}

body .ic-guide-page .ic-guide-faq summary {
  position: relative;
  padding: 17px 48px 17px 18px;
  color: #111827;
  cursor: pointer;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

body .ic-guide-page .ic-guide-faq summary::-webkit-details-marker {
  display: none;
}

body .ic-guide-page .ic-guide-faq summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ic-guide-green);
  font-size: 22px;
  line-height: 1;
}

body .ic-guide-page .ic-guide-faq[open] summary::after {
  content: '−';
}

body .ic-guide-page .ic-guide-faq p {
  margin: 0;
  padding: 0 18px 17px;
  color: var(--ic-guide-muted);
  font-size: 15px;
  line-height: 1.65;
}

body .ic-guide-page .ic-guide-toc__inner {
  padding-left: 16px;
}

body .ic-guide-page .ic-guide-toc strong {
  color: #64748b;
  font-size: 11px;
}

body .ic-guide-page .ic-guide-toc a {
  position: relative;
  padding: 2px 0 2px 12px;
  border-left: 2px solid transparent;
}

body .ic-guide-page .ic-guide-toc a.is-active {
  border-left-color: var(--ic-guide-green);
  color: var(--ic-guide-green);
  font-weight: 600;
}

body .ic-guide-page .ic-guide-toc--desktop {
  top: 104px;
}

body .ic-guide-page .ic-guide-cta--bottom {
  display: block;
  margin: 58px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

body .ic-guide-page .ic-guide-cta--bottom .ic-guide-cta__copy strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

body .ic-guide-page .ic-guide-cta--bottom .ic-guide-cta__copy span {
  margin: 5px auto 16px;
  max-width: 520px;
  font-size: 16px;
}

body .ic-guide-page .ic-guide-prev-next__card {
  border-color: #e2e8f0;
  box-shadow: none;
}

body .ic-guide-page .ic-guide-prev-next__card span {
  color: #64748b;
  font-size: 11px;
}

body .ic-guide-page .ic-guide-prev-next__card strong {
  font-size: 16px;
}

body .ic-guide-page .ic-guide-card--related {
  min-height: 112px;
  padding: 20px;
}

body .ic-guide-page .ic-guide-card--related .ic-guide-card__label {
  display: none !important;
}

body .ic-guide-page .ic-guide-card-grid--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body .ic-guide-page .ic-guide-more-calculators {
  margin-top: 30px;
  padding-top: 30px;
}

body .ic-guide-page .ic-guide-calculator-chip {
  padding: 12px;
  border-radius: 14px;
}

body .ic-guide-page .ic-guide-calculator-chip > span {
  width: 30px;
  height: 30px;
}

@media (max-width: 1023px) {
  body .ic-guide-page .ic-guide-stat-tiles,
  body .ic-guide-page .ic-guide-deadline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body .ic-guide-page .ic-guide-copy p,
  body .ic-guide-page .ic-guide-copy li {
    font-size: 16px;
  }

  body .ic-guide-page .ic-guide-cta--bottom .ic-guide-btn {
    width: auto;
    min-width: 220px;
  }
}

@media (max-width: 640px) {
  body .ic-guide-page .ic-guide-stat-tiles,
  body .ic-guide-page .ic-guide-comparison__grid,
  body .ic-guide-page .ic-guide-deadline-grid {
    grid-template-columns: 1fr;
  }

  body .ic-guide-page .ic-guide-card-grid--related {
    grid-template-columns: 1fr;
  }
}

/* ===== v3.9.29 guide heading reset =====
   Keep the v3.9.28 editorial blocks, but restore calmer heading scale and neutral heading colour.
*/
body .ic-guide-page .ic-guide-section {
  margin-top: 48px;
}

body .ic-guide-page .ic-guide-article h2,
body .ic-guide-page .ic-guide-hub-cards h2,
body .ic-guide-page .ic-guide-sources h2,
body .ic-guide-page .ic-guide-related h2,
body .ic-guide-page .ic-guide-faqs h2,
body .ic-guide-page .ic-guide-more-calculators h2 {
  color: #111827;
  font-size: clamp(26px, 2.7vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

body .ic-guide-page .ic-guide-editorial-block h3,
body .ic-guide-page .ic-guide-comparison h3,
body .ic-guide-page .ic-guide-deadlines h3,
body .ic-guide-page .ic-guide-steps h3 {
  color: #111827;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

body .ic-guide-page .ic-guide-copy p,
body .ic-guide-page .ic-guide-copy li {
  font-size: 16px;
  line-height: 1.72;
}

@media (max-width: 782px) {
  body .ic-guide-page .ic-guide-article h2,
  body .ic-guide-page .ic-guide-hub-cards h2,
  body .ic-guide-page .ic-guide-sources h2,
  body .ic-guide-page .ic-guide-related h2,
  body .ic-guide-page .ic-guide-faqs h2,
  body .ic-guide-page .ic-guide-more-calculators h2 {
    font-size: clamp(24px, 7vw, 28px);
  }

  body .ic-guide-page .ic-guide-editorial-block h3,
  body .ic-guide-page .ic-guide-comparison h3,
  body .ic-guide-page .ic-guide-deadlines h3,
  body .ic-guide-page .ic-guide-steps h3 {
    font-size: 18px;
  }
}

/* ===== v3.9.30 guide heading calm-down =====
   Keep the guide blocks, but reduce the visual weight of H2/H3/FAQ headings.
*/
body .ic-guide-page .ic-guide-article h2,
body .ic-guide-page .ic-guide-hub-cards h2,
body .ic-guide-page .ic-guide-sources h2,
body .ic-guide-page .ic-guide-related h2,
body .ic-guide-page .ic-guide-faqs h2,
body .ic-guide-page .ic-guide-more-calculators h2,
body .ic-guide-page .ic-guide-section-heading h2,
body .ic-guide-page .ic-guide-block-label h2 {
  color: #1f2937;
  font-size: clamp(23px, 2.35vw, 28px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

body .ic-guide-page .ic-guide-editorial-block h3,
body .ic-guide-page .ic-guide-comparison h3,
body .ic-guide-page .ic-guide-deadlines h3,
body .ic-guide-page .ic-guide-steps h3,
body .ic-guide-page .ic-guide-comparison-card strong,
body .ic-guide-page .ic-guide-deadline-card strong {
  color: #243246;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.012em;
}

body .ic-guide-page .ic-guide-faq summary {
  color: #243246;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

body .ic-guide-page .ic-guide-quick-answer h2,
body .ic-guide-page .ic-guide-sources h2,
body .ic-guide-page .ic-guide-takeaways h2 {
  font-size: clamp(22px, 2.15vw, 26px);
  font-weight: 600;
}

@media (max-width: 782px) {
  body .ic-guide-page .ic-guide-article h2,
  body .ic-guide-page .ic-guide-hub-cards h2,
  body .ic-guide-page .ic-guide-sources h2,
  body .ic-guide-page .ic-guide-related h2,
  body .ic-guide-page .ic-guide-faqs h2,
  body .ic-guide-page .ic-guide-more-calculators h2,
  body .ic-guide-page .ic-guide-section-heading h2,
  body .ic-guide-page .ic-guide-block-label h2 {
    font-size: clamp(22px, 6.2vw, 26px);
  }

  body .ic-guide-page .ic-guide-editorial-block h3,
  body .ic-guide-page .ic-guide-comparison h3,
  body .ic-guide-page .ic-guide-deadlines h3,
  body .ic-guide-page .ic-guide-steps h3,
  body .ic-guide-page .ic-guide-comparison-card strong,
  body .ic-guide-page .ic-guide-deadline-card strong {
    font-size: 16px;
  }

  body .ic-guide-page .ic-guide-faq summary {
    font-size: 14.5px;
  }
}

/* ===== v3.9.31 guide typography softening =====
   Final calm-down pass: closer to Aftertax-style article rhythm with smaller, softer headings.
   This only changes guide typography weight/scale/colour and FAQ text tone.
*/
body .ic-guide-page {
  --ic-guide-text: #263244;
  --ic-guide-muted: #657386;
}

body .ic-guide-page .ic-guide-article h2,
body .ic-guide-page .ic-guide-hub-cards h2,
body .ic-guide-page .ic-guide-sources h2,
body .ic-guide-page .ic-guide-related h2,
body .ic-guide-page .ic-guide-faqs h2,
body .ic-guide-page .ic-guide-more-calculators h2,
body .ic-guide-page .ic-guide-section-heading h2,
body .ic-guide-page .ic-guide-block-label h2 {
  color: #263244;
  font-size: clamp(20px, 1.95vw, 24px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

body .ic-guide-page .ic-guide-quick-answer h2,
body .ic-guide-page .ic-guide-sources h2,
body .ic-guide-page .ic-guide-takeaways h2 {
  color: #263244;
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

body .ic-guide-page .ic-guide-editorial-block h3,
body .ic-guide-page .ic-guide-comparison h3,
body .ic-guide-page .ic-guide-deadlines h3,
body .ic-guide-page .ic-guide-steps h3,
body .ic-guide-page .ic-guide-comparison-card strong,
body .ic-guide-page .ic-guide-deadline-card strong {
  color: #2f3b4f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

body .ic-guide-page .ic-guide-copy p,
body .ic-guide-page .ic-guide-copy li,
body .ic-guide-page .ic-guide-quick-answer li,
body .ic-guide-page .ic-guide-faq p,
body .ic-guide-page .ic-guide-card span,
body .ic-guide-page .ic-guide-calculator-preview p {
  color: #657386;
}

body .ic-guide-page .ic-guide-card strong,
body .ic-guide-page .ic-guide-prev-next__card strong,
body .ic-guide-page .ic-guide-calculator-chip strong,
body .ic-guide-page .ic-guide-comparison__card strong,
body .ic-guide-page .ic-guide-steps strong {
  color: #263244;
  font-weight: 600;
}

body .ic-guide-page .ic-guide-faq summary {
  color: #2f3b4f;
  font-family: var(--ic-font-body, var(--ic-font, 'Inter', 'Outfit', ui-sans-serif, system-ui));
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

body .ic-guide-page .ic-guide-block-label h2 {
  text-transform: none;
  letter-spacing: -0.01em;
}

body .ic-guide-page .ic-guide-card strong {
  font-size: 15px;
  line-height: 1.36;
}

body .ic-guide-page .ic-guide-card--related {
  padding: 18px;
}

@media (max-width: 782px) {
  body .ic-guide-page .ic-guide-article h2,
  body .ic-guide-page .ic-guide-hub-cards h2,
  body .ic-guide-page .ic-guide-sources h2,
  body .ic-guide-page .ic-guide-related h2,
  body .ic-guide-page .ic-guide-faqs h2,
  body .ic-guide-page .ic-guide-more-calculators h2,
  body .ic-guide-page .ic-guide-section-heading h2,
  body .ic-guide-page .ic-guide-block-label h2 {
    font-size: clamp(20px, 5.4vw, 24px);
  }

  body .ic-guide-page .ic-guide-quick-answer h2,
  body .ic-guide-page .ic-guide-sources h2,
  body .ic-guide-page .ic-guide-takeaways h2 {
    font-size: clamp(18px, 5vw, 21px);
  }

  body .ic-guide-page .ic-guide-editorial-block h3,
  body .ic-guide-page .ic-guide-comparison h3,
  body .ic-guide-page .ic-guide-deadlines h3,
  body .ic-guide-page .ic-guide-steps h3,
  body .ic-guide-page .ic-guide-comparison-card strong,
  body .ic-guide-page .ic-guide-deadline-card strong {
    font-size: 15.5px;
  }

  body .ic-guide-page .ic-guide-faq summary {
    font-size: 14px;
  }
}


/* ===== v3.9.32 guide hub sidebar + alignment refinement =====
   Use one shared shell width so hero content, article column, and sidebar start from the same left edge.
   The main /guides/ page now also uses the same desktop sidebar rhythm as single guide pages.
*/
body .ic-guide-page {
  --ic-guide-shell-width: 1200px;
  --ic-guide-article-width: 760px;
  --ic-guide-sidebar-width: 220px;
  --ic-guide-layout-gap: 44px;
}

body .ic-guide-page .ic-guide-container--hero,
body .ic-guide-page .ic-guide-container--with-toc {
  width: min(100% - 32px, var(--ic-guide-shell-width));
}

body .ic-guide-page .ic-guide-layout--with-toc {
  grid-template-columns: minmax(0, var(--ic-guide-article-width)) var(--ic-guide-sidebar-width);
  gap: var(--ic-guide-layout-gap);
  justify-content: start;
}

body .ic-guide-page .ic-guide-container--content,
body .ic-guide-page .ic-guide-layout--single {
  max-width: var(--ic-guide-article-width);
}

body .ic-guide-page .ic-guide-page--guides-index .ic-guide-toc--desktop,
body .ic-guide-page--guides-index .ic-guide-toc--desktop {
  display: block;
}

@media (max-width: 1023px) {
  body .ic-guide-page .ic-guide-container--hero,
  body .ic-guide-page .ic-guide-container--with-toc {
    width: min(100% - 32px, var(--ic-guide-article-width));
  }

  body .ic-guide-page .ic-guide-layout--with-toc {
    display: block;
  }
}

@media (max-width: 640px) {
  body .ic-guide-page .ic-guide-container--hero,
  body .ic-guide-page .ic-guide-container--with-toc,
  body .ic-guide-page .ic-guide-container--content {
    width: min(100% - 24px, var(--ic-guide-article-width));
  }
}

/* Net salary guide helper blocks */
.ic-guide-formula {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 122, 75, 0.14);
  border-radius: 14px;
  background: rgba(17, 122, 75, 0.045);
  color: #243244;
  font-family: var(--ic-font-body, Inter, system-ui, sans-serif);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* CPT editor-friendly guide blocks */
body .ic-guide-page .ic-guide-copy :where(h3, h4) {
  margin: 24px 0 10px;
  color: #111827;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui, sans-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body .ic-guide-page .ic-guide-copy h3 {
  font-size: clamp(20px, 2vw, 24px);
}

body .ic-guide-page .ic-guide-copy h4 {
  font-size: 18px;
}

body .ic-guide-page .ic-guide-copy :where(ul, ol) {
  margin: 0 0 18px 22px;
  padding: 0;
}

body .ic-guide-page .ic-guide-copy li + li {
  margin-top: 7px;
}

body .ic-guide-page .ic-guide-copy .wp-block-table,
body .ic-guide-page .ic-guide-copy .ic-guide-table {
  width: 100%;
  margin: 22px 0;
  overflow-x: auto;
}

body .ic-guide-page .ic-guide-copy table,
body .ic-guide-page .ic-guide-copy .ic-guide-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

body .ic-guide-page .ic-guide-copy th,
body .ic-guide-page .ic-guide-copy td {
  padding: 13px 15px;
  border-bottom: 1px solid #e7eee9;
  text-align: left;
  vertical-align: top;
}

body .ic-guide-page .ic-guide-copy th {
  background: #f1f8f4;
  color: #0f5132;
  font-weight: 600;
}

body .ic-guide-page .ic-guide-copy tr:last-child td {
  border-bottom: 0;
}

body .ic-guide-page .ic-guide-copy .ic-guide-callout,
body .ic-guide-page .ic-guide-copy .ic-guide-example,
body .ic-guide-page .ic-guide-copy .ic-guide-checklist {
  margin: 24px 0;
  padding: 19px 22px;
  border: 1px solid rgba(17, 122, 75, 0.16);
  border-left: 4px solid var(--ic-guide-green);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
}

body .ic-guide-page .ic-guide-copy .ic-guide-callout {
  background: #f5fbf7;
}

body .ic-guide-page .ic-guide-copy .ic-guide-example {
  border-left-color: #2563eb;
  background: #f5f8ff;
}

body .ic-guide-page .ic-guide-copy .ic-guide-checklist {
  border-left-color: #7c3aed;
  background: #faf7ff;
}

body .ic-guide-page .ic-guide-copy .ic-guide-callout > :first-child,
body .ic-guide-page .ic-guide-copy .ic-guide-example > :first-child,
body .ic-guide-page .ic-guide-copy .ic-guide-checklist > :first-child {
  margin-top: 0;
}

body .ic-guide-page .ic-guide-copy .ic-guide-callout > :last-child,
body .ic-guide-page .ic-guide-copy .ic-guide-example > :last-child,
body .ic-guide-page .ic-guide-copy .ic-guide-checklist > :last-child {
  margin-bottom: 0;
}

/* ===== Guide hub cleanup / library UX ===== */
body .ic-guide-page--hub .ic-guide-main {
  padding-top: 30px;
}

body .ic-guide-page .ic-guide-container--hub {
  width: min(100% - 32px, 1200px);
}

body .ic-guide-page .ic-guide-layout--hub {
  max-width: none;
  margin-inline: auto;
}

body .ic-guide-page--hub .ic-guide-article {
  width: 100%;
}

body .ic-guide-page .ic-guide-toolbar {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 6;
  border-bottom: 1px solid rgba(17, 122, 75, 0.10);
  background: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(12px);
}

body .ic-guide-page .ic-guide-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0;
}

body .ic-guide-page .ic-guide-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 420px;
  max-width: 520px;
}

body .ic-guide-page .ic-guide-search span {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  color: var(--ic-guide-green);
  pointer-events: none;
}

body .ic-guide-page .ic-guide-search svg {
  width: 18px;
  height: 18px;
}

body .ic-guide-page .ic-guide-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px 0 46px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 16px;
  background: #fff;
  color: var(--ic-guide-text);
  font: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

body .ic-guide-page .ic-guide-search input:focus {
  outline: 2px solid rgba(17, 122, 75, 0.16);
  border-color: rgba(17, 122, 75, 0.35);
}

body .ic-guide-page .ic-guide-filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 5px;
  scrollbar-width: none;
}

body .ic-guide-page .ic-guide-filter-pills::-webkit-scrollbar {
  display: none;
}

body .ic-guide-page .ic-guide-filter-pill {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ic-guide-border);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  cursor: pointer;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.035);
}

body .ic-guide-page .ic-guide-filter-pill:hover,
body .ic-guide-page .ic-guide-filter-pill.is-active {
  border-color: rgba(17, 122, 75, 0.26);
  background: #ecf8f1;
  color: var(--ic-guide-green-dark);
}

body .ic-guide-page .ic-guide-section-heading--split {
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

body .ic-guide-page .ic-guide-section-heading--split p {
  max-width: 540px;
  margin: 6px 0 0;
  color: var(--ic-guide-muted);
  font-size: 15px;
  line-height: 1.58;
}

body .ic-guide-page .ic-guide-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(17, 122, 75, 0.14);
  border-radius: 999px;
  background: #effaf3;
  color: var(--ic-guide-green-dark);
  font-family: var(--ic-font-display, 'Outfit', 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

body .ic-guide-page .ic-guide-featured {
  margin-top: 46px;
}

body .ic-guide-page--hub .ic-guide-section {
  max-width: 760px;
  margin-top: 42px;
}

body .ic-guide-page--hub.ic-guide-page--guides-index .ic-guide-section {
  display: none;
}

body .ic-guide-page .ic-guide-card.is-hidden-by-guide-filter {
  display: none;
}

body .ic-guide-page .ic-guide-card--featured {
  min-height: 132px;
}

body .ic-guide-page .ic-guide-mini-link {
  flex: 0 0 auto;
  color: var(--ic-guide-green-dark);
  font-weight: 600;
  text-decoration: none;
}

body .ic-guide-page .ic-guide-mini-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body .ic-guide-page .ic-guide-empty-state {
  display: none;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px dashed rgba(17, 122, 75, 0.28);
  border-radius: 16px;
  background: #fff;
  color: var(--ic-guide-muted);
  font-size: 15px;
}

body .ic-guide-page .ic-guide-empty-state.is-visible {
  display: block;
}

@media (max-width: 900px) {
  body .ic-guide-page .ic-guide-toolbar__inner {
    align-items: stretch;
    flex-direction: column;
  }

  body .ic-guide-page .ic-guide-search {
    max-width: none;
    flex-basis: auto;
  }

  body .ic-guide-page .ic-guide-filter-pills {
    width: 100%;
  }

  body .ic-guide-page .ic-guide-section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ===== v4.0.9 guides directory visual polish =====
   Keep guide hubs as discovery pages, with toolbar sizing and pill rhythm matching the calculators directory.
*/
body .ic-guide-page--hub .ic-guide-hero {
  padding: 22px 0 40px;
}

body .ic-guide-page--hub .ic-guide-kicker {
  gap: 8px;
  margin-bottom: 12px;
}

body .ic-guide-page--hub .ic-guide-kicker span {
  min-height: 27px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.052em;
}

body .ic-guide-page--hub .ic-guide-hero h1 {
  max-width: 720px;
  font-size: clamp(32px, 3.75vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.034em;
}

body .ic-guide-page--hub .ic-guide-hero p {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(15.5px, 1.45vw, 17px);
  line-height: 1.66;
}

body .ic-guide-page .ic-guide-toolbar {
  border-bottom: 1px solid rgba(17, 122, 75, 0.09);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

body .ic-guide-page .ic-guide-toolbar__inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  justify-content: initial;
  gap: 12px;
  min-width: 0;
  padding: 11px 0;
}

body .ic-guide-page .ic-guide-search {
  display: block;
  flex: initial;
  max-width: none;
  min-width: 0;
}

body .ic-guide-page .ic-guide-search span {
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  line-height: 1;
}

body .ic-guide-page .ic-guide-search svg {
  width: 16px;
  height: 16px;
}

body .ic-guide-page .ic-guide-search input {
  min-height: 38px;
  padding: 0 12px 0 36px;
  border-radius: 10px;
  color: #111827;
  font: 500 14px/1.2 var(--ic-font-body, Inter, system-ui, sans-serif);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

body .ic-guide-page .ic-guide-search input:focus {
  outline: 3px solid rgba(22, 163, 74, 0.14);
  border-color: rgba(21, 128, 61, 0.42);
}

body .ic-guide-page .ic-guide-filter-pills {
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  padding: 2px 18px 2px 0;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
}

body .ic-guide-page .ic-guide-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  color: #415065;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

body .ic-guide-page .ic-guide-filter-pill:hover {
  transform: translateY(-1px);
}

body .ic-guide-page .ic-guide-filter-pill:hover,
body .ic-guide-page .ic-guide-filter-pill.is-active {
  border-color: rgba(21, 128, 61, 0.34);
  background: #ecfdf3;
  color: #15803d;
}

body .ic-guide-page .ic-guide-filter-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(17, 122, 75, 0.08);
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

body .ic-guide-page .ic-guide-section-heading--split {
  margin-bottom: 18px;
}

body .ic-guide-page .ic-guide-section-heading--split h2,
body .ic-guide-page--hub .ic-guide-hub-cards h2,
body .ic-guide-page--hub .ic-guide-featured h2,
body .ic-guide-page--hub .ic-guide-more-calculators h2 {
  color: #1f2937;
  font-size: clamp(21px, 1.9vw, 25px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

body .ic-guide-page .ic-guide-section-heading--split p {
  color: #526173;
  font-size: 14.5px;
  line-height: 1.62;
}

body .ic-guide-page .ic-guide-eyebrow {
  margin-bottom: 9px;
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .052em;
}

body .ic-guide-page--hub .ic-guide-main {
  padding-top: 34px;
}

body .ic-guide-page--hub .ic-guide-hub-cards,
body .ic-guide-page .ic-guide-featured {
  margin-top: 42px;
}

body .ic-guide-page--hub .ic-guide-hub-cards:first-child {
  margin-top: 0;
}

body .ic-guide-page--hub .ic-guide-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body .ic-guide-page .ic-guide-card {
  min-height: 116px;
  border-color: rgba(203, 213, 225, 0.86);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.025);
}

body .ic-guide-page .ic-guide-card:hover {
  border-color: rgba(17,122,75,0.30);
  box-shadow: 0 16px 34px rgba(15,23,42,0.065);
}

body .ic-guide-page .ic-guide-card strong {
  color: #172033;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.34;
}

body .ic-guide-page .ic-guide-card__description,
body .ic-guide-page .ic-guide-card span:not(.ic-guide-card__icon):not(.ic-guide-card__arrow):not(.ic-guide-card__label) {
  color: #4f5f72;
  font-size: 14px;
  line-height: 1.58;
}

body .ic-guide-page .ic-guide-card__label {
  color: #0f7a4f !important;
  font-size: 10.5px !important;
  font-weight: 600;
  letter-spacing: 0.055em;
}

body .ic-guide-page .ic-guide-more-calculators--hub {
  margin-top: 44px;
  padding-top: 36px;
}

body .ic-guide-page .ic-guide-mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(17, 122, 75, 0.16);
  border-radius: 999px;
  background: #ffffff;
  font-size: 13px;
}

body .ic-guide-page .ic-guide-mini-link:hover {
  background: #ecfdf3;
  text-decoration: none;
}

@media (max-width: 1100px) {
  body .ic-guide-page--hub .ic-guide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body .ic-guide-page .ic-guide-toolbar__inner {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  body .ic-guide-page .ic-guide-filter-pills {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body .ic-guide-page--hub .ic-guide-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body .ic-guide-page--hub .ic-guide-hero {
    padding: 20px 0 34px;
  }

  body .ic-guide-page--hub .ic-guide-hero h1 {
    font-size: clamp(29px, 8.5vw, 38px);
  }
}

/* ===== v4.0.12 guide hero consistency =====
   Match /guides/, guide collection hubs, and single guide articles to the same compact hero rhythm.
*/
body .ic-guide-page .ic-guide-hero,
body .ic-guide-page--hub .ic-guide-hero {
  padding: 22px 0 40px;
}

body .ic-guide-page .ic-guide-kicker,
body .ic-guide-page--hub .ic-guide-kicker {
  gap: 8px;
  margin-bottom: 12px;
}

body .ic-guide-page .ic-guide-kicker span,
body .ic-guide-page--hub .ic-guide-kicker span {
  min-height: 27px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.052em;
}

body .ic-guide-page .ic-guide-hero h1,
body .ic-guide-page--hub .ic-guide-hero h1 {
  max-width: 760px;
  font-size: clamp(32px, 3.75vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.034em;
}

body .ic-guide-page .ic-guide-hero p,
body .ic-guide-page--hub .ic-guide-hero p {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(15.5px, 1.45vw, 17px);
  line-height: 1.66;
}

body .ic-guide-page .ic-guide-toolbar {
  border-top: 1px solid rgba(17, 122, 75, 0.06);
}

body .ic-guide-page--article .ic-guide-main {
  padding-top: 34px;
}

@media (max-width: 640px) {
  body .ic-guide-page .ic-guide-hero,
  body .ic-guide-page--hub .ic-guide-hero {
    padding: 20px 0 34px;
  }

  body .ic-guide-page .ic-guide-hero h1,
  body .ic-guide-page--hub .ic-guide-hero h1 {
    font-size: clamp(29px, 8.5vw, 38px);
  }
}


/* v4.0.24 — guide typography refinement: keep guide titles/headings visually lighter */
body .ic-guide-page :where(h1, h2, h3),
body .ic-guide-page .ic-guide-hero h1,
body .ic-guide-page--hub .ic-guide-hero h1,
body .ic-guide-page .ic-guide-article h2,
body .ic-guide-page .ic-guide-hub-cards h2,
body .ic-guide-page .ic-guide-sources h2,
body .ic-guide-page .ic-guide-related h2,
body .ic-guide-page .ic-guide-faqs h2,
body .ic-guide-page .ic-guide-more-calculators h2,
body .ic-guide-page .ic-guide-section-heading h2,
body .ic-guide-page .ic-guide-block-label h2,
body .ic-guide-page .ic-guide-card strong,
body .ic-guide-page .ic-guide-prev-next__card strong,
body .ic-guide-page .ic-guide-calculator-chip strong,
body .ic-guide-page .ic-guide-comparison__card strong,
body .ic-guide-page .ic-guide-steps strong {
  font-weight: 600;
}

/* v4.0.25 — guides title/card max weight refinement */
body .ic-guide-page :where(
    .ic-guide-breadcrumbs [aria-current="page"],
    .ic-guide-kicker span,
    .ic-guide-hero h1,
    .ic-guide-article h2,
    .ic-guide-copy h3,
    .ic-guide-copy h4,
    .ic-guide-block-label h2,
    .ic-guide-section-heading h2,
    .ic-guide-card strong,
    .ic-guide-card__label,
    .ic-guide-sources h2,
    .ic-guide-sources a,
    .ic-guide-cta__copy strong,
    .ic-guide-btn,
    .ic-guide-calculator-preview h2,
    .ic-guide-eyebrow,
    .ic-guide-prev-next__card span,
    .ic-guide-prev-next__card strong,
    .ic-guide-calculator-chip strong,
    .ic-guide-comparison__card strong,
    .ic-guide-deadline-card span,
    .ic-guide-callout strong,
    .ic-guide-table th,
    .ic-guide-copy th,
    .ic-guide-toc strong,
    .ic-guide-toc a.is-active,
    .ic-guide-toc--mobile summary,
    .ic-guide-faq summary,
    .ic-guide-filter-pill,
    .ic-guide-filter-pill__count,
    .ic-guide-mini-link
),
body .ic-guide-page--hub :where(
    .ic-guide-hero h1,
    .ic-guide-kicker span,
    .ic-guide-hub-cards h2,
    .ic-guide-featured h2,
    .ic-guide-more-calculators h2
) {
    font-weight: 600;
}

/* =======================================================================
   v4.0.38 — Canonical guide FAQ system
   Fixes clipped/missing FAQ icons without stacking duplicate fallbacks.
   ======================================================================= */
body .ic-guide-page .ic-guide-faqs-title,
body .ic-guide-page .ic-guide-faqs h2,
body .ic-guide-page .ic-guide-faqs .ic-guide-faqs-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 16px !important;
  color: #263244 !important;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui) !important;
  font-size: clamp(22px, 2.2vw, 28px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

body .ic-guide-page .ic-guide-faqs-title__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  color: #15803d !important;
  background: transparent !important;
}

body .ic-guide-page .ic-guide-faqs-title__icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  color: inherit !important;
  stroke: currentColor !important;
}

body .ic-guide-page .ic-guide-faq-list {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden !important;
  border: 1px solid var(--ic-guide-border, #e2e8f0) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
}

body .ic-guide-page details.ic-guide-faq {
  margin: 0 !important;
  border: 0 !important;
  border-top: 1px solid #edf2ef !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .ic-guide-page details.ic-guide-faq:first-child {
  border-top: 0 !important;
}

body .ic-guide-page details.ic-guide-faq > summary {
  box-sizing: border-box !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 15px 18px !important;
  color: #263244 !important;
  cursor: pointer !important;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  list-style: none !important;
  transition: color .16s ease, background-color .16s ease !important;
}

body .ic-guide-page details.ic-guide-faq > summary::-webkit-details-marker { display: none !important; }
body .ic-guide-page details.ic-guide-faq > summary::marker { content: '' !important; }
body .ic-guide-page details.ic-guide-faq > summary::after { content: none !important; display: none !important; }

body .ic-guide-page details.ic-guide-faq > summary:hover {
  color: #15803d !important;
  background: #f8fcfa !important;
}

body .ic-guide-page details.ic-guide-faq > summary .ic-faq-question-text {
  display: block !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  color: inherit !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

body .ic-guide-page details.ic-guide-faq > summary .ic-faq-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  margin-left: auto !important;
  color: #15803d !important;
  font-family: var(--ic-font-display, 'Outfit', 'Inter', ui-sans-serif, system-ui) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  pointer-events: none !important;
}

body .ic-guide-page details.ic-guide-faq > summary .ic-faq-toggle-plus,
body .ic-guide-page details.ic-guide-faq > summary .ic-guide-faq__toggle-plus {
  display: inline !important;
}

body .ic-guide-page details.ic-guide-faq > summary .ic-faq-toggle-minus,
body .ic-guide-page details.ic-guide-faq > summary .ic-guide-faq__toggle-minus {
  display: none !important;
}

body .ic-guide-page details.ic-guide-faq[open] > summary .ic-faq-toggle-plus,
body .ic-guide-page details.ic-guide-faq[open] > summary .ic-guide-faq__toggle-plus {
  display: none !important;
}

body .ic-guide-page details.ic-guide-faq[open] > summary .ic-faq-toggle-minus,
body .ic-guide-page details.ic-guide-faq[open] > summary .ic-guide-faq__toggle-minus {
  display: inline !important;
}

body .ic-guide-page details.ic-guide-faq > p {
  margin: -2px 0 0 !important;
  padding: 0 48px 15px 18px !important;
  color: var(--ic-guide-muted, #475569) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
}

@media (max-width: 700px) {
  body .ic-guide-page .ic-guide-faqs-title,
  body .ic-guide-page .ic-guide-faqs h2,
  body .ic-guide-page .ic-guide-faqs .ic-guide-faqs-title {
    gap: 8px !important;
    font-size: 22px !important;
  }

  body .ic-guide-page .ic-guide-faqs-title__icon {
    flex-basis: 20px !important;
    width: 20px !important;
    height: 20px !important;
  }

  body .ic-guide-page .ic-guide-faqs-title__icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  body .ic-guide-page details.ic-guide-faq > summary {
    gap: 12px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
  }

  body .ic-guide-page details.ic-guide-faq > summary .ic-faq-toggle {
    flex-basis: 20px !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 19px !important;
  }

  body .ic-guide-page details.ic-guide-faq > p {
    padding: 0 16px 14px !important;
    font-size: 14px !important;
  }
}


/* v4.0.44 — Guide table wrapper/table separation
   The wrapper owns the outside border. Nested tables keep only internal row/cell lines. */
body .ic-guide-page :where(.ic-guide-table-wrap, figure.wp-block-table, figure.ic-guide-table) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--ic-guide-border, #dbe5df);
  border-radius: 16px;
  background: #fff;
}

body .ic-guide-page :where(.ic-guide-table-wrap, figure.wp-block-table, figure.ic-guide-table) > table,
body .ic-guide-page :where(.ic-guide-table-wrap, figure.wp-block-table, figure.ic-guide-table) table {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/* v4.0.52 — removed stale v4.0.50 pseudo FAQ toggle guard.
   Guide FAQs now use the real .ic-faq-toggle-plus / .ic-faq-toggle-minus spans above. */
