/* ============================================================
   Contabilitate Smart — shared theme & components
   Brand: sage green #6D9477  +  coral #F59291  (sampled from logo)
   ============================================================ */

:root {
  /* brand identity (fixed) */
  --sage: 109 148 119;        /* #6D9477 */
  --sage-deep: 64 96 73;      /* #406049 */
  --sage-soft: 237 243 238;   /* #EDF3EE */
  --coral: 245 146 145;       /* #F59291 */
  --coral-deep: 209 102 97;   /* #D16661 */
  --coral-soft: 252 238 237;  /* #FCEEED */

  --ink: 44 55 49;            /* #2C3731 */
  --muted: 105 117 110;       /* #69756E */
  --line: 229 233 228;        /* #E5E9E4 */
  --bg: 255 255 255;
  --bg-warm: 249 251 248;     /* #F9FBF8 */

  /* tweakable accent (default = deep sage) */
  --accent: var(--sage-deep);
  --accent-deep: 47 73 54;    /* #2F4936 */
  --accent-ink: 255 255 255;

  /* tweakable type */
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;

  /* tweakable radius scale */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 9999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: rgb(var(--ink));
  background: rgb(var(--bg));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: rgb(var(--ink));
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgb(var(--coral) / .3); color: rgb(var(--ink)); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  border-radius: var(--r-pill);
  padding: .92rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .25s ease, transform .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: rgb(var(--accent)); color: rgb(var(--accent-ink)); }
.btn--primary:hover { background: rgb(var(--accent-deep)); box-shadow: 0 14px 30px -12px rgb(var(--accent) / .65); transform: translateY(-2px); }
.btn--coral { background: rgb(var(--coral)); color: rgb(var(--ink)); }
.btn--coral:hover { background: rgb(var(--coral-deep)); color: #fff; box-shadow: 0 14px 30px -12px rgb(var(--coral) / .7); transform: translateY(-2px); }
.btn--ghost { background: rgb(var(--bg)); color: rgb(var(--ink)); border-color: rgb(var(--line)); }
.btn--ghost:hover { border-color: rgb(var(--sage) / .55); background: rgb(var(--sage-soft)); }
.btn--white { background: #fff; color: rgb(var(--accent)); }
.btn--white:hover { background: rgb(var(--sage-soft)); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgb(0 0 0 / .25); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1eb558; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgb(37 211 102 / .6); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn:focus-visible { outline: 2px solid rgb(var(--accent)); outline-offset: 2px; }

/* ---------- badge / eyebrow ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .01em;
  padding: .42rem .9rem; border-radius: var(--r-pill);
  background: rgb(var(--coral-soft)); color: rgb(var(--coral-deep));
  border: 1px solid rgb(var(--coral) / .28); white-space: nowrap;
}
.badge .dot { width: .42rem; height: .42rem; border-radius: 9999px; background: rgb(var(--coral)); }
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgb(var(--sage-deep)); }

/* ---------- icon chip ---------- */
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.25rem; height: 3.25rem; border-radius: var(--r-md);
  background: rgb(var(--sage-soft)); color: rgb(var(--sage-deep));
  flex-shrink: 0;
}
.icon-chip--coral { background: rgb(var(--coral-soft)); color: rgb(var(--coral-deep)); }
.icon-chip--sm { width: 2.5rem; height: 2.5rem; border-radius: var(--r-sm); }

/* ---------- surfaces ---------- */
.surface {
  background: rgb(var(--bg));
  border: 1px solid rgb(var(--line));
  border-radius: var(--r-lg);
}
.surface-soft { background: rgb(var(--sage-soft)); }

/* gradient hairline shell (the design system's signature edge) */
.shell {
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(to bottom right, rgb(var(--sage) / .35), rgb(var(--sage-soft) / .5), transparent);
}
.shell > * { border-radius: calc(var(--r-xl) - 1px); }

/* ---------- image-slot theming (on-brand placeholders) ---------- */
image-slot { color: rgb(var(--sage-deep)); }
image-slot::part(frame) { background: rgb(var(--sage-soft)); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- media band: big-text section with a fillable background photo
   whose transparency the user can tune via an inline control ---------- */
.media-band { position: relative; overflow: hidden; background: rgb(var(--sage-soft)); }
.media-band .band-bg { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
.media-band .band-veil { position: absolute; inset: 0; background: rgb(var(--sage-soft)); opacity: var(--veil, .76); pointer-events: none; transition: opacity .25s ease; z-index: 1; }
.media-band .band-inner { position: relative; z-index: 2; pointer-events: none; }
.media-band .band-ctrl { display: none; position: absolute; z-index: 4; right: 1rem; bottom: 1rem; }
.band-ctrl details { position: relative; }
.band-ctrl summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .45rem; background: rgb(var(--bg) / .92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgb(var(--line)); color: rgb(var(--ink)); border-radius: 9999px; padding: .5rem .9rem; font-size: .8rem; font-weight: 600; box-shadow: 0 6px 18px -8px rgb(0 0 0 / .25); }
.band-ctrl summary::-webkit-details-marker { display: none; }
.band-ctrl summary iconify-icon { font-size: 1.05rem; color: rgb(var(--sage-deep)); }
.band-ctrl .pop { position: absolute; right: 0; bottom: calc(100% + .55rem); width: 236px; background: rgb(var(--bg)); border: 1px solid rgb(var(--line)); border-radius: 16px; padding: 14px; box-shadow: 0 18px 40px -16px rgb(0 0 0 / .3); }
.band-ctrl .pop label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgb(var(--muted)); margin-bottom: 9px; }
.band-ctrl .pop input[type=range] { width: 100%; accent-color: rgb(var(--sage-deep)); }
.band-ctrl .pop .hint { font-size: .72rem; color: rgb(var(--muted)); margin-top: 9px; line-height: 1.45; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgb(var(--bg) / .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgb(var(--line) / .8);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px -18px rgb(0 0 0 / .25); }
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 52px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-links a {
  position: relative; font-size: .94rem; font-weight: 600; color: rgb(var(--muted));
  transition: color .2s ease; padding: .25rem 0; white-space: nowrap;
}
.nav-links a:hover { color: rgb(var(--ink)); }
.nav-links a.active { color: rgb(var(--ink)); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.45rem; height: 2px;
  background: rgb(var(--coral)); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-cta { display: none; }
.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: var(--r-sm);
  background: rgb(var(--sage-soft)); color: rgb(var(--ink)); border: 0; cursor: pointer;
  font-size: 1.5rem;
}
.mobile-menu {
  display: none; flex-direction: column; gap: .25rem;
  padding: .5rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgb(var(--line));
  background: rgb(var(--bg) / .98); backdrop-filter: blur(18px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a.m-link {
  padding: .9rem .25rem; font-weight: 600; color: rgb(var(--ink));
  border-bottom: 1px solid rgb(var(--line));
}
.mobile-menu a.m-link.active { color: rgb(var(--coral-deep)); }
.mobile-menu .btn { margin-top: 1rem; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: rgb(var(--ink)); color: rgb(255 255 255 / .72); padding: 4.5rem 0 2.25rem; }
.footer-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand-logo { height: 50px; width: auto; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { color: rgb(255 255 255 / .68); font-size: .94rem; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact .row { display: flex; align-items: center; gap: .7rem; }
.footer-contact .row iconify-icon { color: rgb(var(--coral)); font-size: 1.15rem; }
.footer-bottom {
  max-width: 80rem; margin: 3rem auto 0; padding: 1.75rem 1.5rem 0;
  border-top: 1px solid rgb(255 255 255 / .12);
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  font-size: .82rem; color: rgb(255 255 255 / .5); text-align: center;
}
.footer-bottom a:hover { color: #fff; }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr; gap: 4rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- toast (form confirmation) ---------- */
.toast {
  position: fixed; left: 50%; bottom: 2rem; transform: transl(-50%, 2rem);
  transform: translateX(-50%) translateY(2rem);
  background: rgb(var(--ink)); color: #fff;
  padding: .95rem 1.4rem; border-radius: var(--r-md);
  display: flex; align-items: center; gap: .65rem; font-weight: 600; font-size: .92rem;
  box-shadow: 0 20px 50px -15px rgb(0 0 0 / .4); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease;
  max-width: calc(100vw - 2rem);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast iconify-icon { color: rgb(var(--coral)); font-size: 1.3rem; }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 70;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: #25D366; color: #fff; font-size: 1.7rem;
  box-shadow: 0 12px 30px -8px rgb(37 211 102 / .55);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- generic helpers ---------- */
.container { max-width: 80rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.lead { font-size: 1.15rem; color: rgb(var(--muted)); line-height: 1.7; }
.muted { color: rgb(var(--muted)); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: .85rem; }
.faq-item { border: 1px solid rgb(var(--line)); border-radius: var(--r-lg); background: rgb(var(--bg)); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: rgb(var(--sage) / .5); box-shadow: 0 14px 36px -22px rgb(0 0 0 / .25); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: rgb(var(--ink)); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary iconify-icon { color: rgb(var(--sage-deep)); font-size: 1.35rem; flex-shrink: 0; transition: transform .25s ease; }
.faq-item[open] summary iconify-icon { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; color: rgb(var(--muted)); line-height: 1.7; font-size: .98rem; }
.faq-item .faq-a p { margin: 0; }

/* ============================================================
   Legal / policy pages
   ============================================================ */
.legal-hero { position: relative; overflow: hidden; padding-top: 9.5rem; padding-bottom: 2.5rem; }
.legal-hero::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 26rem; z-index: -1;
  background: linear-gradient(to bottom, rgb(var(--sage-soft)), rgb(var(--bg) / 0)); }
.legal-wrap { max-width: 50rem; margin: 0 auto; padding: 0 1.5rem; }
.legal-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem 1.25rem; margin-top: 1.25rem;
  font-size: .86rem; color: rgb(var(--muted)); }
.legal-meta .row { display: inline-flex; align-items: center; gap: .45rem; }
.legal-meta iconify-icon { color: rgb(var(--sage-deep)); font-size: 1.05rem; }

.legal { max-width: 50rem; margin: 0 auto; padding: 2.5rem 1.5rem 1rem; }
.legal section { scroll-margin-top: 6rem; }
.legal h2 { font-size: 1.5rem; line-height: 1.25; margin: 0 0 1.1rem; }
.legal section + section { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgb(var(--line)); }
.legal h3 { font-size: 1.06rem; color: rgb(var(--sage-deep)); margin: 1.75rem 0 .7rem; letter-spacing: -0.01em; }
.legal p { color: rgb(var(--muted)); margin: 0 0 1.05rem; line-height: 1.75; font-size: 1rem; }
.legal p strong, .legal li strong { color: rgb(var(--ink)); font-weight: 600; }
.legal a.inline { color: rgb(var(--sage-deep)); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal a.inline:hover { color: rgb(var(--accent-deep)); }
.legal ul { margin: 0 0 1.2rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.legal ul li { position: relative; padding-left: 1.6rem; color: rgb(var(--muted)); line-height: 1.7; }
.legal ul li::before { content: ''; position: absolute; left: .15rem; top: .62em; width: .42rem; height: .42rem;
  border-radius: 9999px; background: rgb(var(--coral)); }
.legal .ph { background: rgb(var(--coral-soft)); color: rgb(var(--coral-deep)); padding: .04em .42em;
  border-radius: 6px; font-weight: 600; font-size: .9em; white-space: nowrap; }

/* definition block (Date colectate / Scop / Temei) */
.legal .defs { display: flex; flex-direction: column; gap: .55rem; margin: 0 0 1.1rem; }
.legal .defs > div { display: grid; grid-template-columns: 1fr; gap: .15rem; }
.legal .defs dt, .legal .defs .k { font-weight: 600; color: rgb(var(--ink)); font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase; }
.legal .defs .v { color: rgb(var(--muted)); line-height: 1.65; }
.legal .card { background: rgb(var(--bg-warm)); border: 1px solid rgb(var(--line)); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; margin: 0 0 1.2rem; }
.legal .card h3 { margin-top: 0; }
.legal .card:last-child { margin-bottom: 0; }

/* cookie types table */
.legal-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: .25rem 0 1.4rem;
  border: 1px solid rgb(var(--line)); border-radius: var(--r-lg); overflow: hidden; font-size: .92rem; }
.legal-table th, .legal-table td { text-align: left; padding: .9rem 1.05rem; vertical-align: top; line-height: 1.55; }
.legal-table thead th { background: rgb(var(--sage-soft)); color: rgb(var(--ink)); font-family: var(--font-display);
  font-weight: 600; font-size: .82rem; letter-spacing: .03em; }
.legal-table tbody td { border-top: 1px solid rgb(var(--line)); color: rgb(var(--muted)); }
.legal-table tbody td:first-child { font-weight: 600; color: rgb(var(--ink)); }
.legal-table .tag { display: inline-flex; align-items: center; gap: .35rem; padding: .2rem .6rem; border-radius: 9999px;
  font-size: .76rem; font-weight: 600; white-space: nowrap; }
.legal-table .tag--no { background: rgb(var(--sage-soft)); color: rgb(var(--sage-deep)); }
.legal-table .tag--yes { background: rgb(var(--coral-soft)); color: rgb(var(--coral-deep)); }
@media (max-width: 680px) {
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table td { display: block; width: 100%; }
  .legal-table thead { display: none; }
  .legal-table tr { border-top: 1px solid rgb(var(--line)); }
  .legal-table tr:first-child { border-top: 0; }
  .legal-table td { border-top: 0; padding: .3rem 1.05rem; }
  .legal-table td:first-child { padding-top: 1rem; font-size: 1rem; }
  .legal-table td:last-child { padding-bottom: 1rem; }
  .legal-table td::before { content: attr(data-label); display: block; font-size: .7rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; color: rgb(var(--sage-deep)); margin-bottom: .15rem; }
}

.legal-cta { max-width: 50rem; margin: 1rem auto 0; padding: 0 1.5rem; }
.legal-cta .inner { background: rgb(var(--sage-soft)); border-radius: var(--r-xl); padding: 1.7rem 1.8rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.1rem; }
.legal-cta .inner p { margin: 0; color: rgb(var(--ink)); font-weight: 500; max-width: 34ch; }

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120;
  max-width: 46rem; margin: 0 auto;
  background: rgb(var(--bg)); border: 1px solid rgb(var(--line));
  border-radius: var(--r-xl); box-shadow: 0 26px 60px -18px rgb(0 0 0 / .38);
  padding: 1.35rem 1.45rem;
  opacity: 0; transform: translateY(140%); pointer-events: none;
  transition: opacity .4s cubic-bezier(.2,.7,.2,1), transform .5s cubic-bezier(.2,.7,.2,1);
}
.cookie-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.ck-inner { display: grid; grid-template-columns: auto 1fr; gap: .55rem 1.05rem; align-items: start; }
.ck-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.9rem; height: 2.9rem;
  border-radius: var(--r-md); background: rgb(var(--coral-soft)); color: rgb(var(--coral-deep)); font-size: 1.5rem; }
.ck-body h4 { font-size: 1.08rem; margin: .1rem 0 .35rem; }
.ck-body p { margin: 0; font-size: .92rem; line-height: 1.6; color: rgb(var(--muted)); }
.ck-body p a { color: rgb(var(--sage-deep)); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.ck-options { margin-top: 1rem; display: flex; flex-direction: column; gap: .55rem; }
.ck-toggle { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgb(var(--bg-warm)); border: 1px solid rgb(var(--line)); border-radius: var(--r-md);
  padding: .7rem .9rem; cursor: pointer; }
.ck-toggle span.txt { display: flex; flex-direction: column; gap: .1rem; }
.ck-toggle span.txt strong { font-size: .9rem; color: rgb(var(--ink)); font-weight: 600; }
.ck-toggle span.txt em { font-style: normal; font-size: .78rem; color: rgb(var(--muted)); }
.ck-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.ck-switch { position: relative; flex-shrink: 0; width: 2.6rem; height: 1.5rem; border-radius: 9999px;
  background: rgb(var(--line)); transition: background .22s ease; }
.ck-switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: calc(1.5rem - 4px); height: calc(1.5rem - 4px);
  border-radius: 9999px; background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / .25); transition: transform .22s ease; }
.ck-toggle input:checked + .ck-switch { background: rgb(var(--sage-deep)); }
.ck-toggle input:checked + .ck-switch::after { transform: translateX(1.1rem); }
.ck-switch.is-locked { background: rgb(var(--sage-deep)); opacity: .55; }
.ck-switch.is-locked::after { transform: translateX(1.1rem); }
.ck-toggle--locked { cursor: not-allowed; }
.ck-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1.05rem; }
.ck-actions .btn { flex: 1 1 auto; }
.ck-link { background: none; border: 0; cursor: pointer; font-family: var(--font-sans); font-weight: 600;
  font-size: .88rem; color: rgb(var(--muted)); padding: .5rem .4rem; text-decoration: underline; text-underline-offset: 3px; }
.ck-link:hover { color: rgb(var(--ink)); }
@media (min-width: 620px) {
  .ck-actions .btn { flex: 0 0 auto; }
  .ck-actions .ck-link { margin-left: auto; }
}
