:root {
  --color-brand-red: #e34324;
  --color-brand-red-dark: #bc321b;
  --color-brand-blue: #005681;
  --color-brand-blue-dark: #003b5a;
  --color-text: #26343b;
  --color-slate: #61727b;
  --color-white: #ffffff;
  --color-mist: #f6f9fa;
  --color-line: #dce5e9;
  --color-blue-pale: #eef5f7;
  --shadow: 0 22px 60px rgb(0 59 90 / 0.09);
  --radius: 0.5rem;
  --container: 74rem;
  --text-width: 46rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: Aptos, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-size: 1.025rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-brand-blue);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-brand-red-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-brand-red);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-brand-blue-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, var(--text-width));
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(0 86 129 / 0.11);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  flex: 0 1 14.75rem;
}

.brand img {
  width: min(100%, 14.75rem);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--color-line);
  border-radius: 0.55rem;
  color: var(--color-brand-blue);
  background: var(--color-white);
  font-weight: 700;
}

.nav-icon,
.nav-icon::before,
.nav-icon::after {
  width: 1.25rem;
  height: 2px;
  display: block;
  background: currentColor;
}

.nav-icon {
  position: relative;
}

.nav-icon::before,
.nav-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-icon::before {
  top: -0.4rem;
}

.nav-icon::after {
  top: 0.4rem;
}

.site-nav > ul,
.submenu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a,
.submenu-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: var(--color-text);
  background: transparent;
  font-size: 0.94rem;
  font-weight: 540;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-nav > ul > li > a,
.nav-parent > a {
  padding: 0.55rem 0.65rem;
}

.site-nav a[aria-current="page"],
.site-nav a[aria-current="true"] {
  color: var(--color-brand-red-dark);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.5rem;
}

.has-submenu {
  position: relative;
}

@media (hover: hover) and (min-width: 62.01rem) {
  .has-submenu::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 20rem;
    height: 0.55rem;
    content: "";
  }
}

.nav-parent {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  min-width: 44px;
  justify-content: center;
  border-radius: 0.45rem;
  cursor: pointer;
}

.submenu-toggle::after {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-0.15rem) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  width: 20rem;
  padding: 0.55rem;
  border: 1px solid var(--color-line);
  border-radius: 0.45rem;
  background: var(--color-white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
}

.submenu a {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.submenu a:hover {
  color: var(--color-brand-blue-dark);
  background: var(--color-blue-pale);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.submenu-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.75rem, 7vw, 6.75rem) 0;
  border-bottom: 1px solid rgb(0 86 129 / 0.08);
  background:
    linear-gradient(115deg, rgb(238 245 247 / 0.82), rgb(255 255 255 / 0.96) 58%),
    var(--color-white);
}

.hero::before {
  position: absolute;
  top: -12rem;
  right: 5vw;
  width: 1px;
  height: 35rem;
  background: linear-gradient(to bottom, transparent, rgb(0 86 129 / 0.18), transparent);
  content: "";
  transform: rotate(41deg);
  transform-origin: center;
}

.hero::after {
  position: absolute;
  top: 2rem;
  right: 10vw;
  width: 3.5rem;
  height: 2px;
  background: var(--color-brand-red);
  content: "";
  opacity: 0.72;
  transform: rotate(-49deg);
}

.hero-grid,
.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.98fr);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-brand-red);
  font-size: 0.76rem;
  font-weight: 560;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--color-brand-blue-dark);
  font-family: "Aptos Display", Aptos, "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-weight: 340;
  line-height: 1.14;
  text-wrap: balance;
}

h1 {
  max-width: 20ch;
  font-size: clamp(2.15rem, 4.25vw, 3.6rem);
  letter-spacing: -0.012em;
}

h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  letter-spacing: -0.014em;
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-weight: 520;
  letter-spacing: -0.008em;
}

p,
ul,
ol,
dl {
  margin-top: 0;
}

.lead {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: #42545d;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button-row--locations {
  margin-bottom: 2rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  color: var(--color-white);
  background: var(--color-brand-red);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.button:hover {
  color: var(--color-white);
  background: var(--color-brand-red-dark);
}

.button-secondary {
  border-color: var(--color-brand-blue);
  color: var(--color-brand-blue);
  background: transparent;
}

.button-secondary:hover {
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.hero-visual {
  position: relative;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
}

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.15rem;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--color-slate);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.trust-line li::before {
  margin-right: 0.45rem;
  color: var(--color-brand-red);
  content: "•";
}

.section {
  padding: clamp(4rem, 7vw, 6.75rem) 0;
}

.section-tight {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.section-alt {
  background: var(--color-mist);
}

.section-blue {
  color: var(--color-white);
  background: var(--color-brand-blue-dark);
}

.section-blue h2,
.section-blue h3,
.section-blue a:not(.button) {
  color: var(--color-white);
}

.section-blue .lead,
.section-blue p {
  color: #e4eef3;
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgb(0 86 129 / 0.14);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 10px 35px rgb(0 59 90 / 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card h2 a,
.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.card p:last-child {
  margin-bottom: 0;
}

.card .arrow {
  color: var(--color-brand-red);
  font-size: 0.9rem;
  font-weight: 600;
}

.card:hover {
  border-color: rgb(0 86 129 / 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.topics-section {
  background:
    linear-gradient(180deg, rgb(238 245 247 / 0.45), transparent 18rem),
    var(--color-white);
}

.topic-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.topic-card {
  min-width: 0;
  overflow: hidden;
  grid-column: span 2;
  border: 1px solid rgb(0 86 129 / 0.14);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 10px 35px rgb(0 59 90 / 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.topic-card-wide {
  grid-column: span 3;
}

.topic-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.topic-card:hover {
  border-color: rgb(0 86 129 / 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.topic-media {
  overflow: hidden;
  background: var(--color-blue-pale);
}

.topic-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 400ms ease;
}

.topic-card:hover .topic-media img {
  transform: scale(1.018);
}

.topic-media--beratung img {
  object-position: 50% 54%;
}

.topic-media--prozesse img {
  object-position: 47% 50%;
}

.topic-media--qualitaet img {
  object-position: 53% 50%;
}

.topic-media--erp img {
  object-position: 50% 50%;
}

.topic-media--ki img {
  object-position: 65% 50%;
}

.topic-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.topic-card-copy h3 {
  margin-bottom: 0.65rem;
}

.topic-card-copy p:not(.topic-kicker) {
  color: #53646c;
}

.topic-kicker {
  margin: 0 0 0.55rem;
  color: var(--color-brand-red);
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topic-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--color-brand-red-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.topic-card-overview {
  grid-column: 1 / -1;
  border: 0;
  color: var(--color-white);
  background: var(--color-brand-blue-dark);
}

.topic-card-overview > a {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
}

.topic-card-overview h3,
.topic-card-overview .topic-link {
  color: var(--color-white);
}

.topic-card-overview .topic-card-copy p:not(.topic-kicker) {
  color: #dcebf1;
}

.topic-media-overview {
  height: 100%;
  display: grid;
  place-items: stretch;
  padding: 0;
  background: #1f5e83;
}

.topic-media-overview img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 68% 50%;
}

.number-card {
  counter-increment: steps;
}

.number-card::before {
  display: inline-block;
  padding-bottom: 0.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-brand-red);
  color: var(--color-brand-red);
  content: counter(steps, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.steps {
  counter-reset: steps;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.58rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-brand-red);
  content: "✓";
  font-weight: 900;
}

.check-list li::before {
  top: 0.82em;
  width: 0.65rem;
  height: 1px;
  color: transparent;
  background: var(--color-brand-red);
  content: "";
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-blue-pale);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-band {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-left: 3px solid var(--color-brand-red);
  border-radius: var(--radius);
  color: var(--color-white);
  background: var(--color-brand-blue);
}

.feature-band h2,
.feature-band h3,
.feature-band a:not(.button) {
  color: var(--color-white);
}

.feature-band p {
  color: #e9f2f5;
}

.feature-band .button {
  background: var(--color-brand-red);
}

.breadcrumb {
  padding: 1.15rem 0 0;
  color: var(--color-slate);
  font-size: 0.84rem;
  letter-spacing: 0.015em;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.35rem;
  content: "›";
}

.breadcrumb a {
  color: inherit;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.25rem, 6vw, 5.75rem) 0;
  border-bottom: 1px solid rgb(0 86 129 / 0.08);
  background: linear-gradient(120deg, rgb(238 245 247 / 0.76), #fff 72%);
}

.page-hero::after {
  position: absolute;
  top: -11rem;
  right: 12vw;
  width: 1px;
  height: 28rem;
  background: linear-gradient(to bottom, transparent, rgb(227 67 36 / 0.28), transparent);
  content: "";
  transform: rotate(41deg);
}

.page-hero h1 {
  max-width: 24ch;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.page-hero--split {
  padding: 0;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4.25rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
}

.page-hero-copy {
  align-self: center;
  padding: clamp(3.25rem, 6vw, 5.75rem) 0;
}

.page-hero-media {
  min-height: clamp(23rem, 32vw, 30rem);
  overflow: hidden;
  background: #15262f;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-media--beratung img {
  object-position: 50% 50%;
}

.page-hero-media--prozesse img {
  object-position: 47% 50%;
}

.page-hero-media--qualitaet img {
  object-position: 54% 50%;
}

.page-hero-media--erp {
  background: #fff;
}

.page-hero-media--erp img {
  object-fit: contain;
  object-position: 50% 50%;
}

.page-hero-media--ki img {
  object-position: 64% 50%;
}

.page-hero--image {
  padding: 0;
  border-bottom: 0;
  background: #07507b;
}

.page-hero--image::after {
  display: none;
}

.page-hero--image img {
  width: min(100%, 1641px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.toc {
  padding: 1.25rem;
  border-left: 0.3rem solid var(--color-brand-red);
  background: var(--color-mist);
}

.toc ul {
  margin-bottom: 0;
}

.faq {
  max-width: 52rem;
}

.faq details {
  border-top: 1px solid var(--color-line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--color-line);
}

.faq summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--color-brand-blue-dark);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 750;
}

.faq summary::after {
  color: var(--color-brand-red);
  content: "+";
  font-size: 1.5rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > div {
  padding: 0 0 1.25rem;
}

.profile {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile .card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.partner-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-card {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: 7rem minmax(0, 1fr);
}

.partner-logo {
  min-height: 10rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.partner-logo img {
  width: 9rem;
  height: 5.5rem;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: rotate(270deg);
}

.partner-logo img[src$="anne-kuehl.jpg"],
.partner-logo img[src$="abaton.jpg"],
.partner-logo img[src$="maximusweb.png"] {
  transform: rotate(270deg) scale(1.6);
}

.contact-list {
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.6rem;
}

.legal-draft {
  padding: 1rem 1.2rem;
  border: 2px solid #b26a00;
  border-radius: 0.7rem;
  color: #4d3100;
  background: #fff7e6;
}

.legal h2 {
  margin-top: 2.2rem;
  font-size: 1.6rem;
}

.legal h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.cta {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-left: 3px solid var(--color-brand-red);
  border-radius: var(--radius);
  color: var(--color-white);
  background: var(--color-brand-blue-dark);
}

.cta h2,
.cta p {
  color: var(--color-white);
}

.cta p {
  margin-bottom: 0;
}

.site-footer {
  padding: 3.2rem 0 1.5rem;
  color: #dbe8ee;
  background: #00354f;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 1fr 1fr;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--color-white);
}

.site-footer h2 {
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}

.site-footer h3 {
  font-size: 1rem;
  font-weight: 540;
  letter-spacing: 0.035em;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.16);
  font-size: 0.9rem;
}

@media (max-width: 62rem) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-white);
    box-shadow: var(--shadow);
  }

  .js .site-nav[hidden] {
    display: none;
  }

  .site-nav > ul {
    width: min(100% - 2rem, var(--container));
    display: block;
    padding: 0.7rem 0 1.2rem;
    margin-inline: auto;
  }

  .site-nav > ul > li > a,
  .nav-parent > a {
    flex: 1;
    padding: 0.65rem 0.75rem;
  }

  .nav-parent {
    justify-content: space-between;
  }

  .submenu {
    position: static;
    width: auto;
    display: none;
    padding: 0 0 0.5rem 1rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    display: none;
  }

  .has-submenu.submenu-open > .submenu,
  .no-js .submenu {
    display: block;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .page-hero-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-visual {
    max-width: 44rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-card,
  .topic-card-wide {
    grid-column: span 1;
  }

  .topic-card-overview {
    grid-column: 1 / -1;
  }

  .partner-grid,
  .profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-inner {
    min-height: 4.75rem;
  }

  .brand {
    flex-basis: 12rem;
  }

  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .topic-card-wide,
  .topic-card-overview {
    grid-column: 1;
  }

  .topic-card-overview > a {
    grid-template-columns: 1fr;
  }

  .topic-media-overview {
    min-height: 10rem;
    order: -1;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    min-height: 10rem;
  }

  .partner-logo img {
    width: 9rem;
    height: 5.5rem;
    max-height: none;
  }

  .cta {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .button-row .button {
    width: auto;
    flex: 1 1 13rem;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .cta,
  .breadcrumb {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 1rem 0;
  }
}
