.elementor-31894 .elementor-element.elementor-element-14a7056{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for cc_template_widget, class: .elementor-element-ba35b28 *//* =========================================================
   AI COMPARISON CARDS — v6 (final)
   Pitch-strip broker cards with neumorphic depth hierarchy.

   Design principles applied:
     • Single dominant CTA per card (gold gradient, glassy sheen)
     • "Best For" as gold-tinted banner on its own row
     • TIC Rating raised as the hero stat (the others recede)
     • Rank as overline label above broker name (logo as anchor)
     • Top-aligned stat content for clean baselines even when wrapping
     • Gold outer glow on #1 to signal "featured" without stripe noise

   Paste over any previous .ai-* blocks in theme.css.
   ========================================================= */


/* ---------- Section wrapper ---------- */
.tic-page-wrapper .ai-cards-wrap { margin-bottom: 20px; }

.tic-page-wrapper .ai-cards-title {
  font-size: 0.95rem !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  margin: 24px 0 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.tic-page-wrapper .ai-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}


/* ---------- Card ---------- */
.tic-page-wrapper .ai-card {
  position: relative;
  background-color: var(--bg-dark);
  background-image: linear-gradient(135deg, transparent 0%, transparent 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-raised);
  padding: 20px 24px;
  transition:
    transform 0.35s cubic-bezier(.2, .8, .25, 1),
    box-shadow 0.35s ease,
    background-image 0.4s ease;
}

/* Featured (#1): subtle gold outer glow instead of a stripe */
.tic-page-wrapper .ai-cards-grid .ai-card:first-of-type {
  box-shadow:
    var(--shadow-raised),
    0 0 0 1px rgba(252, 196, 25, 0.12);
}

/* Hover: gold sheen fades in via gradient alpha interpolation */
.tic-page-wrapper .ai-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-raised-hover);
  background-image: linear-gradient(135deg, transparent 0%, rgba(252, 196, 25, 0.08) 100%);
}


/* ---------- Row grid: identity · best-for · 4 stats · cta ---------- */
.tic-page-wrapper .ai-card-row {
  display: grid;
  grid-template-columns: minmax(240px, auto) repeat(4, minmax(0, 1fr)) 180px;
  grid-template-areas:
    "identity bestfor bestfor bestfor bestfor cta"
    "identity s2      s3      s4      s5      cta";
  gap: 12px 14px;
  align-items: stretch;
}

.tic-page-wrapper .ai-col-identity                     { grid-area: identity; align-self: center; }
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) { grid-area: bestfor; }
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) { grid-area: s2; }
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(3) { grid-area: s3; }
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(4) { grid-area: s4; }
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(5) { grid-area: s5; }
.tic-page-wrapper .ai-col-cta                          { grid-area: cta; align-self: center; }


/* ---------- Identity cluster — logo LEFT, rank + name STACKED to right ---------- */
.tic-page-wrapper .ai-col-identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "logo rank"
    "logo name";
  column-gap: 14px;
  row-gap: 0;
  min-width: 0;
  align-items: center;
}

.tic-page-wrapper .ai-col-identity .ai-card-logo {
  grid-area: logo;
  align-self: center;
}
.tic-page-wrapper .ai-col-identity .ai-card-rank {
  grid-area: rank;
  align-self: end;
  justify-self: start;
}
.tic-page-wrapper .ai-col-identity .ai-card-name {
  grid-area: name;
  align-self: start;
  justify-self: start;
  margin-top: 2px;
}


/* Logo — subtle gradient bed + soft drop shadow + glassy sheen on top */
.tic-page-wrapper .ai-card-logo {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #3d3d3d, #2a2a2a);
  padding: 5px;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.tic-page-wrapper .ai-card-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  border-radius: 12px;
  pointer-events: none;
}
.tic-page-wrapper .ai-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
  position: relative;
  z-index: 1;
}


/* Rank — small uppercase gold overline for #2+ */
.tic-page-wrapper .ai-card-rank {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  opacity: 0.65;
  text-transform: uppercase;
}

/* Rank for #1 = small gold pill (the "featured" signal) */
.tic-page-wrapper .ai-cards-grid .ai-card:first-of-type .ai-card-rank {
  padding: 3px 9px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffdb4d 100%);
  color: #1a1a1a;
  font-size: 0.72rem;
  border-radius: 12px;
  opacity: 1;
  box-shadow:
    0 3px 10px rgba(252, 196, 25, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}


/* Broker name */
.tic-page-wrapper .ai-card-name {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ---------- Stat (base — Trustpilot, AI Integration, Cost) ----------
   Borderless, top-aligned text with a quiet left divider. Recedes so
   TIC Rating (the hero) can dominate. */
.tic-page-wrapper .ai-stat {
  position: relative;
  margin: 0 !important;
  padding: 12px 16px 12px 18px !important;
  min-width: 0;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  overflow: hidden;
}

/* Trustpilot sits next to the raised TIC Rating card — no left divider */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(3) {
  border-left: none;
  padding-left: 14px;
}

.tic-page-wrapper .ai-stat dt,
.tic-page-wrapper .ai-stat dd {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
}

.tic-page-wrapper .ai-stat dt {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.tic-page-wrapper .ai-stat-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.35;
}

.tic-page-wrapper .ai-stat-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(252, 196, 25, 0.25);
}

.tic-page-wrapper .ai-stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Hide empty review-count span when ACF returns nothing */
.tic-page-wrapper .ai-stat-sub:empty { display: none; }


/* ---------- Best For (position 1) — gold-tinted banner ----------
   Horizontal layout (label left, value right) — uses the full width
   from spanning 4 columns. Soft radial gold glow + inset gold sheen. */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 10px 18px !important;
  min-height: 54px;
  background:
    radial-gradient(circle at 15% 50%, rgba(252, 196, 25, 0.12) 0%, transparent 55%),
    linear-gradient(145deg, rgba(252, 196, 25, 0.05), rgba(252, 196, 25, 0.02));
  border: 1px solid rgba(252, 196, 25, 0.22);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(252, 196, 25, 0.1),
    0 0 0 1px rgba(252, 196, 25, 0.03);
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) dt {
  color: var(--gold);
  font-size: 0.64rem;
  flex-shrink: 0;
  letter-spacing: 0.14em;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) dd { min-width: 0; }
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) .ai-stat-text {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}


/* ---------- TIC Rating (position 2) — HERO raised card ----------
   Breaks the row's visual monotony by being clearly the dominant
   data point. Gold glow, larger number, tabular-nums. */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) {
  background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
  border: 1px solid rgba(252, 196, 25, 0.15);
  border-radius: 8px;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(252, 196, 25, 0.03);
  padding-left: 14px !important;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) dt {
  color: var(--gold);
  font-size: 0.64rem;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) .ai-stat-main {
  font-size: 1.55rem;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(252, 196, 25, 0.4);
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) .ai-stat-sub {
  font-size: 0.78rem;
  opacity: 0.7;
}


/* ---------- Trustpilot (position 3) — de-emphasised ----------
   Neutral tone so it doesn't compete with TIC Rating. */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(3) .ai-stat-main {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: none;
}


/* ---------- CTA column ---------- */
.tic-page-wrapper .ai-col-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 180px;
  width: 180px;
}

/* Primary CTA — gold gradient with glassy top highlight, gold aura */
.tic-page-wrapper a.ai-card-cta,
.tic-page-wrapper .ai-cards-grid a.ai-card-cta {
  position: relative;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 13px 18px !important;
  border-radius: var(--radius-sm) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #fcc419 0%, #ffdb4d 100%) !important;
  color: #1a1a1a !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  box-shadow:
    0 4px 14px rgba(252, 196, 25, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.tic-page-wrapper a.ai-card-cta:hover,
.tic-page-wrapper .ai-cards-grid a.ai-card-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, #ffdb4d 0%, #fcc419 100%) !important;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(252, 196, 25, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

.tic-page-wrapper a.ai-card-cta:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(252, 196, 25, 0.35),
    inset 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.tic-page-wrapper a.ai-card-cta:focus,
.tic-page-wrapper a.ai-card-cta:visited {
  color: #1a1a1a !important;
}

/* Secondary link — quiet; no underline or gold border from theme cascade */
.tic-page-wrapper a.ai-card-secondary,
.tic-page-wrapper .ai-cards-grid a.ai-card-secondary {
  display: block;
  text-align: center;
  color: var(--text-muted) !important;
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  transition: color 0.2s ease;
}
.tic-page-wrapper a.ai-card-secondary:hover {
  color: var(--gold) !important;
  border-bottom: none !important;
}


/* ---------- Per-card disclaimer ---------- */
.tic-page-wrapper .ai-card-disclaimer {
  font-size: 0.68rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4 !important;
  margin: 12px 0 0 !important;
  padding-top: 12px !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}
.tic-page-wrapper .ai-card-disclaimer p {
  font-size: 0.68rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}


/* ---------- Footnote + build-your-own strip ---------- */
.tic-page-wrapper .ai-cards-footnote,
.tic-page-wrapper .ai-cards-build {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin-top: 14px !important;
}
.tic-page-wrapper .ai-cards-build strong { color: #fff; }
.tic-page-wrapper .ai-cards-build a { color: var(--gold) !important; }


/* =========================================================
   TABLET (≤ 1100px) — identity + Best For share row 1
   ========================================================= */
@media (max-width: 1100px) {
  .tic-page-wrapper .ai-card-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "identity identity bestfor bestfor"
      "s2       s3       s4      s5"
      "cta      cta      cta     cta";
    gap: 14px;
  }
  .tic-page-wrapper .ai-col-cta { width: auto; min-width: 0; }
  .tic-page-wrapper .ai-card-name { font-size: 1.25rem !important; }
  .tic-page-wrapper .ai-card-logo { width: 72px; height: 72px; }
}


/* =========================================================
   MOBILE (≤ 640px) — everything stacks
   ========================================================= */
@media (max-width: 640px) {
  .tic-page-wrapper .ai-card {
    padding: 16px 18px;
  }
  .tic-page-wrapper .ai-card-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "identity identity"
      "bestfor  bestfor"
      "s2       s3"
      "s4       s5"
      "cta      cta";
    gap: 10px;
  }
  .tic-page-wrapper .ai-card-logo { width: 60px; height: 60px; }
  .tic-page-wrapper .ai-card-name { font-size: 1.15rem !important; }
  .tic-page-wrapper .ai-stat {
    padding: 11px 13px !important;
    min-height: 64px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px !important;
  }
  .tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2),
  .tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(3) {
    border-top: none;
  }
  .tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 14px !important;
  }
  .tic-page-wrapper a.ai-card-cta { padding: 14px 20px !important; font-size: 0.95rem !important; }
}
/* ---------- REPLACE: Card (adds isolation + noise overlay + tighter padding) ---------- */
.tic-page-wrapper .ai-card {
  position: relative;
  isolation: isolate;
  background-color: var(--bg-dark);
  background-image: linear-gradient(135deg, transparent 0%, transparent 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-raised);
  padding: 16px 22px;
  transition:
    transform 0.35s cubic-bezier(.2, .8, .25, 1),
    box-shadow 0.35s ease,
    background-image 0.4s ease;
}

/* Perlin/fractal noise overlay — hidden at rest, fades in on hover */
.tic-page-wrapper .ai-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 240px 240px;
  opacity: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.45s ease;
}

.tic-page-wrapper .ai-cards-grid .ai-card:first-of-type {
  box-shadow:
    var(--shadow-raised),
    0 0 0 1px rgba(252, 196, 25, 0.12);
}

.tic-page-wrapper .ai-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-raised-hover);
  background-image: linear-gradient(135deg, transparent 0%, rgba(252, 196, 25, 0.08) 100%);
}
.tic-page-wrapper .ai-card:hover::after {
  opacity: 0.55;
}

/* ---------- REPLACE: Row grid (tighter gap + narrower CTA col) ---------- */
.tic-page-wrapper .ai-card-row {
  display: grid;
  grid-template-columns: minmax(230px, auto) repeat(4, minmax(0, 1fr)) 170px;
  grid-template-areas:
    "identity bestfor bestfor bestfor bestfor cta"
    "identity s2      s3      s4      s5      cta";
  gap: 10px 12px;
  align-items: stretch;
}

/* ---------- REPLACE: Logo (68px instead of 80px) ---------- */
.tic-page-wrapper .ai-card-logo {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #3d3d3d, #2a2a2a);
  padding: 4px;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* ---------- REPLACE: Stat base (tighter padding + min-height) ---------- */
.tic-page-wrapper .ai-stat {
  position: relative;
  margin: 0 !important;
  padding: 10px 14px 10px 16px !important;
  min-width: 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  overflow: hidden;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(3) {
  border-left: none;
  padding-left: 12px !important;
}

/* ---------- REPLACE: Best For (tighter padding + min-height) ---------- */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(1) {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 16px !important;
  min-height: 44px;
  background:
    radial-gradient(circle at 15% 50%, rgba(252, 196, 25, 0.12) 0%, transparent 55%),
    linear-gradient(145deg, rgba(252, 196, 25, 0.05), rgba(252, 196, 25, 0.02));
  border: 1px solid rgba(252, 196, 25, 0.22);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(252, 196, 25, 0.1),
    0 0 0 1px rgba(252, 196, 25, 0.03);
}

/* ---------- REPLACE: TIC Rating (dialed back emphasis) ---------- */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) {
  background: linear-gradient(145deg, #363636 0%, #2a2a2a 100%);
  border: 1px solid rgba(252, 196, 25, 0.09);
  border-radius: 8px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding-left: 14px !important;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) dt {
  color: var(--gold);
  font-size: 0.62rem;
  opacity: 0.85;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) .ai-stat-main {
  font-size: 1.3rem;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(252, 196, 25, 0.22);
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) .ai-stat-sub {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ---------- REPLACE: Per-card disclaimer (tighter spacing) ---------- */
.tic-page-wrapper .ai-card-disclaimer {
  font-size: 0.68rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4 !important;
  margin: 10px 0 0 !important;
  padding-top: 10px !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}

/* ---------- REPLACE: Stat base (stronger divider) ---------- */
.tic-page-wrapper .ai-stat {
  position: relative;
  margin: 0 !important;
  padding: 10px 14px 10px 16px !important;
  min-width: 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  overflow: hidden;
}
/* Trustpilot (pos 3) rule — can now be REMOVED entirely from your theme.css;
   it was only there to hide the divider next to the old raised TIC card. */


/* ---------- REPLACE: TIC Rating (much softer — subtle gold accent only) ---------- */
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 14px !important;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) dt {
  color: var(--gold);
  font-size: 0.62rem;
  opacity: 0.9;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) .ai-stat-main {
  font-size: 1.15rem;
  font-weight: 800;
  text-shadow: none;
}
.tic-page-wrapper .ai-card-row .ai-stat:nth-of-type(2) .ai-stat-sub {
  font-size: 0.72rem;
  opacity: 0.7;
}


/* ---------- REPLACE: Rank (all ranks now consistent) ---------- */
.tic-page-wrapper .ai-card-rank {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  opacity: 0.65;
  text-transform: uppercase;
}
/* The `.ai-card:first-of-type .ai-card-rank` rule (gold pill medallion)
   can be REMOVED entirely from your theme.css. */


/* ---------- REPLACE: CTA (flat at rest, shadow on hover only) ---------- */
.tic-page-wrapper a.ai-card-cta,
.tic-page-wrapper .ai-cards-grid a.ai-card-cta {
  position: relative;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 13px 18px !important;
  border-radius: var(--radius-sm) !important;
  background: linear-gradient(135deg, #fcc419 0%, #ffdb4d 100%) !important;
  color: #1a1a1a !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  box-shadow: none !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.tic-page-wrapper a.ai-card-cta:hover,
.tic-page-wrapper .ai-cards-grid a.ai-card-cta:hover {
  background: linear-gradient(135deg, #ffdb4d 0%, #fcc419 100%) !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(252, 196, 25, 0.4) !important;
}

.tic-page-wrapper a.ai-card-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(252, 196, 25, 0.3) !important;
}


/* ---------- REPLACE: Disclaimer (solid divider) ---------- */
.tic-page-wrapper .ai-card-disclaimer {
  font-size: 0.68rem !important;
  color: var(--text-muted) !important;
  line-height: 1.4 !important;
  margin: 10px 0 0 !important;
  padding-top: 10px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}/* End custom CSS */