/* =====================================================================
   Vibe Codex – Theme-Styles
   Design-DNA: helles Grau, weisse Karten mit weichem Schatten, Blau
   #0081ad als Leitfarbe, Orange #e16620 als Akzent, Roboto / Roboto Slab.
   ===================================================================== */

:root {
  --c-white: #fff;
  --c-blue: #0081ad;
  --c-blue-light: #5baac5;
  --c-blue-dark: #005f7f;
  --c-navy: #0f2b3d;
  --c-red: #e32013;
  --c-grey: #707070;
  --c-grey-mid: #767676;
  --c-line: #e6e6e6;
  --c-orange: #e16620;
  --c-orange-light: #dd8a5b;
  --c-grey-light: #f8f8f8;
  --c-grey-dark: #373737;
  --b-gradient: linear-gradient(90deg, var(--c-blue), var(--c-blue-light));
  --b-gradient-h: linear-gradient(90deg, var(--c-blue-dark), var(--c-blue));
  --b-gradient-hl: linear-gradient(90deg, var(--c-orange), var(--c-orange-light));
  --b-gradient-hlh: linear-gradient(90deg, #c9571a, var(--c-orange));
  --b-shadow: 0 3px 6px rgba(0, 0, 0, .14);
  --b-shadow-lg: 0 14px 34px rgba(0, 40, 60, .16);
  --b-radius: 6px;
  --b-radius-lg: 12px;
  --b-opacity: rgba(255, 255, 255, .92);
  --f-sans: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-serif: "Roboto Slab", Georgia, serif;
  --sp-xs: 5px; --sp-s: 10px; --sp-m: 20px; --sp-l: 40px; --sp-xl: 64px;
  --fs-xs: 12px; --fs-s: 14px; --fs: 16px; --fs-l: 20px; --fs-xl: 30px; --fs-xxl: 40px;
  --lh-xs: 14px; --lh-s: 20px; --lh: 26px; --lh-l: 28px; --lh-xl: 36px; --lh-xxl: 48px;
  --ease: cubic-bezier(.165, .84, .44, 1);
  --max: 1440px;
}

/* ------------------------------------------------------------ Basis */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  margin: 0; min-width: 320px; overflow-x: hidden;
  background: var(--c-grey-light); color: var(--c-grey);
  font: 400 var(--fs-s) / var(--lh-s) var(--f-sans);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 48em) { body { font-size: var(--fs); line-height: var(--lh); } }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--c-grey-dark); }
a { color: var(--c-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-blue-dark); }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--c-blue); outline-offset: 2px; border-radius: 3px; }

.u-visually-hidden, .skip-link:not(:focus) {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus { position: fixed; top: 10px; left: 10px; z-index: 100; background: var(--c-white); padding: 10px 16px; box-shadow: var(--b-shadow); }

.icon { display: inline-flex; width: 1.25em; height: 1.25em; vertical-align: -.25em; flex: none; }
.icon svg { width: 100%; height: 100%; }

/* ------------------------------------------------------------ Gerüst */
.site {
  display: grid; grid-template-rows: auto 1fr auto; min-height: 100vh;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-m);
}
.main { padding-bottom: var(--sp-l); }

/* Vollbreite über den Rand hinaus (Header, Footer, CTA) */
.full-bleed::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw; width: 100vw; background: inherit; z-index: -1;
}

/* ------------------------------------------------------------ Header */
.header {
  position: sticky; top: 0; z-index: 30; background: var(--c-white);
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  padding: var(--sp-m) 0 var(--sp-s);
}
.header::before {
  content: ""; position: absolute; inset: 0 50%; margin: 0 -50vw; width: 100vw;
  background: var(--c-white); box-shadow: var(--b-shadow); z-index: -1;
}
.header::after { /* feine Gradient-Linie unten: der «Vibe» */
  content: ""; position: absolute; left: 50%; bottom: 0; width: 100vw; height: 3px; margin-left: -50vw;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-light) 45%, var(--c-orange) 100%);
  opacity: .9;
}
.header__meta { display: none; }
.header__logo a { display: block; }
.header__logo .logo-svg, .header__logo img { height: 44px; width: auto; }
.header__icons { display: flex; align-items: center; gap: var(--sp-s); }
.header__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--c-grey-light); color: var(--c-blue); border: 0; cursor: pointer; transition: background .2s, transform .2s;
}
.header__icon:hover { background: #e9f4f8; transform: translateY(-1px); }
.header__burger { flex-direction: column; gap: 4px; }
.header__burger span { display: block; width: 20px; height: 2px; background: var(--c-blue); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Navigation – mobil als ausklappbare Liste */
.nav { flex: 1 1 100%; display: none; padding-top: var(--sp-s); }
.nav.is-open { display: block; max-height: calc(100vh - 90px); overflow-y: auto; }
.nav__list { list-style: none; margin: 0; padding: 0; }
.nav__list li { position: relative; }
.nav__list li + li { border-top: 1px solid var(--c-line); }
.nav__list a {
  display: block; padding: 12px var(--sp-s); color: var(--c-grey); font-size: var(--fs); line-height: var(--lh-l); font-weight: 500; border-radius: var(--b-radius);
}
.nav__list a:hover, .nav__list .is-active > a { color: var(--c-blue); }
.nav__list .sub-menu { list-style: none; margin: 0; padding: 0 0 var(--sp-s) var(--sp-m); display: none; }
.nav__list .sub-menu a { font-size: var(--fs-s); padding: 8px var(--sp-s); }
.nav__list .submenu-toggle {
  position: absolute; right: 4px; top: 8px; width: 36px; height: 36px; border: 0; background: transparent; cursor: pointer; border-radius: 50%;
}
.nav__list .submenu-toggle span { display: block; width: 9px; height: 9px; margin: 0 auto; border-right: 2px solid var(--c-grey); border-bottom: 2px solid var(--c-grey); transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.nav__list .submenu-toggle[aria-expanded="true"] span { transform: translateY(3px) rotate(-135deg); }
.nav__list .submenu-toggle[aria-expanded="true"] + .sub-menu { display: block; }

@media (min-width: 64em) {
  .header { padding: 38px 0 0; align-items: flex-end; }
  .header__meta {
    display: flex; position: absolute; top: 0; right: 0; gap: var(--sp-m); align-items: center;
    font-size: var(--fs-xs); line-height: var(--lh-xs); color: var(--c-grey);
  }
  .header__links { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--sp-m); }
  .header__links a { color: inherit; }
  .header__links a:hover { color: var(--c-blue); }
  .header__badge { display: inline-flex; align-items: center; gap: 6px; background: var(--c-grey-light); padding: 4px 10px 4px 6px; border-radius: 0 0 var(--b-radius) var(--b-radius); font-weight: 700; }
  .header__badge .icon { width: 16px; height: 16px; }
  .header__logo { padding-bottom: 12px; }
  .header__logo .logo-svg, .header__logo img { height: 56px; }
  .header__icons { display: none; }
  .nav { flex: 0 1 auto; display: block; padding: 0; }
  .nav__list { display: flex; align-items: stretch; }
  .nav__list li + li { border-top: 0; }
  .nav__list > li { margin-left: 6px; }
  .nav__list a { padding: 14px 12px 18px; position: relative; font-weight: 500; }
  .nav__list > li > a::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: 10px; height: 3px; border-radius: 3px;
    background: var(--b-gradient); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
  }
  .nav__list > li > a:hover::after, .nav__list > li.is-active > a::after { transform: scaleX(1); }
  .nav__list .submenu-toggle { display: none; }
  .nav__list .sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 230px; padding: var(--sp-s) 0; margin: 0;
    background: var(--c-white); border-radius: 0 0 var(--b-radius-lg) var(--b-radius-lg); box-shadow: var(--b-shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .25s var(--ease), visibility 0s .25s;
    display: block;
  }
  .nav__list li:hover > .sub-menu, .nav__list li:focus-within > .sub-menu, .nav__list .submenu-toggle[aria-expanded="true"] + .sub-menu {
    opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
  }
  .nav__list .sub-menu a { padding: 9px var(--sp-m); font-size: var(--fs-s); }
  .nav__list .sub-menu a:hover { background: var(--c-grey-light); }
  .nav__list .sub-menu .is-active > a { color: var(--c-blue); font-weight: 700; }
}

/* ------------------------------------------------------------ Buttons */
.button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--b-gradient); color: var(--c-white); border: 0; border-radius: var(--b-radius);
  padding: 11px 18px; font-weight: 700; font-size: var(--fs-s); line-height: 1.2; cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .08); transition: transform .2s var(--ease), box-shadow .2s, filter .2s;
}
.button:hover { color: var(--c-white); filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 129, 173, .3); }
.button:active { transform: translateY(0); }
.button--highlight { background: var(--b-gradient-hl); }
.button--highlight:hover { box-shadow: 0 6px 16px rgba(225, 102, 32, .35); }
.button--ghost { background: var(--c-white); color: var(--c-blue); box-shadow: inset 0 0 0 2px var(--c-blue-light); }
.button--ghost:hover { color: var(--c-blue-dark); box-shadow: inset 0 0 0 2px var(--c-blue); }
.cta .button--ghost { background: transparent; color: var(--c-white); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .7); }
.cta .button--ghost:hover { color: var(--c-white); box-shadow: inset 0 0 0 2px #fff; }

/* ------------------------------------------------------------ Hero-Slider */
.hero { position: relative; margin: var(--sp-m) 0 0; }
.hero__track { display: grid; }
.hero__slide { grid-area: 1 / 1; position: relative; display: none; flex-direction: column; }
.hero__slide.is-active { display: flex; z-index: 2; animation: vc-slide-in .7s var(--ease); }
/* die vorige Folie bleibt kurz deckend darunter, dann weg – kein Geister-Text, kein Hängenbleiben */
.hero__slide.is-prev { display: flex; z-index: 1; }
@keyframes vc-slide-in { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
.hero__media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow); background: var(--c-navy); }
.hero__media img, .hero__media svg { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: 0; }
.hero__desc {
  position: relative; z-index: 1; margin: -28px var(--sp-s) 0; padding: var(--sp-m);
  background: var(--b-opacity); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow-lg);
  font-size: var(--fs-s); line-height: var(--lh-s);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero__desc h2 { color: var(--c-blue); font-size: 24px; margin-bottom: var(--sp-s); }
.hero__desc h2 a { color: inherit; }
.hero__lead { font-weight: 700; color: var(--c-grey-dark); margin-bottom: 6px; }
.hero__actions { margin-top: var(--sp-m); }
.hero__arrow {
  position: absolute; top: 30%; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--b-opacity); color: var(--c-blue); box-shadow: var(--b-shadow); display: none; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.hero__arrow:hover { background: var(--c-white); transform: scale(1.08); }
.hero__arrow--prev { left: 14px; } .hero__arrow--next { right: 14px; }
.hero__arrow .icon { width: 1.5em; height: 1.5em; }
.hero__bullets { display: flex; justify-content: center; gap: 8px; margin-top: var(--sp-m); }
.hero__bullet {
  width: 10px; height: 10px; padding: 0; border: 2px solid transparent; border-radius: 50%; cursor: pointer;
  background: #c9d6dc; transition: all .3s ease-in-out;
}
.hero__bullet:hover { border-color: var(--c-blue-light); }
.hero__bullet.is-active { background: var(--c-blue); width: 26px; border-radius: 6px; }

@media (min-width: 48em) {
  .hero__media { aspect-ratio: 2 / 1; }
  .hero__slide.is-active, .hero__slide.is-prev { display: block; }
  .hero__desc {
    position: absolute; top: 50%; right: 60px; transform: translateY(-50%); width: min(380px, 46%); margin: 0; max-height: calc(100% - 70px); overflow: hidden;
  }
  .hero__slide.is-active .hero__desc { animation: vc-rise .8s var(--ease) both .15s; }
  .hero__arrow { display: inline-flex; top: 50%; transform: translateY(-50%); }
  .hero__arrow:hover { transform: translateY(-50%) scale(1.08); }
  .hero__bullets { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); margin: 0; z-index: 2; }
  .hero__bullet { background: rgba(255, 255, 255, .55); box-shadow: 0 1px 3px rgba(0, 0, 0, .2); }
  .hero__bullet.is-active { background: #fff; }
}
@media (min-width: 64em) { .hero__desc { right: 100px; width: 400px; font-size: var(--fs-s); } }
@keyframes vc-rise { from { opacity: 0; transform: translateY(-40%); } to { opacity: 1; transform: translateY(-50%); } }

/* ------------------------------------------------------------ Sektionen */
.home-section { padding: var(--sp-l) 0; border-bottom: 1px solid var(--c-line); }
.home-section:nth-last-of-type(2) { border-bottom: 0; }
.home-section__title { text-align: center; font-size: 26px; color: var(--c-blue); margin-bottom: var(--sp-l); position: relative; padding-bottom: 14px; }
.home-section__title a { color: inherit; }
.home-section__title::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 56px; height: 4px; margin-left: -28px; border-radius: 4px; background: var(--b-gradient); }
.home-section__readmore { text-align: center; margin-top: var(--sp-m); }
.home-section__readmore a { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
@media (min-width: 48em) { .home-section { padding: var(--sp-xl) 0; } .home-section__title { font-size: var(--fs-xl); } }

.grid { display: grid; gap: var(--sp-m); }
.grid--services, .grid--testimonials, .grid--cards-4, .grid--cards-3 { grid-template-columns: 1fr; }
@media (min-width: 40em) { .grid--services, .grid--testimonials, .grid--cards-4, .grid--cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) {
  .grid--services { grid-template-columns: repeat(3, 1fr); }
  .grid--testimonials { grid-template-columns: repeat(3, 1fr); }
  .grid--cards-4 { grid-template-columns: repeat(4, 1fr); }
  .grid--cards-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------ Karten */
.card {
  background: var(--c-white); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
a.card, .card--post { display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--b-shadow-lg); }
.card--service { padding: var(--sp-m); color: var(--c-grey); }
.card--service h3, .card--service h2 { color: var(--c-blue); font-size: 18px; margin: var(--sp-m) 0 var(--sp-s); }
.card--service p { flex: 1; font-size: var(--fs-s); line-height: var(--lh-s); }
.card__icon {
  display: inline-flex; width: 54px; height: 54px; border-radius: 14px; align-items: center; justify-content: center;
  background: var(--b-gradient); color: var(--c-white); box-shadow: 0 6px 14px rgba(0, 129, 173, .3);
}
.card__icon .icon { width: 26px; height: 26px; }
.card__more { margin-top: var(--sp-m); font-weight: 700; color: var(--c-blue); display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-s); }
.card__more .icon { transition: transform .2s; }
.card:hover .card__more .icon, .card__more:hover .icon { transform: translateX(4px); }

.card--post { overflow: hidden; }
.card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--c-navy); }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img, .card:hover .card__media svg { transform: scale(1.04); }
.card__body { padding: var(--sp-m); display: flex; flex-direction: column; flex: 1; }
.card__body time { font-size: var(--fs-xs); color: var(--c-grey-mid); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.card__body h3, .card__body h2 { font-size: var(--fs); line-height: 1.35; margin: var(--sp-s) 0; }
.card__body h3 a, .card__body h2 a { color: var(--c-grey-dark); }
.card__body h3 a:hover, .card__body h2 a:hover { color: var(--c-blue); }
.card__body p { font-size: var(--fs-s); line-height: var(--lh-s); flex: 1; }

.card--testimonial { padding: var(--sp-m) var(--sp-m) var(--sp-m); display: flex; flex-direction: column; }
.card__quote { font-family: var(--f-serif); font-size: 72px; line-height: .5; color: var(--c-blue-light); opacity: .5; margin: 14px 0 0; }
.card--testimonial blockquote { flex: 1; font-family: var(--f-serif); font-size: var(--fs); line-height: var(--lh); color: var(--c-grey-dark); margin: var(--sp-s) 0 var(--sp-m); }
.card--testimonial figcaption { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; align-items: center; font-size: var(--fs-s); }
.card--testimonial figcaption .avatar, .card--testimonial figcaption .monogram { grid-row: 1 / 3; }
.card--testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial__author { font-weight: 700; color: var(--c-grey-dark); }
.testimonial__company { color: var(--c-grey); font-size: var(--fs-xs); }

.tile {
  display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px; color: #fff;
  background: var(--b-gradient); box-shadow: 0 6px 14px rgba(0, 129, 173, .3); transition: transform .2s;
}
.partners__list li:nth-child(3n) .tile { background: var(--b-gradient-hl); box-shadow: 0 6px 14px rgba(225, 102, 32, .3); }
.partners__list li:nth-child(3n+2) .tile { background: linear-gradient(135deg, var(--c-navy), var(--c-blue)); }
a.partner:hover .tile { transform: scale(1.06); }
.tile .icon { width: 28px; height: 28px; }
.monogram {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%;
  background: hsl(var(--h, 196) 62% 40%); color: #fff; font-weight: 700; font-size: var(--fs-s); letter-spacing: .02em;
}

.card--intro, .sidebar__component.card--intro { background: var(--b-gradient); color: var(--c-white); padding: var(--sp-m); }
.card--intro h2 { color: var(--c-white); font-size: var(--fs-l); margin-bottom: var(--sp-s); }
.card--intro p { margin-bottom: var(--sp-m); font-size: var(--fs-s); line-height: var(--lh-s); }
.card--empty, .card--404 { padding: var(--sp-l) var(--sp-m); text-align: center; }
.card--404 .card__code { display: block; font-size: 96px; font-weight: 700; line-height: 1; background: var(--b-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card--404 .article__title { margin: var(--sp-s) 0; }
.card--404 .search-form { max-width: 420px; margin: var(--sp-m) auto; }
.card__actions { display: flex; gap: var(--sp-s); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-m); }

/* ------------------------------------------------------------ Partner */
.partners__list {
  list-style: none; margin: 0; padding: var(--sp-m); background: var(--c-white); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-m);
}
@media (min-width: 40em) { .partners__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 64em) { .partners__list { grid-template-columns: repeat(6, 1fr); } }
.partner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: var(--sp-s); border-radius: var(--b-radius); color: var(--c-grey); transition: background .2s, transform .2s; }
a.partner:hover { background: var(--c-grey-light); transform: translateY(-2px); color: var(--c-blue); }
.partner img { width: 60px; height: 60px; object-fit: contain; border-radius: 12px; }
.partner .monogram { width: 60px; height: 60px; border-radius: 16px; font-size: var(--fs-l); }
.partner__name { font-weight: 700; font-size: var(--fs-s); color: var(--c-grey-dark); }
.partner__sub { font-size: var(--fs-xs); line-height: var(--lh-xs); }

/* ------------------------------------------------------------ CTA-Band */
.cta { position: relative; isolation: isolate; margin-top: var(--sp-l); padding: var(--sp-l) 0; background: transparent; color: var(--c-white); text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0 50%; margin: 0 -50vw; width: 100vw; background: linear-gradient(120deg, var(--c-navy), var(--c-blue) 70%, var(--c-blue-light)); z-index: -1; }
.cta::after { content: "{ }"; position: absolute; right: 4%; top: -10px; font: 700 160px/1 var(--f-serif); color: rgba(255, 255, 255, .06); pointer-events: none; }
.cta__inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta h2 { color: var(--c-white); font-size: 24px; margin-bottom: var(--sp-s); }
.cta p { opacity: .9; margin-bottom: var(--sp-m); }
.cta__actions { display: flex; gap: var(--sp-s); justify-content: center; flex-wrap: wrap; }
@media (min-width: 48em) { .cta { padding: var(--sp-xl) 0; } .cta h2 { font-size: var(--fs-xl); } }

/* ------------------------------------------------------------ Artikel / Seiten */
.article { padding-top: var(--sp-m); }
.article__hero { position: relative; margin-bottom: var(--sp-l); }
.article__hero-media { aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow); background: var(--c-navy); }
.article__hero-media img, .article__hero-media svg { width: 100%; height: 100%; object-fit: cover; }
.article__hero-desc {
  position: relative; margin: -28px var(--sp-s) 0; padding: var(--sp-m); background: var(--b-opacity); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow-lg);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.article__kicker { display: inline-block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-orange); margin-bottom: 6px; }
.article__kicker a { color: inherit; }
.article__title { color: var(--c-blue); font-size: 26px; }
.article__lead { margin-top: var(--sp-s); font-weight: 700; color: var(--c-grey-dark); }
@media (min-width: 48em) {
  .article__hero-media { aspect-ratio: 2 / 1; }
  .article__hero-desc { margin: -36px 40px 0; }
  .article__title { font-size: var(--fs-xl); line-height: var(--lh-xl); }
}
@media (min-width: 64em) {
  .article__hero-media { aspect-ratio: 3 / 1; }
  .article__hero-desc { position: absolute; left: 40px; bottom: 30px; width: min(560px, 60%); margin: 0; animation: vc-up .7s var(--ease) both; }
}
@keyframes vc-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.article__layout { display: grid; gap: var(--sp-l); }
@media (min-width: 64em) { .article__layout:not(.article__layout--full) { grid-template-columns: minmax(0, 1fr) 320px; } }
.article__body { background: var(--c-white); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow); padding: var(--sp-m); max-width: 100%; }
@media (min-width: 48em) { .article__body { padding: var(--sp-l); } }
.article__layout--full .article__body { max-width: 900px; }
.article__body > * + * { margin-top: var(--sp-m); }
.article__body > h2 { color: var(--c-blue); font-size: 22px; margin-top: var(--sp-l); }
.article__body > h3 { font-size: 18px; color: var(--c-grey-dark); margin-top: var(--sp-l); }
.article__body > h2:first-child, .article__body > h3:first-child { margin-top: 0; }
.article__body p, .article__body li { max-width: 72ch; }
.article__body ul, .article__body ol { padding-left: 1.3em; }
.article__body li + li { margin-top: 6px; }
.article__body ul.checks { list-style: none; padding: 0; }
.article__body ul.checks li { padding-left: 30px; position: relative; }
.article__body ul.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--b-gradient); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='11' fill='black' stroke='none'/><path d='M7 12l3 3 7-7' stroke='white'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='11' fill='black' stroke='none'/><path d='M7 12l3 3 7-7' stroke='white'/></svg>") center / contain no-repeat; }
.article__body blockquote { border-left: 4px solid var(--c-blue-light); padding: var(--sp-s) var(--sp-m); background: var(--c-grey-light); border-radius: 0 var(--b-radius) var(--b-radius) 0; font-family: var(--f-serif); color: var(--c-grey-dark); }
.article__body code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; background: var(--c-grey-light); padding: 2px 6px; border-radius: 4px; color: var(--c-blue-dark); }
.article__body pre { background: var(--c-navy); color: #e8f4f8; padding: var(--sp-m); border-radius: var(--b-radius); overflow-x: auto; font-size: var(--fs-s); line-height: 1.5; }
.article__body pre code { background: none; color: inherit; padding: 0; }
.article__body table { border-collapse: collapse; width: 100%; font-size: var(--fs-s); }
.article__body th, .article__body td { border-bottom: 1px solid var(--c-line); padding: 10px; text-align: left; vertical-align: top; }
.article__body th { color: var(--c-blue); }
.article__body img { border-radius: var(--b-radius); }
.article__body .wp-block-image figcaption { font-size: var(--fs-xs); color: var(--c-grey-mid); margin-top: 6px; }
.article__body hr { border: 0; border-top: 1px solid var(--c-line); }
.article__body .facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--sp-s); max-width: none; }
.article__body .facts div { background: var(--c-grey-light); border-radius: var(--b-radius); padding: var(--sp-m); text-align: center; }
.article__body .facts strong { display: block; font-size: var(--fs-xl); color: var(--c-blue); line-height: 1.1; }
.article__body .facts span { font-size: var(--fs-xs); }
.article__body .steps { counter-reset: step; list-style: none; padding: 0; max-width: none; }
.article__body .steps li { counter-increment: step; position: relative; padding: 4px 0 4px 56px; margin-top: var(--sp-m); }
.article__body .steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--b-gradient); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0, 129, 173, .3); }
.article__body .steps strong { color: var(--c-grey-dark); display: block; }
.article__children { margin-top: var(--sp-l); }
.article__tags { margin-top: var(--sp-l); }
.post-nav { display: flex; justify-content: space-between; gap: var(--sp-m); margin-top: var(--sp-l); padding-top: var(--sp-m); border-top: 1px solid var(--c-line); font-size: var(--fs-s); font-weight: 700; }
.post-nav__next { margin-left: auto; text-align: right; }

.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.tags a { display: inline-flex; align-items: center; gap: 6px; background: var(--c-grey-light); color: var(--c-grey-dark); padding: 6px 12px; border-radius: 999px; font-size: var(--fs-xs); font-weight: 700; transition: background .2s, color .2s; }
.tags a:hover, .tags a.is-active { background: var(--c-blue); color: var(--c-white); }
.tags small { opacity: .6; }

/* Seitenleiste */
.sidebar { display: grid; gap: var(--sp-m); align-content: start; }
.sidebar__component { background: var(--c-white); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow); padding: var(--sp-m); }
.sidebar__component > h2 { color: var(--c-blue); font-size: var(--fs); margin-bottom: var(--sp-s); }
.sidebar__posts { list-style: none; display: grid; gap: 12px; }
.sidebar__posts a { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; color: var(--c-grey-dark); font-size: var(--fs-s); line-height: 1.3; }
.sidebar__posts a:hover { color: var(--c-blue); }
.sidebar__thumb { display: block; width: 56px; height: 56px; border-radius: var(--b-radius); overflow: hidden; }
.sidebar__thumb img, .sidebar__thumb svg { width: 100%; height: 100%; object-fit: cover; }
.sidebar__posts time { display: block; font-size: var(--fs-xs); color: var(--c-grey-mid); }

/* Blog-Übersicht */
.cards { padding-top: var(--sp-m); }
.cards__header { text-align: center; max-width: 720px; margin: var(--sp-m) auto var(--sp-l); }
.cards__header .article__lead { font-weight: 400; }
.cards__filter { display: flex; flex-wrap: wrap; gap: var(--sp-m); align-items: center; justify-content: space-between; background: var(--c-white); border-radius: var(--b-radius-lg); box-shadow: var(--b-shadow); padding: var(--sp-s) var(--sp-m); margin-bottom: var(--sp-l); }
.search-form { display: flex; gap: 6px; }
.search-form input { flex: 1; min-width: 0; border: 1px solid var(--c-line); border-radius: var(--b-radius); padding: 10px 12px; font: inherit; font-size: var(--fs-s); background: var(--c-grey-light); }
.search-form input:focus { outline: 2px solid var(--c-blue); outline-offset: 1px; border-color: var(--c-blue-light); box-shadow: 0 0 0 3px rgba(91, 170, 197, .3); background: #fff; }
.search-form .button { padding: 10px 12px; }
.pagination { margin-top: var(--sp-l); text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: var(--b-radius); background: var(--c-white); box-shadow: var(--b-shadow); color: var(--c-grey-dark); font-weight: 700; font-size: var(--fs-s); }
.pagination .page-numbers.current { background: var(--b-gradient); color: var(--c-white); }
.pagination .page-numbers.dots { box-shadow: none; background: none; }

/* ------------------------------------------------------------ Kontaktformular */
.contact-wrap { margin-top: var(--sp-l); padding-top: var(--sp-l); border-top: 1px solid var(--c-line); }
.contact-form__grid { display: grid; gap: var(--sp-m); grid-template-columns: 1fr; }
@media (min-width: 40em) { .contact-form__grid { grid-template-columns: 1fr 1fr; } .contact-form .span-2 { grid-column: 1 / -1; } }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: var(--fs-s); font-weight: 700; color: var(--c-grey-dark); }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--c-line); border-radius: var(--b-radius); padding: 12px 14px; font: inherit; font-size: var(--fs); background: var(--c-grey-light); color: var(--c-grey-dark); transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--c-blue); outline-offset: 1px; border-color: var(--c-blue-light); box-shadow: 0 0 0 3px rgba(91, 170, 197, .3); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form label.check { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; color: var(--c-grey); }
.contact-form label.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--c-blue); }
.contact-form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact-form__actions { display: flex; align-items: center; gap: var(--sp-m); margin-top: var(--sp-m); flex-wrap: wrap; }
.contact-form__hint { font-size: var(--fs-xs); color: var(--c-grey-mid); }
.notice { padding: 14px 18px; border-radius: var(--b-radius); margin-bottom: var(--sp-m); font-weight: 500; border-left: 4px solid; }
.notice--ok { background: #eaf6ef; border-color: #2e9e5b; color: #1d5e38; }
.notice--error { background: #fdeeee; border-color: var(--c-red); color: #8a1710; }

/* ------------------------------------------------------------ Footer */
.footer { position: relative; background: var(--c-grey-dark); color: var(--c-white); padding: var(--sp-xl) 0 var(--sp-m); font-size: var(--fs-s); line-height: var(--lh-s); }
.footer::before { content: ""; position: absolute; inset: 0 50%; margin: 0 -50vw; width: 100vw; background: linear-gradient(180deg, #2e2e2e, var(--c-grey-dark) 40%); z-index: -1; }
.footer a { color: inherit; }
.footer a:hover { color: var(--c-blue-light); }
.footer__grid { display: grid; gap: var(--sp-l) var(--sp-m); grid-template-columns: 1fr; }
@media (min-width: 40em) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-l); } }
.footer__logo { display: inline-block; }
.footer__logo .logo-svg { height: 40px; width: auto; }
.footer__claim { margin-top: var(--sp-s); font-weight: 700; color: var(--c-blue-light); }
.footer__about { margin-top: var(--sp-s); opacity: .8; max-width: 36ch; }
.footer__social { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-m); }
.footer__social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--b-radius); background: rgba(255, 255, 255, .08); transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--c-blue); color: #fff; transform: translateY(-2px); }
.footer__title { font-size: var(--fs-xs); line-height: var(--lh-xs); letter-spacing: .1em; text-transform: uppercase; color: #fff; opacity: .95; margin-bottom: 14px; padding-bottom: 10px; position: relative; }
.footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 3px; background: var(--b-gradient); }
.footer__title--sub { margin-top: var(--sp-m); }
.footer__links { list-style: none; display: grid; gap: 8px; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; opacity: .85; transition: opacity .2s, color .2s, transform .2s; }
.footer__links a:hover { opacity: 1; transform: translateX(3px); }
.footer__links .icon { width: 16px; height: 16px; color: var(--c-blue-light); }
.footer__links .current-menu-item > a, .footer__links .is-active > a { color: var(--c-blue-light); opacity: 1; }
.footer__links-all { font-weight: 700; color: var(--c-blue-light); }
.footer__links--posts a { opacity: .75; font-size: var(--fs-xs); line-height: 1.35; }
.footer__address { font-style: normal; display: grid; gap: 6px; margin-bottom: var(--sp-m); }
.footer__address strong { color: #fff; }
.footer__address a, .footer__address span { display: inline-flex; align-items: center; gap: 8px; opacity: .85; }
.footer__address .icon { width: 16px; height: 16px; color: var(--c-blue-light); }
.footer__hours { font-size: var(--fs-xs); line-height: var(--lh-xs); }
.footer__badges { list-style: none; display: grid; gap: 8px; margin-top: var(--sp-m); font-size: var(--fs-xs); }
.footer__badges li { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .06); border-radius: 999px; padding: 6px 12px 6px 8px; width: fit-content; }
.footer__badges .icon { width: 16px; height: 16px; color: var(--c-blue-light); }
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-s) var(--sp-m); justify-content: space-between; align-items: center; margin-top: var(--sp-l); padding-top: var(--sp-m); border-top: 1px solid rgba(255, 255, 255, .15); font-size: var(--fs-xs); line-height: var(--lh-xs); }
.footer__legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: 4px var(--sp-m); }
.footer__copyright { display: flex; flex-wrap: wrap; gap: 4px var(--sp-m); align-items: center; opacity: .85; }
.footer__meta { display: flex; flex-wrap: wrap; gap: var(--sp-m); align-items: center; }
.footer__built { opacity: .55; }
.footer__top { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); font-weight: 700; transition: background .2s; }
.footer__top:hover { background: var(--c-blue); color: #fff; }
.footer__top .icon { width: 16px; height: 16px; }

/* ------------------------------------------------------------ Schnellkontakt rechts */
.rb-group { display: none; }
@media (min-width: 64em) {
  .rb-group { display: flex; flex-direction: column; gap: 10px; position: fixed; right: 0; bottom: 32px; z-index: 25; }
  .rb-group__button {
    display: flex; align-items: center; height: 56px; border-radius: 8px 0 0 8px; background: var(--b-gradient); color: var(--c-white); box-shadow: var(--b-shadow);
    transform: translateX(calc(100% - 56px)); transition: transform .3s var(--ease), filter .2s; font-weight: 700; font-size: var(--fs-s); overflow: hidden;
  }
  .rb-group__button .icon { width: 56px; height: 56px; padding: 16px; flex: none; }
  .rb-group__button span { padding-right: 18px; white-space: nowrap; }
  .rb-group__button:hover, .rb-group__button:focus-visible { transform: none; color: #fff; filter: brightness(1.05); }
  .rb-group__button--highlight { background: var(--b-gradient-hl); }
}

/* ------------------------------------------------------------ Reveal */
/* Inhalte sind immer sichtbar; is-visible löst nur die Einblend-Animation aus */
.reveal.is-visible { animation: vc-reveal .8s var(--ease) both; }
@keyframes vc-reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ------------------------------------------------------------ WP-Kern */
.alignwide { margin-left: calc(-1 * var(--sp-m)); margin-right: calc(-1 * var(--sp-m)); max-width: none; }
.wp-block-buttons .wp-block-button__link { background: var(--b-gradient); border-radius: var(--b-radius); font-weight: 700; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

/* ------------------------------------------------------------ Projekte («Aus der Praxis») */
.grid--projects { grid-template-columns: 1fr; }
@media (min-width: 40em) { .grid--projects { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .grid--projects { grid-template-columns: repeat(2, 1fr); } }
.card--project { overflow: hidden; color: var(--c-grey); }
.card--project .card__media { display: block; aspect-ratio: 16 / 9; }
@media (min-width: 48em) {
  a.card--project { flex-direction: row; }
  .card--project .card__media { flex: 0 0 42%; aspect-ratio: auto; min-height: 220px; }
  .card--project .card__media svg, .card--project .card__media img { height: 100%; }
}
.card--project .card__body { display: flex; flex-direction: column; flex: 1; padding: var(--sp-m); }
.card--project h3, .card--project h2 { font-size: var(--fs); line-height: 1.35; color: var(--c-grey-dark); margin: var(--sp-s) 0; }
.card--project:hover h3, .card--project:hover h2 { color: var(--c-blue); }
.card--project p { font-size: var(--fs-s); line-height: var(--lh-s); flex: 1; }
.card__kicker { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-orange); }
.card__kicker .icon { width: 16px; height: 16px; }

/* ------------------------------------------------------------ Sidebar-Komponenten */
.sidebar__component--share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; padding: 12px var(--sp-m); }
.sidebar__share-label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-grey-mid); }
.sidebar__share-link, .sidebar__copy { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-s); font-weight: 700; color: var(--c-blue); background: var(--c-grey-light); border: 0; border-radius: 999px; padding: 7px 12px; cursor: pointer; transition: background .2s, color .2s; }
.sidebar__share-link:hover, .sidebar__copy:hover { background: var(--c-blue); color: #fff; }
.sidebar__copy.is-done { background: #2e9e5b; color: #fff; }
.sidebar__contact { list-style: none; margin-top: var(--sp-m); display: grid; gap: 6px; font-size: var(--fs-s); }
.sidebar__contact a { display: inline-flex; align-items: center; gap: 8px; color: #fff; opacity: .92; }
.sidebar__contact a:hover { opacity: 1; text-decoration: underline; }
.sidebar__services { list-style: none; display: grid; gap: 6px; }
.sidebar__services a { display: flex; align-items: center; gap: 12px; padding: 6px; margin: 0 -6px; border-radius: var(--b-radius); color: var(--c-grey-dark); font-size: var(--fs-s); font-weight: 500; transition: background .2s, color .2s; }
.sidebar__services a:hover, .sidebar__services .is-active a { background: var(--c-grey-light); color: var(--c-blue); }
.sidebar__tile { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 9px; background: var(--b-gradient); color: #fff; flex: none; box-shadow: 0 3px 8px rgba(0, 129, 173, .3); }
.sidebar__tile .icon { width: 17px; height: 17px; }
.sidebar__services .is-active .sidebar__tile { background: var(--b-gradient-hl); box-shadow: 0 3px 8px rgba(225, 102, 32, .3); }
.sidebar__kodex { list-style: none; display: grid; gap: 8px; font-size: var(--fs-s); color: var(--c-grey-dark); }
.sidebar__kodex li { display: flex; align-items: flex-start; gap: 8px; }
.sidebar__kodex .icon { color: var(--c-blue); margin-top: 2px; }
.sidebar__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: var(--fs-s); font-weight: 700; }
.sidebar__more .icon { transition: transform .2s; }
.sidebar__more:hover .icon { transform: translateX(4px); }
.sidebar__facts { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sidebar__fact { background: var(--c-grey-light); border-radius: var(--b-radius); padding: 10px 6px; text-align: center; display: grid; gap: 2px; }
.sidebar__fact strong { font-size: var(--fs); color: var(--c-blue); line-height: 1.2; }
.sidebar__fact span { font-size: 11px; line-height: 1.2; color: var(--c-grey); }
.sidebar__tags + .sidebar__tags { margin-top: 8px; }
.sidebar__tags--hash a { background: #fff; box-shadow: inset 0 0 0 1px var(--c-line); }
.sidebar__tags--hash a:hover { background: var(--c-blue); box-shadow: none; }

.article__section-title { margin-top: var(--sp-xl); }
.contact-form__privacy { font-size: var(--fs-s); color: var(--c-grey); margin: 0; }

@media (hover: none) and (min-width: 64em) { .nav__list .submenu-toggle { display: block; top: 12px; right: 0; } .nav__list > li.has-children > a { padding-right: 34px; } }
.hero__pause { position: absolute; right: 14px; bottom: 14px; z-index: 3; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--b-opacity); color: var(--c-blue); box-shadow: var(--b-shadow); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.hero__pause .icon { width: 18px; height: 18px; }
.hero__pause[aria-pressed="true"] .icon--pause, .hero__pause[aria-pressed="false"] .icon--play { display: none; }
.hero__bullet[aria-current="true"] { background: var(--c-blue); width: 26px; border-radius: 6px; }
@media (min-width: 48em) { .hero__bullet[aria-current="true"] { background: #fff; } }
.sidebar__fact strong { font-size: 15px; }
.sidebar__component.card--intro > h2 { color: #fff; }
@media (min-width: 64em) { .footer__legal { padding-right: 80px; } }

/* ------------------------------------------------------------ Produkte */
.grid--products { grid-template-columns: 1fr; }
@media (min-width: 64em) { .grid--products { grid-template-columns: repeat(3, 1fr); } }
.card--product { display: flex; flex-direction: column; overflow: hidden; }
.card--product .card__media { display: block; aspect-ratio: 16 / 9; }
.card--product h3, .card--product h2 { font-size: 18px; line-height: 1.3; margin: var(--sp-s) 0; }
.card--product h3 a, .card--product h2 a { color: var(--c-grey-dark); }
.card--product h3 a:hover, .card--product h2 a:hover { color: var(--c-blue); }
.card--product p { font-size: var(--fs-s); line-height: var(--lh-s); }
.card__highlights { list-style: none; display: grid; gap: 6px; margin: var(--sp-m) 0; font-size: var(--fs-s); color: var(--c-grey-dark); flex: 1; }
.card__highlights li { display: flex; gap: 8px; align-items: flex-start; }
.card__highlights .icon { color: var(--c-blue); margin-top: 2px; }
.card__actions--left { justify-content: flex-start; margin-top: auto; }
.article__actions { display: flex; flex-wrap: wrap; gap: var(--sp-s); margin-top: var(--sp-m); }
