/* Style overrides for the hero CTAs.

   See Pricing  -> any anchor my JS has tagged with data-cta-patched="1"
   Book a free call -> div.framer-2UvR4[data-framer-name="Variant 1"]

   Both are sized identically so the hero looks balanced. CSS isn't part of
   React's virtual DOM so these survive Framer hydration. */

/* ===== Shared dimensions (See Pricing + Book a free call) ===== */
a[data-cta-patched="1"],
div.framer-2UvR4[data-framer-name="Variant 1"] {
  min-width: 210px !important;
  min-height: 52px !important;
  padding: 14px 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-sizing: border-box !important;
}

/* ===== See Pricing specifics ===== */
a[data-cta-patched="1"] {
  transition: background-color 0.18s ease, color 0.18s ease !important;
}

a[data-cta-patched="1"] p {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* £ symbol before See Pricing text. */
a[data-cta-patched="1"] p::before {
  content: "£";
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
  vertical-align: middle;
  color: inherit;
}

/* Hover: invert See Pricing to black background, white text + symbol. */
a[data-cta-patched="1"]:hover {
  background-color: #000 !important;
}
a[data-cta-patched="1"]:hover p,
a[data-cta-patched="1"]:hover p::before {
  color: #fff !important;
}
