/* =========================================================
   Irish Calculators - Plugin Homepage
   Shortcode: [ic_homepage]
   ========================================================= */

.ic-homepage {
  --ic-home-bg: #fafbfa;
  --ic-home-section: #fcfcfc;
  --ic-home-soft: #f9faf9;
  --ic-home-green: #1f8f4e;
  --ic-home-green-dark: #157347;
  --ic-home-green-text: #176839;
  --ic-home-green-soft: #eaf7ef;
  --ic-home-icon-bg: #e8f2ec;
  --ic-home-text: #1e2430;
  --ic-home-muted: #667085;
  --ic-home-border: #e6eae7;
  --ic-home-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  background: var(--ic-home-bg);
  color: var(--ic-home-text);
  font-family: inherit;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.ic-homepage * { box-sizing: border-box; }

/* Break the homepage shortcode out of Astra/Gutenberg content containers. */
.entry-content > .ic-homepage,
.wp-block-shortcode > .ic-homepage,
.ast-article-single .entry-content > .ic-homepage {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ast-article-single:has(.ic-homepage),
.ast-separate-container .ast-article-single:has(.ic-homepage),
.site-content .ast-container:has(.ic-homepage) {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.ic-home-wrap {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
}

.ic-home-hero {
  background: #fafbfa;
  padding: 64px 0 24px;
}

.ic-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

.ic-home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ic-home-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ic-home-text);
  font-size: clamp(42px, 5.15vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
}

.ic-home-hero__intro {
  max-width: 520px;
  margin: 0;
  color: var(--ic-home-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.ic-home-hero__trust {
  margin: 0;
  max-width: 520px;
  color: #7b8794;
  font-size: 13px;
  line-height: 1.6;
}

.ic-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ic-home-actions--center { justify-content: center; }

.ic-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid var(--ic-home-border);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ic-home-btn:hover { transform: translateY(-1px); }

.ic-home-btn--primary {
  color: #fff !important;
  background: var(--ic-home-green);
  border-color: var(--ic-home-green);
}

.ic-home-btn--primary:hover {
  color: #fff !important;
  background: var(--ic-home-green-dark);
  border-color: var(--ic-home-green-dark);
}

.ic-home-btn--secondary {
  color: var(--ic-home-text) !important;
  background: #fafbfa;
  border-color: #e2e2e2;
}

.ic-home-btn--secondary:hover {
  color: #fff !important;
  background: var(--ic-home-green);
  border-color: var(--ic-home-green);
}

.ic-home-hero__visual {
  position: relative;
  min-height: 360px;
  padding-left: 40px;
}

.ic-home-calculator-card {
  position: absolute;
  right: 18px;
  top: 68px;
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--ic-home-border);
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 10, 15, 0.1);
}

.ic-home-calculator-card__head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ic-home-calculator-card__head strong,
.ic-home-calculator-card__head small {
  display: block;
}

.ic-home-calculator-card__head strong {
  color: var(--ic-home-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.ic-home-calculator-card__head small {
  color: var(--ic-home-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ic-home-calculator-card__icon,
.ic-home-mini-card__icon,
.ic-home-card__icon,
.ic-home-mini-heading__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--ic-home-green);
  background: var(--ic-home-icon-bg);
}

.ic-home-calculator-card__icon { width: 38px; height: 38px; border-radius: 10px; }
.ic-home-card__icon { width: 45px; height: 45px; border-radius: 10px; }

.ic-home-icon-svg { width: 22px; height: 22px; }

.ic-home-skeleton {
  display: block;
  height: 42px;
  border-radius: 10px;
  background: #f1f3f2;
}

.ic-home-skeleton--green { height: 44px; background: var(--ic-home-green); }

.ic-home-mini-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 0;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--ic-home-border);
  border-radius: 14px;
  box-shadow: 0 2px 5px rgba(0, 10, 15, 0.1);
}

.ic-home-mini-card--tax { right: 0; top: 8px; width: 160px; transform: rotate(2deg); }
.ic-home-mini-card--takehome { left: 0; bottom: 55px; width: 200px; }

.ic-home-mini-card__icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.ic-home-mini-card__icon .ic-home-icon-svg { width: 17px; height: 17px; }
.ic-home-mini-card__amount { color: var(--ic-home-text); font-size: 20px; font-weight: 700; line-height: 1.1; }
.ic-home-mini-card__label { color: var(--ic-home-muted); font-size: 12px; line-height: 1.5; }

.ic-home-quick {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
}

.ic-home-quick__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.ic-home-quick__label {
  color: var(--ic-home-muted);
  font-size: 14px;
  font-weight: 500;
}

.ic-home-quick a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--ic-home-border);
  background: var(--ic-home-green-soft);
  color: var(--ic-home-green-text) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none !important;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ic-home-quick a:hover { background: var(--ic-home-green); color: #fff !important; border-color: var(--ic-home-green); }

.ic-home-section {
  padding: 72px 0 80px;
}

.ic-home-section--featured,
.ic-home-section--popular,
.ic-home-section--guides,
.ic-home-section--result-note { background: #fcfcfc; }
.ic-home-section--categories,
.ic-home-section--why,
.ic-home-section--cta { background: #f9faf9; }
.ic-home-section--why { background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%); }
.ic-home-section--helps { background: #f9faf9; }

.ic-home-section-head {
  display: flex;
  gap: 16px;
  margin: 0 auto 40px;
}

.ic-home-section-head--center {
  max-width: 760px;
  justify-content: center;
  text-align: center;
}

.ic-home-section-head--split {
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.ic-home-section-head h2,
.ic-home-mini-heading h2,
.ic-home-note-card h2,
.ic-home-cta h2 {
  margin: 0;
  color: var(--ic-home-text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.ic-home-section--featured .ic-home-section-head h2,
.ic-home-section--categories .ic-home-section-head h2 {
  font-size: 34px;
}

.ic-home-section-head p,
.ic-home-mini-heading p,
.ic-home-cta p {
  margin: 8px 0 0;
  color: var(--ic-home-muted);
  font-size: 16px;
  line-height: 1.6;
}

.ic-home-text-link {
  align-self: center;
  color: var(--ic-home-green) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}

.ic-home-text-link:hover { color: var(--ic-home-green-dark) !important; }

.ic-home-card-grid,
.ic-home-popular-grid,
.ic-home-feature-grid {
  display: grid;
  gap: 24px;
}

.ic-home-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ic-home-feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ic-home-popular-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

.ic-home-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ic-home-directory-card {
  position: relative;
  display: flex;
  gap: 14px;
  min-height: 162px;
  padding: 18px 18px 46px;
  border: 1px solid var(--ic-home-border);
  border-left: 3px solid rgba(21, 128, 61, 0.22);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ic-home-directory-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 128, 61, 0.28);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.ic-home-directory-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: #ecfdf3;
  color: #15803d;
}

.ic-home-directory-card__icon svg {
  width: 20px;
  height: 20px;
}

.ic-home-directory-card__body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 7px;
}

.ic-home-directory-card__meta {
  color: #15803d;
  font-family: var(--ic-font-display, Outfit, system-ui, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ic-home-directory-card strong {
  color: #111827;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.ic-home-directory-card__body > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--ic-home-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.ic-home-directory-card__badge {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(236, 253, 243, 0.88);
  color: #166534;
  border: 1px solid #d9eadf;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
}

.ic-home-directory-card__foot {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ic-home-directory-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #15803d;
  font-family: var(--ic-font-display, Outfit, system-ui, sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.ic-home-directory-card:hover .ic-home-directory-card__cta {
  background: #15803d;
  color: #fff;
}

.ic-home-directory-card[data-category="salary"] { border-left-color: rgba(37, 99, 235, 0.55); }
.ic-home-directory-card[data-category="housing"] { border-left-color: rgba(5, 150, 105, 0.55); }
.ic-home-directory-card[data-category="personal-finance"] { border-left-color: rgba(124, 58, 237, 0.45); }
.ic-home-directory-card[data-category="tax"] { border-left-color: rgba(13, 148, 136, 0.48); }
.ic-home-directory-card[data-category="salary"] .ic-home-directory-card__icon { background: #eff6ff; color: #2563eb; }
.ic-home-directory-card[data-category="housing"] .ic-home-directory-card__icon { background: #ecfdf5; color: #059669; }
.ic-home-directory-card[data-category="personal-finance"] .ic-home-directory-card__icon { background: #f5f3ff; color: #7c3aed; }
.ic-home-directory-card[data-category="tax"] .ic-home-directory-card__icon { background: #ecfeff; color: #0f766e; }
.ic-home-directory-card[data-category="salary"] .ic-home-directory-card__meta { color: #2563eb; }
.ic-home-directory-card[data-category="housing"] .ic-home-directory-card__meta { color: #047857; }
.ic-home-directory-card[data-category="personal-finance"] .ic-home-directory-card__meta { color: #7c3aed; }
.ic-home-directory-card[data-category="tax"] .ic-home-directory-card__meta { color: #0f766e; }

.ic-home-card,
.ic-home-category-card,
.ic-home-guide-card,
.ic-home-popular-card,
.ic-home-feature {
  border: 1px solid var(--ic-home-border);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none !important;
}

.ic-home-card,
.ic-home-guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.ic-home-card:hover,
.ic-home-guide-card:hover,
.ic-home-category-card:hover,
.ic-home-popular-card:hover { box-shadow: var(--ic-home-shadow); transform: translateY(-1px); border-color: #d6dfda; }

.ic-home-card strong,
.ic-home-guide-card strong,
.ic-home-category-card strong,
.ic-home-popular-card strong,
.ic-home-feature strong {
  color: var(--ic-home-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.ic-home-card--calculator strong { font-size: 18px; }
.ic-home-card span:not(.ic-home-card__icon),
.ic-home-guide-card span:not(.ic-home-card__icon):not(.ic-home-guide-card__tag),
.ic-home-feature span:not(.ic-home-feature__icon) {
  color: var(--ic-home-muted);
  font-size: 15px;
  line-height: 1.5;
}

.ic-home-card em {
  margin-top: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #15803d;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.ic-home-card__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #f0f8f3;
  color: #176839 !important;
  border: 1px solid #d9eadf;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 600;
  letter-spacing: 0;
}

.ic-home-card--calculator .ic-home-card__icon { margin-top: 8px; }
.ic-home-card:hover em {
  background: var(--ic-home-green);
  color: #fff;
}

.ic-home-category-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.ic-home-category-card__copy { display: flex; flex-direction: column; gap: 3px; }
.ic-home-category-card__copy small,
.ic-home-category-card__meta { color: var(--ic-home-muted); font-size: 13px; line-height: 1.35; }
.ic-home-category-card__meta { white-space: nowrap; }

.ic-home-mini-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.ic-home-mini-heading__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.ic-home-popular-card {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px 20px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.ic-home-popular-card__num {
  color: rgba(31, 143, 78, 0.32);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.ic-home-popular-card small {
  display: block;
  margin-top: 4px;
  color: var(--ic-home-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ic-home-popular-card em { color: var(--ic-home-muted); font-size: 18px; font-style: normal; font-weight: 600; }

.ic-home-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
}

.ic-home-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: #fff;
  background: var(--ic-home-green);
}

.ic-home-feature__icon .ic-home-icon-svg { width: 28px; height: 28px; }
.ic-home-feature strong { font-size: 16px; font-weight: 500; }
.ic-home-feature span:not(.ic-home-feature__icon) { max-width: 230px; font-size: 14px; line-height: 1.5; }

.ic-home-guide-card {
  min-height: 150px;
  padding: 20px;
  gap: 10px;
}

.ic-home-guide-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 15px;
  border-radius: 999px;
  background: #f0f8f3 !important;
  color: #176839 !important;
  border: 1px solid #d9eadf;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ic-home-guide-card .ic-home-card__icon { background: #f3f6f4; }
.ic-home-guide-card strong { padding-right: 70px; }
.ic-home-guide-card span:not(.ic-home-card__icon):not(.ic-home-guide-card__tag) { font-size: 14px; }

.ic-home-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.ic-home-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #176839;
  border: 1px solid #d9eadf;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ic-home-help-copy h2 {
  margin: 14px 0 12px;
  color: var(--ic-home-text);
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.4px;
}

.ic-home-help-copy p {
  margin: 0 0 18px;
  color: var(--ic-home-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.ic-home-help-steps {
  display: grid;
  gap: 12px;
}

.ic-home-help-step {
  display: grid;
  grid-template-columns: 34px 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--ic-home-border);
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ic-home-help-step:hover {
  transform: translateY(-1px);
  box-shadow: var(--ic-home-shadow);
  border-color: #d6dfda;
}

.ic-home-help-step__num {
  color: rgba(31,143,78,0.35);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.ic-home-help-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: var(--ic-home-green);
  background: var(--ic-home-icon-bg);
}

.ic-home-help-step__icon .ic-home-icon-svg { width: 21px; height: 21px; }
.ic-home-help-step strong { display: block; color: var(--ic-home-text); font-size: 15px; font-weight: 600; line-height: 1.3; }
.ic-home-help-step small { display: block; margin-top: 3px; color: var(--ic-home-muted); font-size: 13px; line-height: 1.45; }

.ic-home-section--result-note {
  padding-top: 56px;
  padding-bottom: 56px;
}

.ic-home-note-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 24px 32px;
  border: 1px solid rgba(230, 234, 231, 0.85);
  border-radius: 16px;
  background: #fafafa;
}

.ic-home-note-card p,
.ic-home-note-card li {
  color: var(--ic-home-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ic-home-note-card p:first-of-type { font-size: 16px; }
.ic-home-note-card ul { display: grid; gap: 8px; margin: 14px 0; padding: 0; list-style: none; }
.ic-home-note-card li { position: relative; padding-left: 18px; }
.ic-home-note-card li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--ic-home-green); font-weight: 700; }

.ic-home-section--cta { padding-top: 72px; padding-bottom: 88px; }

.ic-home-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ic-home-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(31, 143, 78, 0.1);
  color: var(--ic-home-green);
}

.ic-home-cta p { max-width: 480px; margin-bottom: 24px; }

@media (max-width: 1024px) {
  .ic-home-hero__grid { grid-template-columns: 1fr; }
  .ic-home-hero__visual { display: none; }
  .ic-home-card-grid--three,
  .ic-home-directory-grid,
  .ic-home-popular-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ic-home-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .ic-home-help-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ic-home-wrap { width: min(100% - 32px, 1200px); }
  .ic-home-hero { padding-top: 46px; }
  .ic-home-hero h1 { line-height: 1.12; letter-spacing: -1px; }
  .ic-home-hero__intro { font-size: 16px; }
  .ic-home-actions { flex-direction: column; align-items: stretch; }
  .ic-home-btn { width: 100%; min-height: 44px; font-size: 14px; }
  .ic-home-quick { padding: 12px 0; }
  .ic-home-quick__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .ic-home-quick__inner::-webkit-scrollbar { display: none; }
  .ic-home-quick__label,
  .ic-home-quick a { white-space: nowrap; font-size: 12px; }
  .ic-home-quick a { padding: 6px 10px; }
  .ic-home-section { padding: 56px 0 64px; }
  .ic-home-section-head { margin-bottom: 30px; }
  .ic-home-section-head--split { align-items: flex-start; flex-direction: column; }
  .ic-home-section--featured .ic-home-section-head h2,
  .ic-home-section--categories .ic-home-section-head h2,
  .ic-home-section-head h2,
  .ic-home-mini-heading h2,
  .ic-home-note-card h2,
  .ic-home-cta h2 { font-size: 26px; }
  .ic-home-section-head p { font-size: 15px; }
  .ic-home-card-grid--three,
  .ic-home-directory-grid,
  .ic-home-popular-grid,
  .ic-home-feature-grid { grid-template-columns: 1fr; }
  .ic-home-help-layout { grid-template-columns: 1fr; gap: 28px; }
  .ic-home-help-copy h2 { font-size: 26px; }
  .ic-home-help-step { grid-template-columns: 28px 38px 1fr; padding: 14px; }
  .ic-home-card { min-height: auto; }
  .ic-home-category-card { grid-template-columns: 45px 1fr; }
  .ic-home-category-card__meta { grid-column: 2; white-space: normal; }
  .ic-home-popular-card { grid-template-columns: 32px 1fr auto; }
  .ic-home-guide-card strong { padding-right: 76px; }
  .ic-home-note-card { padding: 22px 20px; }
}
