/* Recipe Scaling Calculator CTA — the "signature card" (owner-chosen). Injected
   by transform.mjs right after the WPRM recipe card, on recipe pages only. Reads
   as a native feature, not an ad: restrained accent, real ember button, the
   calculator's own ember/charcoal identity. Display face falls back to a
   condensed system font where Oswald isn't loaded (content pages don't load it). */
.hk-recipe-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: #fffdfa;
  border: 1px solid #e7ddce;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin: 28px 0;
  box-shadow: 0 1px 2px rgba(30, 18, 10, 0.05);
  text-decoration: none;
  color: #241c16;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.hk-recipe-cta::before {
  content: "";
  position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 4px; border-radius: 4px;
  background: linear-gradient(#c8102e, #e8541e);
}
.hk-recipe-cta:hover,
.hk-recipe-cta:focus-visible {
  border-color: #e6c9a0;
  box-shadow: 0 10px 24px -14px rgba(196, 30, 58, 0.4);
  transform: translateY(-1px);
  outline: none;
}
.hk-recipe-cta__ico {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: #171310; color: #fff; border-radius: 11px; font-size: 1.4rem; margin-left: 0.4rem;
}
.hk-recipe-cta__body { display: block; min-width: 0; }
.hk-recipe-cta__eyebrow {
  display: block; font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem; font-weight: 600; color: #e8541e;
}
.hk-recipe-cta__title {
  display: block; font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600; font-size: 1.2rem; line-height: 1.15; color: #241c16; margin: 0.1rem 0 0.15rem;
}
.hk-recipe-cta__text { display: block; font-size: 0.9rem; line-height: 1.45; color: #5c5148; }
.hk-recipe-cta__btn {
  font-family: "Oswald", "Arial Narrow", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 0.9rem; background: #c8102e; color: #fff;
  padding: 0.7rem 1.15rem; border-radius: 10px; white-space: nowrap; transition: background 0.15s ease;
}
.hk-recipe-cta:hover .hk-recipe-cta__btn { background: #a00d24; }
@media (max-width: 620px) {
  .hk-recipe-cta { grid-template-columns: auto 1fr; gap: 0.9rem; padding: 1.1rem; }
  .hk-recipe-cta__btn { grid-column: 1 / -1; text-align: center; padding: 0.8rem; }
}
