/* MultiKitchen.dk — stylesheet
   Design language inherited from the WordPress theme: ink outlines, hard
   offset shadows, cream paper, teal/yellow/orange accents. Display face is
   Bricolage Grotesque; body is Inter. Both self-hosted, no external requests. */

/* ---------------------------------------------------------------- fonts */
@font-face {
  font-family: 'Bricolage';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/assets/fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bricolage';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url('/assets/fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'InterVar';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'InterVar';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------- tokens */
:root {
  --ink: #1c3145;
  --ink-soft: #2b4257;
  --text: #2c3239;
  --muted: #6b7683;
  --line: #dbe4e8;
  --rule: rgba(28, 49, 69, .8);
  --rule-light: rgba(28, 49, 69, .16);

  --bg: #fbfaf5;
  --paper: #ffffff;
  --cream: #f7f1e5;
  --cream-deep: #f2e7d2;

  --teal: #57b8c2;
  --teal-deep: #22707c;
  --yellow: #f6c955;
  --orange: #e98e44;
  --green: #2f8b67;
  --berry: #c2536b;

  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 10px;
  --pop: 5px 6px 0 var(--rule);
  --pop-sm: 3px 4px 0 var(--rule);
  --pop-soft: 0 18px 44px rgba(28, 49, 69, .10);

  --display: 'Bricolage', ui-sans-serif, system-ui, sans-serif;
  --body: 'InterVar', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --wrap-wide: 1320px;
  --gutter: clamp(16px, 4vw, 28px);
  --header-h: 74px;
}

/* ----------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* keeps horizontal scrollers from bleeding on iOS */
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; color: var(--ink); margin: 0; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.mk-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.mk-skip {
  position: absolute; left: 14px; top: -140px; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 700; text-decoration: none;
}
.mk-skip:focus { top: 14px; }

.mk-wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.mk-wrap--wide { width: min(var(--wrap-wide), 100% - var(--gutter) * 2); }

.mk-section { padding: clamp(40px, 6vw, 76px) 0; }
.mk-section--cream {
  background: var(--cream);
  border-block: 2px solid var(--rule);
}
.mk-section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: clamp(24px, 3.5vw, 38px);
}

.mk-section-title {
  font-size: clamp(29px, 4vw, 46px);
  position: relative;
  padding-bottom: 14px;
}
.mk-section-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: min(520px, 100%); height: 7px; border-radius: 99px;
  background: linear-gradient(90deg, var(--teal) 0 20%, var(--ink) 20% 100%);
}

.mk-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body);
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
  --cat: var(--teal);
}
.mk-kicker::before {
  content: ''; width: 26px; height: 7px; border-radius: 99px;
  background: var(--cat); flex: 0 0 auto;
}
a.mk-kicker:hover { color: var(--teal-deep); }

.mk-empty { color: var(--muted); font-size: 18px; }

/* -------------------------------------------------------------- buttons */
.mk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: linear-gradient(140deg, var(--yellow), var(--orange));
  color: #1a232e;
  font-family: var(--body);
  font-weight: 800; font-size: 15px; line-height: 1.2;
  text-decoration: none;
  box-shadow: var(--pop-sm);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.mk-btn:hover { transform: translate(-1px, -2px); box-shadow: 5px 7px 0 var(--rule); }
.mk-btn:active { transform: translate(1px, 2px); box-shadow: 1px 2px 0 var(--rule); }
.mk-btn--ghost { background: var(--paper); }
.mk-btn--sm { padding: 9px 15px; font-size: 14px; gap: 7px; }
.mk-btn__arrow { font-size: 15px; line-height: 1; translate: 0 -1px; }
.mk-btn__price {
  padding: 2px 8px; border-radius: 99px; background: rgba(28, 49, 69, .12);
  font-size: 13px; font-weight: 800;
}

/* --------------------------------------------------------------- header */
.mk-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--rule);
}
.mk-header__inner {
  width: min(var(--wrap-wide), 100% - var(--gutter) * 2);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 20px;
}

.mk-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 800;
  font-size: clamp(24px, 3vw, 30px); letter-spacing: -.05em; line-height: 1;
  flex: 0 0 auto;
}
.mk-logo__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.mk-logo__text span { color: var(--teal-deep); }
.mk-logo--light { color: #fff; }
.mk-logo--light .mk-logo__text span { color: var(--yellow); }

.mk-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.mk-nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); list-style: none; margin: 0; padding: 0; }
.mk-nav__list a {
  text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 15.5px; letter-spacing: -.01em;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.mk-nav__list a:hover { color: var(--teal-deep); border-bottom-color: var(--teal); }
.mk-nav__list a[aria-current='page'] { border-bottom-color: var(--yellow); }

.mk-nav__search {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border: 2px solid var(--ink); border-radius: 99px;
  background: var(--cream); color: var(--ink);
  text-decoration: none; font-weight: 800; font-size: 14px;
}
.mk-nav__search svg { width: 16px; height: 16px; }
.mk-nav__search:hover { background: var(--yellow); }

.mk-burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  border: 2px solid var(--ink); border-radius: 12px; background: var(--paper);
  align-items: center; justify-content: center; cursor: pointer;
}
.mk-burger span, .mk-burger span::before, .mk-burger span::after {
  display: block; width: 20px; height: 2.5px; border-radius: 99px;
  background: var(--ink); position: relative; transition: .18s ease;
}
.mk-burger span::before, .mk-burger span::after { content: ''; position: absolute; left: 0; }
.mk-burger span::before { top: -6.5px; }
.mk-burger span::after { top: 6.5px; }
body.nav-open .mk-burger span { background: transparent; }
body.nav-open .mk-burger span::before { transform: rotate(45deg); top: 0; }
body.nav-open .mk-burger span::after { transform: rotate(-45deg); top: 0; }

/* ----------------------------------------------------------------- hero */
.mk-hero { background: var(--paper); border-bottom: 2px solid var(--rule); }
.mk-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 42px minmax(0, .98fr);
  min-height: clamp(360px, 44vw, 540px);
}
.mk-hero__media { position: relative; overflow: hidden; background: var(--line); border-right: 2px solid var(--rule); }
.mk-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.mk-hero__strip {
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); border-right: 2px solid var(--rule); overflow: hidden;
}
.mk-hero__strip span {
  writing-mode: vertical-rl;
  font-family: var(--body); font-weight: 800; font-size: 12px;
  letter-spacing: .3em; white-space: nowrap; color: var(--ink);
}
.mk-hero__content {
  background: linear-gradient(150deg, #fffdf6 0%, #fff8e6 46%, #eefafb 100%);
  padding: clamp(28px, 4.5vw, 60px) clamp(24px, 4.5vw, 60px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.mk-hero__title {
  font-size: clamp(31px, 4.6vw, 56px);
  letter-spacing: -.045em;
  margin: 16px 0 14px;
}
.mk-hero__title a { text-decoration: none; }
.mk-hero__title a:hover { color: var(--teal-deep); }
.mk-hero__text { font-size: clamp(16px, 1.5vw, 19px); color: #3d4650; max-width: 52ch; margin-bottom: 24px; }
.mk-hero__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mk-hero__meta { font-size: 13px; font-weight: 700; color: var(--muted); }

/* ---------------------------------------------------------------- cards */
.mk-grid { display: grid; gap: clamp(20px, 2.6vw, 32px); }
.mk-grid--1 { grid-template-columns: minmax(0, 1fr); max-width: 620px; }
.mk-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mk-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mk-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.mk-card {
  display: flex; flex-direction: column; min-width: 0;
  background: var(--paper);
  border: 2px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--pop-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mk-card:hover { transform: translate(-2px, -3px); box-shadow: var(--pop); }
.mk-card__media {
  position: relative; display: block; aspect-ratio: 1.5;
  background: var(--line); border-bottom: 2px solid var(--rule); overflow: hidden;
}
.mk-card__media img { width: 100%; height: 100%; object-fit: cover; transition: scale .3s ease; }
.mk-card:hover .mk-card__media img { scale: 1.03; }
.mk-card__ph {
  display: block; width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(246, 201, 85, .5), transparent 55%),
    radial-gradient(circle at 72% 66%, rgba(87, 184, 194, .45), transparent 55%),
    var(--cream);
}
.mk-card__flag {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--ink); color: #fff;
  padding: 5px 11px; border-radius: 99px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.mk-card__body { padding: clamp(18px, 2.2vw, 24px); display: flex; flex-direction: column; flex: 1; gap: 8px; }
.mk-card__cat {
  --cat: var(--teal);
  align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft);
  border-bottom: 3px solid var(--cat); padding-bottom: 2px;
}
.mk-card__title { font-size: clamp(19px, 2vw, 23px); letter-spacing: -.03em; line-height: 1.22; }
.mk-card__title a { text-decoration: none; }
.mk-card__title a:hover { color: var(--teal-deep); }
.mk-card__text { color: var(--muted); font-size: 15px; margin: 0; }
.mk-card__meta {
  margin: auto 0 0; padding-top: 10px;
  display: flex; gap: 7px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px; font-weight: 600;
}
.mk-card--sm .mk-card__media { aspect-ratio: 1.35; }
.mk-card--sm .mk-card__title { font-size: 18.5px; }

/* ----------------------------------------------------------- categories */
.mk-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 18px; }
.mk-cat {
  --cat: var(--teal);
  display: flex; flex-direction: column; gap: 7px;
  padding: 22px 22px 20px;
  background: var(--paper);
  border: 2px solid var(--rule); border-radius: var(--r-md);
  border-left: 9px solid var(--cat);
  text-decoration: none; color: var(--text);
  box-shadow: var(--pop-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.mk-cat:hover { transform: translate(-2px, -3px); box-shadow: var(--pop); }
.mk-cat__name { font-family: var(--display); font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -.03em; }
.mk-cat__desc { font-size: 14.5px; color: var(--muted); }
.mk-cat__count { margin-top: 4px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-deep); }

/* --------------------------------------------------------------- trust */
.mk-trust {
  background:
    radial-gradient(110% 90% at 92% 0%, rgba(87, 184, 194, .22) 0%, transparent 56%),
    radial-gradient(90% 80% at 4% 100%, rgba(246, 201, 85, .12) 0%, transparent 52%),
    linear-gradient(172deg, #23394e 0%, var(--ink) 60%, #17293b 100%);
  color: #eef4f5;
  padding: clamp(42px, 6vw, 74px) 0;
}
.mk-trust__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.mk-trust .mk-kicker { color: var(--yellow); }
.mk-trust .mk-kicker::before { background: var(--yellow); }
.mk-trust__title { color: #fff; font-size: clamp(27px, 3.4vw, 40px); margin: 14px 0 14px; }
.mk-trust p { color: rgba(255, 255, 255, .8); max-width: 54ch; }
.mk-trust .mk-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; box-shadow: none; }
.mk-trust .mk-btn--ghost:hover { background: rgba(255, 255, 255, .12); box-shadow: none; }
.mk-trust__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mk-trust__list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-md); padding: 14px 16px;
  font-size: 15.5px; color: #fff;
}
.mk-trust__list svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--yellow); margin-top: 2px; }

/* ------------------------------------------------------------ crumbs */
.mk-crumbs { padding: 18px 0 0; }
.mk-crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--muted); }
.mk-crumbs li + li::before { content: '/'; margin-right: 6px; color: var(--rule-light); }
.mk-crumbs a { color: var(--muted); text-decoration: none; }
.mk-crumbs a:hover { color: var(--teal-deep); text-decoration: underline; }

/* -------------------------------------------------------------- article */
.mk-article { background: var(--paper); }
.mk-article__head { padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 3vw, 30px); }
.mk-article__title {
  font-size: clamp(32px, 5.2vw, 60px);
  letter-spacing: -.045em;
  margin: 16px 0 18px;
  max-width: 20ch;
}
.mk-article__lead {
  font-size: clamp(17px, 1.9vw, 21px);
  color: #414a55; max-width: 66ch; line-height: 1.55;
  margin-bottom: 22px;
}

.mk-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  padding-top: 16px; border-top: 2px solid var(--rule-light);
  font-size: 13.5px; font-weight: 600; color: var(--muted);
}
.mk-meta a { color: var(--ink); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--yellow); }
.mk-meta__link {
  margin-left: auto; border: 0 !important;
  color: var(--teal-deep) !important; text-decoration: underline;
}

.mk-hero-figure {
  width: min(var(--wrap-wide), 100% - var(--gutter) * 2);
  margin: 0 auto clamp(28px, 4vw, 46px);
}
.mk-hero-figure img {
  width: 100%; aspect-ratio: 16 / 8; object-fit: cover;
  border: 2px solid var(--rule); border-radius: var(--r-lg);
  box-shadow: var(--pop);
}
.mk-hero-figure figcaption {
  margin-top: 12px; text-align: center;
  font-size: 14px; color: var(--muted); font-style: italic;
}

/* ---------------------------------------------------------------- prose */
.mk-prose { width: min(760px, 100% - var(--gutter) * 2); padding-bottom: clamp(40px, 6vw, 76px); }
.mk-prose--page { padding-top: clamp(26px, 4vw, 44px); }
.mk-prose > * { max-width: 100%; }
.mk-prose p, .mk-prose li { font-size: clamp(16.5px, 1.7vw, 18.5px); }
.mk-prose h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 1.9em 0 .5em;
  padding-top: .3em;
}
.mk-prose h3 { font-size: clamp(21px, 2.4vw, 26px); margin: 1.7em 0 .45em; }
.mk-prose h4 { font-size: clamp(18px, 2vw, 21px); margin: 1.5em 0 .4em; }
.mk-prose h2:first-child, .mk-prose h3:first-child { margin-top: 0; }
.mk-prose a { color: var(--teal-deep); font-weight: 650; text-decoration-color: rgba(87, 184, 194, .5); }
.mk-prose a:hover { text-decoration-color: currentColor; }
.mk-prose strong { font-weight: 750; color: #1f252c; }
.mk-prose li { margin-bottom: .45em; }
.mk-prose ul li::marker { color: var(--teal-deep); }
.mk-prose ol li::marker { font-weight: 800; color: var(--orange); }
.mk-prose hr { border: 0; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--teal), var(--yellow)); margin: 2.4em 0; }
.mk-prose img { border-radius: var(--r-md); border: 2px solid var(--rule-light); }
.mk-prose figcaption { font-size: 14px; color: var(--muted); text-align: center; margin-top: 8px; }

.mk-figure { margin: 2em 0; }
.mk-figure img {
  width: 100%; border: 2px solid var(--rule); border-radius: var(--r-md);
  box-shadow: var(--pop-sm);
}
.mk-figure figcaption { margin-top: 10px; font-size: 14px; color: var(--muted); text-align: center; }

.mk-quote {
  margin: 2em 0; padding: 22px 24px 22px 26px;
  border: 2px solid var(--ink); border-left-width: 9px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, #fff8e8, #eefafb);
  box-shadow: var(--pop-sm);
  font-size: 18px; color: #26303b;
}
.mk-quote p:last-child { margin-bottom: 0; }

.mk-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.8em 0; }
.mk-prose table { width: 100%; min-width: 520px; font-size: 15.5px; background: var(--paper); }
.mk-prose th, .mk-prose td { border: 1px solid var(--rule-light); padding: 11px 13px; text-align: left; vertical-align: top; }
.mk-prose th { background: #eef8f9; color: var(--ink); font-weight: 800; }

/* Component links inside .mk-prose keep their own colour. Without this the
   generic `.mk-prose a` rule (higher specificity than `.mk-btn`) turns every
   button and card title teal. */
.mk-prose .mk-btn { color: #1a232e; font-weight: 800; text-decoration: none; }
.mk-prose .mk-btn--ghost { color: var(--ink); }
.mk-prose .rv-pick__name a,
.mk-prose .rv-table__model a,
.mk-prose .rv-toc__list a,
.mk-prose .rv-faq__item summary a { color: var(--ink); text-decoration: none; }
.mk-prose .rv-pick__name a:hover,
.mk-prose .rv-table__model a:hover,
.mk-prose .rv-toc__list a:hover { color: var(--teal-deep); }
.mk-prose .rv-pick__media { text-decoration: none; }

/* -------------------------------------------------------- review blocks */
.rv-block-title {
  font-size: clamp(24px, 3vw, 33px);
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.rv-block-title::after {
  content: ''; flex: 1; height: 3px; border-radius: 99px;
  background: linear-gradient(90deg, var(--rule-light), transparent);
}

.mk-prose > .rv-podium,
.mk-prose > .rv-compare,
.mk-prose > .mk-note,
.mk-prose > .mk-sources,
.mk-prose > .mk-figure,
.mk-prose > .rv-products,
.mk-prose > .rv-faq,
.mk-prose > .rv-toc,
.mk-prose > .rv-disclosure,
.mk-prose > .rv-banner,
.mk-prose > .rv-cta { margin: clamp(34px, 5vw, 54px) 0; }

/* podium */
.rv-podium__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rv-pick {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 34px 18px 18px;
  background: var(--paper);
  border: 2px solid var(--rule); border-radius: var(--r-md);
  box-shadow: var(--pop-sm);
}
.rv-pick--1 { background: linear-gradient(170deg, #fffaec, var(--paper) 55%); border-color: var(--ink); }
.rv-pick__badge {
  position: absolute; top: -12px; left: 16px;
  padding: 5px 13px; border-radius: 99px;
  background: var(--ink); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}
.rv-pick--1 .rv-pick__badge { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: #1a232e; border: 2px solid var(--ink); }
.rv-pick__media {
  display: block; aspect-ratio: 1.25; border-radius: var(--r-sm); overflow: hidden;
  background: #fff; border: 1px solid var(--rule-light);
}
.rv-pick__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.rv-pick__name { font-size: 18px; line-height: 1.25; }
.rv-pick__name a { text-decoration: none; }
.rv-pick__name a:hover { color: var(--teal-deep); }
.rv-pick__text { font-size: 14.5px; color: var(--muted); margin: 0; }
.rv-pick__foot { margin-top: auto; padding-top: 10px; display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.rv-pick__foot .mk-btn { width: 100%; white-space: nowrap; }

.rv-price { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: -.02em; }
.rv-price--lg { font-size: 24px; }

/* score pill */
.rv-score {
  display: inline-flex; align-items: baseline; gap: 3px;
  padding: 5px 12px; border-radius: 99px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--display); font-weight: 800; line-height: 1;
  white-space: nowrap;
}
.rv-score__num { font-size: 19px; }
.rv-score__max { font-size: 12px; color: var(--muted); }
.rv-score__word {
  font-family: var(--body); font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  margin-left: 5px; padding-left: 8px; border-left: 1px solid var(--rule-light);
  color: var(--ink-soft);
}
.rv-score[data-tier='excellent'] { background: #e7f6ee; }
.rv-score[data-tier='verygood'] { background: #eef8f9; }
.rv-score[data-tier='good'] { background: #fdf6e4; }
.rv-score[data-tier='ok'] { background: #fbf0ec; }
.rv-score--sm { padding: 3px 9px; border-width: 1.5px; }
.rv-score--sm .rv-score__num { font-size: 15px; }
.rv-score--sm .rv-score__word { display: none; }

/* comparison table */
.rv-table-wrap {
  border: 2px solid var(--rule); border-radius: var(--r-md);
  box-shadow: var(--pop-sm); background: var(--paper); margin: 0;
}
.rv-table { width: 100%; min-width: 700px; font-size: 15px; }
.rv-table th, .rv-table td { padding: 12px 14px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--rule-light); }
.rv-table thead th {
  background: var(--cream); color: var(--ink);
  font-family: var(--body); font-size: 11.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 2px solid var(--rule);
}
.rv-table tbody tr:last-child th, .rv-table tbody tr:last-child td { border-bottom: 0; }
.rv-table tr.is-winner { background: #fffbef; }
.rv-table__rank { width: 52px; }
.rv-rank-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 14px;
}
.rv-table__model a { font-weight: 750; color: var(--ink); text-decoration: none; }
.rv-table__model a:hover { color: var(--teal-deep); text-decoration: underline; }
.rv-table__price { white-space: nowrap; font-weight: 700; }
.rv-table__cta { text-align: right; }
.rv-table__cta .mk-btn { white-space: nowrap; }
.rv-table__model { min-width: 210px; }
.rv-tag {
  display: inline-block; margin-left: 8px; padding: 2px 9px; border-radius: 99px;
  background: var(--cream-deep); color: var(--ink-soft);
  font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  vertical-align: middle;
}
.rv-tag--solid { background: var(--ink); color: #fff; margin: 0; padding: 5px 12px; font-size: 11.5px; }
.rv-compare__note { font-size: 13.5px; color: var(--muted); margin: 12px 0 0; }

/* highlight box — used by {{note:id}} and the optional {{methodology}} */
.mk-note {
  display: flex; gap: 16px;
  padding: 20px 24px;
  border: 2px solid var(--rule); border-left-width: 8px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #fffaed 0%, #f4fbfc 100%);
  box-shadow: var(--pop-sm);
}
.mk-note__icon { flex: 0 0 auto; width: 26px; height: 26px; margin-top: 2px; color: var(--teal-deep); }
.mk-note__icon svg { width: 100%; height: 100%; }
.mk-note__title { font-size: 19px; margin-bottom: 8px; letter-spacing: -.03em; }
.mk-note__body p { font-size: 16px; color: #3a444f; margin-bottom: .7em; }
.mk-note__body p:last-of-type { margin-bottom: 0; }
.mk-note__link { display: inline-block; margin-top: 10px; font-weight: 800; color: var(--teal-deep); font-size: 15px; text-decoration: none; }
.mk-note__link:hover { text-decoration: underline; }

/* combined source list, only rendered when {{sources}} is used */
.mk-sources__grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.mk-sources__group { padding: 16px 18px; border: 2px solid var(--rule-light); border-radius: var(--r-md); background: var(--paper); }
.mk-sources__group h3 { font-size: 16px; margin-bottom: 8px; }
.mk-sources__group ul { margin: 0; padding-left: 1.1em; font-size: 14.5px; }
.mk-sources__group a { color: var(--teal-deep); }

/* product block/* product block — the rank plate is the signature element */
.rv-products { display: grid; gap: clamp(30px, 4.5vw, 52px); }
.rv-product {
  position: relative;
  padding: 26px clamp(18px, 2.6vw, 30px) 24px;
  background: var(--paper);
  border: 2px solid var(--rule); border-radius: var(--r-lg);
  box-shadow: var(--pop);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.rv-product.is-winner {
  border-color: var(--ink);
  background: linear-gradient(178deg, #fffdf4, var(--paper) 22%);
  overflow: hidden;
}
.rv-product.is-winner::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}
.rv-product__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.rv-product__rank {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: linear-gradient(140deg, var(--yellow), var(--orange));
  box-shadow: var(--pop-sm);
  font-family: var(--display); font-weight: 800; font-size: 22px;
  color: #1a232e; letter-spacing: -.04em;
}
.rv-product__heading { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.rv-product__name { font-size: clamp(22px, 3vw, 31px); letter-spacing: -.04em; }
.rv-product__flags { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }

.rv-product__top { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(18px, 3vw, 30px); align-items: start; }
.rv-product__media {
  margin: 0; aspect-ratio: 1.15;
  border: 2px solid var(--rule-light); border-radius: var(--r-md);
  background: #fff; overflow: hidden;
}
.rv-product__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.rv-product__buy { display: flex; flex-direction: column; gap: 12px; }
.rv-offers { display: flex; flex-wrap: wrap; gap: 9px; }
.rv-offers__note, .rv-cta__note { font-size: 12.5px; color: var(--muted); margin: 0; }
.rv-product__summary { font-size: 16.5px; color: #3a444f; margin: 4px 0 0; }

.rv-bars { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 8px; }
.rv-bar { display: grid; grid-template-columns: minmax(0, 40%) 1fr 34px; gap: 12px; align-items: center; font-size: 13.5px; }
/* Long single words such as "Brugervenlighed" must not spill over the track. */
.rv-bar__label { min-width: 0; font-weight: 700; color: var(--ink-soft); overflow-wrap: anywhere; }
.rv-bar__track { height: 9px; border-radius: 99px; background: var(--line); overflow: hidden; }
.rv-bar__fill { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--teal), var(--green)); }
.rv-bar__value { font-family: var(--display); font-weight: 800; text-align: right; color: var(--ink); }

.rv-product__body { margin-top: 22px; }
.rv-product__body p { font-size: 16.5px; }
.rv-product__body p:last-child { margin-bottom: 0; }

.rv-proscons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.rv-pc { padding: 18px 20px; border-radius: var(--r-md); border: 2px solid var(--rule-light); }
.rv-pc--pro { background: #f0f9f4; border-color: rgba(47, 139, 103, .3); }
.rv-pc--con { background: #fdf3f0; border-color: rgba(194, 83, 107, .28); }
.rv-pc__title { font-size: 15px; letter-spacing: .04em; text-transform: uppercase; font-family: var(--body); font-weight: 800; margin-bottom: 10px; }
.rv-pc--pro .rv-pc__title { color: var(--green); }
.rv-pc--con .rv-pc__title { color: var(--berry); }
.rv-pc ul { margin: 0; padding-left: 1.15em; }
.rv-pc li { font-size: 15px; margin-bottom: .35em; }
.rv-pc--pro li::marker { color: var(--green); }
.rv-pc--con li::marker { color: var(--berry); }

.rv-specs, .rv-sources { margin-top: 18px; border: 2px solid var(--rule-light); border-radius: var(--r-md); background: #fcfcfa; }
.rv-specs > summary, .rv-sources > summary {
  cursor: pointer; list-style: none;
  padding: 13px 18px;
  font-family: var(--body); font-weight: 800; font-size: 14.5px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.rv-specs > summary::-webkit-details-marker, .rv-sources > summary::-webkit-details-marker { display: none; }
.rv-specs > summary::after, .rv-sources > summary::after {
  content: '+'; font-family: var(--display); font-size: 20px; line-height: 1; color: var(--teal-deep);
}
.rv-specs[open] > summary::after, .rv-sources[open] > summary::after { content: '–'; }
.rv-specs .mk-scroll { margin: 0; }
.rv-specs__table { width: 100%; min-width: 380px; font-size: 15px; }
.rv-specs__table th, .rv-specs__table td { padding: 10px 18px; text-align: left; border-top: 1px solid var(--rule-light); }
.rv-specs__table th { width: 44%; color: var(--ink-soft); font-weight: 700; }
.rv-sources ul { margin: 0; padding: 0 18px 16px 34px; font-size: 14.5px; }
.rv-sources a { color: var(--teal-deep); }

.rv-verdict {
  margin-top: 20px; padding: 18px 22px;
  border-radius: var(--r-md);
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, #fff8e6, #eefafb);
  box-shadow: var(--pop-sm);
}
.rv-verdict__label {
  display: inline-block; margin-bottom: 6px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--teal-deep);
}
.rv-verdict p { margin: 0; font-size: 16.5px; font-weight: 600; color: #26303b; }

/* affiliate banner */
.rv-banner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px); align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border: 2px solid var(--ink); border-radius: var(--r-lg);
  background: linear-gradient(135deg, #fff5da 0%, #f3fbfc 52%, #eaf7f0 100%);
  box-shadow: var(--pop);
}
.rv-banner__label {
  position: absolute; top: 10px; right: 14px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.rv-banner__media {
  aspect-ratio: 1.12; background: #fff;
  border: 2px solid var(--rule-light); border-radius: var(--r-md); overflow: hidden;
}
.rv-banner__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.rv-banner__eyebrow {
  display: inline-block; margin-bottom: 9px;
  padding: 5px 12px; border-radius: 99px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.rv-banner__title { font-size: clamp(21px, 2.6vw, 28px); margin-bottom: 8px; }
.rv-banner__text { font-size: 16px; color: #3a444f; margin-bottom: 16px; }
.rv-banner__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.rv-banner__note { margin: 12px 0 0; font-size: 12.5px; color: var(--muted); }

/* inline CTA */
.rv-cta {
  display: grid; gap: 12px;
  padding: 18px 22px;
  border: 2px solid var(--rule); border-radius: var(--r-md);
  background: var(--cream); box-shadow: var(--pop-sm);
}
.rv-cta__text { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; font-family: var(--display); font-size: 18px; color: var(--ink); }
.rv-cta__actions { display: flex; flex-wrap: wrap; gap: 9px; }

/* table of contents */
.rv-toc {
  padding: 22px 24px;
  border: 2px solid var(--rule); border-radius: var(--r-md);
  background: var(--paper); box-shadow: var(--pop-sm);
}
.rv-toc__title { font-size: 15px; font-family: var(--body); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.rv-toc__list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 30px; }
.rv-toc__list li { break-inside: avoid; margin-bottom: 7px; }
.rv-toc__list a { display: flex; gap: 10px; align-items: baseline; text-decoration: none; font-size: 15.5px; font-weight: 600; color: var(--text); }
.rv-toc__list a:hover { color: var(--teal-deep); text-decoration: underline; }
.rv-toc__num { font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--teal-deep); flex: 0 0 auto; }

/* faq */
.rv-faq__item {
  border: 2px solid var(--rule-light); border-radius: var(--r-md);
  background: var(--paper); margin-bottom: 10px;
}
.rv-faq__item[open] { border-color: var(--rule); }
.rv-faq__item > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px;
  font-family: var(--display); font-weight: 700; font-size: 17.5px; color: var(--ink);
}
.rv-faq__item > summary::-webkit-details-marker { display: none; }
.rv-faq__icon { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.rv-faq__icon::before, .rv-faq__icon::after {
  content: ''; position: absolute; inset: 50% 0 auto 0; height: 2.5px;
  background: var(--teal-deep); border-radius: 99px; transition: transform .18s ease;
}
.rv-faq__icon::after { transform: rotate(90deg); }
.rv-faq__item[open] .rv-faq__icon::after { transform: rotate(0); }
.rv-faq__answer { padding: 0 20px 16px; font-size: 16px; color: #3a444f; }
.rv-faq__answer p:last-child { margin-bottom: 0; }

/* disclosure */
.rv-disclosure {
  padding: 20px 24px;
  border-left: 8px solid var(--yellow);
  border-radius: var(--r-sm);
  background: #f6f7f4;
}
.rv-disclosure__title { font-size: 16px; font-family: var(--body); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.rv-disclosure p { font-size: 14.5px; color: var(--muted); margin-bottom: .6em; }
.rv-disclosure a { color: var(--teal-deep); font-weight: 700; }

/* author box */
.mk-article__foot { padding-bottom: clamp(34px, 5vw, 60px); }
.rv-author {
  display: flex; gap: 20px; align-items: center;
  margin: clamp(30px, 4vw, 44px) 0 0;
  padding: 22px 24px;
  border: 2px solid var(--rule); border-radius: var(--r-lg);
  background: var(--cream); box-shadow: var(--pop-sm);
}
.rv-author__avatar {
  flex: 0 0 auto; width: 84px; height: 84px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--ink); background: var(--paper);
  display: grid; place-items: center;
}
.rv-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.rv-author__initials { font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--ink); }
.rv-author__kicker { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.rv-author__name { font-size: 21px; margin: 4px 0 2px; }
.rv-author__name a { text-decoration: none; }
.rv-author__name a:hover { color: var(--teal-deep); }
.rv-author__role { font-size: 13.5px; font-weight: 700; color: var(--teal-deep); margin: 0 0 6px; }
.rv-author__bio { font-size: 15px; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------ sub-pages */
.mk-page-head {
  background:
    radial-gradient(70% 120% at 88% 0%, rgba(87, 184, 194, .11) 0%, transparent 60%),
    radial-gradient(60% 100% at 4% 10%, rgba(246, 201, 85, .12) 0%, transparent 58%),
    var(--paper);
  border-bottom: 2px solid var(--rule);
  padding-bottom: clamp(26px, 4vw, 44px);
}
.mk-page-title { font-size: clamp(31px, 5vw, 54px); letter-spacing: -.045em; margin: 14px 0 14px; }
.mk-page-lead { font-size: clamp(16.5px, 1.8vw, 20px); color: #414a55; max-width: 68ch; }
.mk-page-updated { font-size: 13.5px; color: var(--muted); margin: 0; }

.mk-related {
  background: linear-gradient(180deg, var(--cream) 0%, #f3ece0 100%);
  border-top: 2px solid var(--rule);
  padding: clamp(40px, 6vw, 72px) 0;
}
.mk-related__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(22px, 3vw, 32px); }
/* flex rather than grid: a single related article stays card-sized
   instead of stretching across the full width */
.mk-related__list { display: flex; flex-wrap: wrap; gap: 14px; }
.mk-rel { flex: 1 1 300px; max-width: 430px; }

.mk-rel {
  display: grid; grid-template-columns: 106px minmax(0, 1fr);
  align-items: stretch; gap: 0;
  background: var(--paper);
  border: 2px solid var(--rule); border-radius: var(--r-md);
  box-shadow: var(--pop-sm);
  text-decoration: none; color: var(--text);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}
.mk-rel:hover { transform: translate(-2px, -3px); box-shadow: var(--pop); }
.mk-rel__media { display: block; background: var(--line); border-right: 2px solid var(--rule); overflow: hidden; }
.mk-rel__media img { width: 100%; height: 100%; object-fit: cover; }
.mk-rel__body { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px; min-width: 0; }
.mk-rel__kicker { font-size: 10.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--teal-deep); }
.mk-rel__title {
  font-family: var(--display); font-weight: 800; font-size: 17px;
  line-height: 1.22; letter-spacing: -.03em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.mk-rel:hover .mk-rel__title { color: var(--teal-deep); }
.mk-rel__meta { margin-top: auto; font-size: 12.5px; font-weight: 600; color: var(--muted); }

.mk-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: clamp(30px, 4vw, 46px); }
.mk-page-link {
  min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 15px; border: 2px solid var(--rule); border-radius: 99px;
  background: var(--paper); text-decoration: none; font-weight: 800; font-size: 15px;
}
.mk-page-link:hover { background: var(--cream); }
.mk-page-link.is-current { background: var(--ink); color: #fff; border-color: var(--ink); }

.mk-author-head { background: var(--paper); border-bottom: 2px solid var(--rule); padding-bottom: clamp(28px, 4vw, 46px); }
.mk-author-head__grid { display: grid; grid-template-columns: 168px minmax(0, 1fr); gap: clamp(20px, 4vw, 40px); align-items: start; margin-top: 20px; }
.mk-author-head__photo {
  width: 168px; height: 168px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--ink); background: var(--cream);
  display: grid; place-items: center; box-shadow: var(--pop);
}
.mk-author-head__photo img { width: 100%; height: 100%; object-fit: cover; }
.mk-author-head__bio { font-size: 16.5px; color: #414a55; max-width: 66ch; }
.mk-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; }
.mk-chips__label { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.mk-chip { padding: 6px 13px; border-radius: 99px; background: var(--cream); border: 2px solid var(--rule-light); font-size: 13.5px; font-weight: 700; }

.mk-404 { padding: clamp(60px, 10vw, 120px) 0; text-align: center; background: radial-gradient(circle at 22% 22%, rgba(246, 201, 85, .3), transparent 40%), radial-gradient(circle at 78% 18%, rgba(87, 184, 194, .28), transparent 38%), var(--paper); }
.mk-404__code { font-family: var(--display); font-weight: 800; font-size: clamp(72px, 16vw, 150px); line-height: 1; color: var(--ink); letter-spacing: -.06em; opacity: .16; display: block; }
.mk-404 .mk-page-lead { margin-inline: auto; }
.mk-404__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.mk-search { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 14px; max-width: 620px; }
.mk-search input {
  flex: 1 1 240px; min-width: 0;
  padding: 13px 18px; border: 2px solid var(--rule); border-radius: 99px; background: var(--paper);
}
.mk-search button {
  padding: 13px 24px; border: 2px solid var(--ink); border-radius: 99px;
  background: linear-gradient(140deg, var(--yellow), var(--orange));
  font-weight: 800; cursor: pointer; box-shadow: var(--pop-sm);
}
.mk-search__status { font-size: 14.5px; color: var(--muted); margin: 0; }

.mk-page-after { padding-bottom: clamp(40px, 6vw, 76px); }
.mk-contact { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.mk-contact__form { padding: clamp(22px, 3vw, 32px); background: var(--paper); border: 2px solid var(--rule); border-radius: var(--r-lg); box-shadow: var(--pop); }
.mk-contact__title { font-size: 24px; margin-bottom: 18px; }
.mk-field { margin-bottom: 16px; }
.mk-field label { display: block; font-weight: 800; font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.mk-field input, .mk-field textarea {
  width: 100%; padding: 12px 15px;
  border: 2px solid var(--rule-light); border-radius: var(--r-sm);
  background: #fdfdfb; resize: vertical;
}
.mk-field input:focus, .mk-field textarea:focus { border-color: var(--teal-deep); }
.mk-contact__hint { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; }
.mk-contact__aside { padding: clamp(20px, 3vw, 28px); background: var(--cream); border: 2px solid var(--rule); border-radius: var(--r-lg); }
.mk-contact__aside h2 { font-size: 20px; margin-bottom: 10px; }
.mk-contact__aside a { color: var(--teal-deep); font-weight: 700; }
.mk-contact__legal { font-size: 14px; color: var(--muted); }

/* --------------------------------------------------------------- footer */
.mk-footer {
  position: relative;
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(87, 184, 194, .22) 0%, transparent 58%),
    radial-gradient(100% 80% at 96% 8%, rgba(246, 201, 85, .14) 0%, transparent 55%),
    linear-gradient(178deg, #23394e 0%, var(--ink) 46%, #16283a 100%);
  color: rgba(255, 255, 255, .82);
  padding-top: clamp(46px, 6vw, 72px);
}
.mk-footer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--yellow) 46%, var(--orange) 100%);
}
.mk-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, .87fr)); gap: clamp(24px, 4vw, 46px); }
.mk-footer__about { font-size: 15px; line-height: 1.65; max-width: 44ch; margin: 16px 0 12px; }
.mk-footer__contact a { color: var(--yellow); font-weight: 700; }
.mk-footer__title { color: #fff; font-family: var(--body); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.mk-footer__list { list-style: none; margin: 0; padding: 0; }
.mk-footer__list li { margin-bottom: 9px; }
.mk-footer__list a { color: rgba(255, 255, 255, .8); text-decoration: none; font-size: 15px; font-weight: 600; }
.mk-footer__list a:hover { color: #fff; text-decoration: underline; }
.mk-footer__bottom {
  margin-top: clamp(32px, 5vw, 52px); padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 13.5px; color: rgba(255, 255, 255, .62);
}
.mk-footer__bottom p { margin: 0 0 6px; }
.mk-footer__affiliate { max-width: 80ch; }

/* ----------------------------------------------------------- cookie bar */
.mk-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  width: min(var(--wrap-wide), 100% - 24px);
  margin: 0 auto 12px;
  padding: 12px 18px;
  background: rgba(28, 49, 69, .97);
  color: rgba(255, 255, 255, .9);
  border-radius: var(--r-md);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
  animation: mk-cookie-in .3s ease both;
}
.mk-cookie[hidden] { display: none; }
.mk-cookie__text { margin: 0; font-size: 13.5px; line-height: 1.5; flex: 1 1 320px; }
.mk-cookie__text a { color: var(--yellow); }
.mk-cookie__ok {
  padding: 8px 22px; border: 0; border-radius: 99px;
  background: var(--yellow); color: #1a232e;
  font-weight: 800; font-size: 14px; cursor: pointer;
}
.mk-cookie__ok:hover { background: #fff; }
@keyframes mk-cookie-in { from { transform: translateY(16px); opacity: 0; } }

/* ----------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .mk-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mk-hero__grid { grid-template-columns: 1fr; }
  .mk-hero__media { border-right: 0; border-bottom: 2px solid var(--rule); aspect-ratio: 16 / 9; }
  .mk-hero__strip { display: none; }
  .mk-trust__inner { grid-template-columns: 1fr; }
  .mk-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mk-contact { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .mk-burger { display: inline-flex; }
  .mk-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 20px;
    background: var(--paper);
    border-bottom: 2px solid var(--rule);
    box-shadow: var(--pop-soft);
  }
  body.nav-open .mk-nav { display: flex; }
  .mk-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .mk-nav__list a { display: block; padding: 13px 0; border-bottom: 1px solid var(--rule-light); font-size: 17px; }
  .mk-nav__list a:hover, .mk-nav__list a[aria-current='page'] { border-bottom-color: var(--rule-light); }
  .mk-nav__search { margin-top: 14px; justify-content: center; }
  .rv-product__top { grid-template-columns: 1fr; }
  .rv-product__media { max-width: 420px; }
  .rv-banner { grid-template-columns: 1fr; }
  .rv-banner__media { max-width: 300px; }
  .mk-author-head__grid { grid-template-columns: 1fr; }
  .mk-author-head__photo { width: 132px; height: 132px; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .mk-grid--2, .mk-grid--3, .mk-grid--4 { grid-template-columns: 1fr; }
  .rv-podium__grid { grid-template-columns: 1fr; gap: 26px; }
  .rv-proscons { grid-template-columns: 1fr; }
  .rv-toc__list { columns: 1; }
  .mk-footer__grid { grid-template-columns: 1fr; }
  .mk-meta__link { margin-left: 0; }
  .rv-product__head { gap: 12px; }
  .rv-product__rank { width: 44px; height: 44px; font-size: 18px; }
  .rv-bar { grid-template-columns: minmax(0, 44%) 1fr 30px; gap: 9px; font-size: 12.5px; }
  .mk-hero__media { aspect-ratio: 3 / 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .mk-header, .mk-footer, .mk-cookie, .rv-offers, .mk-btn, .rv-banner { display: none !important; }
  body { background: #fff; }
}
