/* Globale structuur: variabelen, thema's, typografie, container, links en
   body-wrappers — alles wat niet bij één blok hoort. */

@font-face {
	font-family: "Macan";
	src: url("fonts/macan-pe--regular.woff2") format("woff2");
	font-display: swap;
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Macan";
	src: url("fonts/macan-pe--medium.woff2") format("woff2");
	font-display: swap;
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Macan";
	src: url("fonts/macan-pe--semibold.woff2") format("woff2");
	font-display: swap;
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Macan";
	src: url("fonts/macan-pe--bold.woff2") format("woff2");
	font-display: swap;
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Macan Stencil";
	src: url("fonts/macan-stencil-pe--regular.woff2") format("woff2");
	font-display: swap;
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Macan Stencil";
	src: url("fonts/macan-stencil-pe--medium.woff2") format("woff2");
	font-display: swap;
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Macan Stencil";
	src: url("fonts/macan-stencil-pe--semibold.woff2") format("woff2");
	font-display: swap;
	font-weight: 600;
	font-style: normal;
}

:root {
	--font-macan: Macan, Arial, Helvetica, sans-serif;
	--font-macan-stencil: Macan Stencil, Macan, Arial, Helvetica, sans-serif;

	--horizontal-margin: 1.6rem;
	--gutter: var(--horizontal-margin);
	--header-height: 8.8rem;
	--window-height: 100vh;
	--window-width: 100vw;
	--content-width: calc(var(--window-width) - (var(--gutter) * 2));
}

@media only screen and (min-width: 1000px) {
  html.scroll_horizontal,
  html.scroll_horizontal body,
  body.scroll_horizontal {
    height: var(--window-height);
    overflow: hidden;
  }

  body.scroll_horizontal #content {
    height: var(--window-height);
    overflow-y: hidden;
  }

  body.scroll_horizontal .container_scroll_horizontal {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body.scroll_horizontal .container_scroll_horizontal > article {
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max(var(--window-width), min-content);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  body.scroll_horizontal .container_scroll_horizontal > article::-webkit-scrollbar {
    display: none;
  }

  /* Geen scroll-snap-align: het origineel zet wel scroll-snap-type, maar geeft
     geen kind een snap-align, dus glijdt de track vrij. */
  body.scroll_horizontal .container_scroll_horizontal > article > .sq-block {
    min-width: var(--window-width);
  }

  body.scroll_horizontal .sq-footer {
    display: none;
  }
}

@media only screen and (min-width: 600px) {
  :root {
    --horizontal-margin: 2.4rem;
  }
}

@media only screen and (min-width: 1000px) {
  :root {
    --horizontal-margin: 3.2rem;
    --header-height: 7.2rem;
  }
}

@media only screen and (min-width: 1400px) {
  :root {
    --horizontal-margin: 4.8rem;
    --header-height: 9.6rem;
  }
}

@media only screen and (min-width: 1792px) {
  :root {
    --horizontal-margin: 6.4rem;
  }
}

.sq-block,
.sq-block * {
  box-sizing: border-box;
}

.sq-block {
  position: relative;
  overflow-x: hidden;
  padding: 6.4rem 0;
  background: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-macan);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.02em;
  font-variant-ligatures: none;
  font-feature-settings:
    "ss03" on,
    "liga" off;
}

@media only screen and (min-width: 1000px) {
  .sq-block {
    padding: 9.6rem 0;
  }
}

.sq-block a {
  text-decoration: none;
}

.sq-block img,
.sq-block svg {
  display: block;
  max-width: 100%;
}

.sq-block ul,
.sq-block ol {
}

/* Visueel verborgen, wel voorleesbaar; absoluut gepositioneerd zodat het element
   geen plek inneemt in een flex- of gridcontainer. */
.sq-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.sq-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--horizontal-margin);
	padding-right: var(--horizontal-margin);
}

.sq-block .container,
.sq-block .container-fluid {
  	--bs-gutter-x: calc(var(--horizontal-margin) * 2);
}

.sq-block .row {
}

@media only screen and (max-width: 999px) { 
	.sq-container--mobile-bleed {
		padding-left: 0;
		padding-right: 0;
	}
}

.sq-theme-light,
.themeDefault {
    --text-color: var(--color-purple--1);
    --text-color--support: var(--color-purple--5);
    --text-color--accent: var(--color-purple--1);
    --text-color--interface: var(--color-grey--4);
    --background-color: var(--color-grey--1);
    --border-color: var(--color-grey--2);
    --border-color--hover: var(--color-purple--4);
    --chapter-section-title-color: var(--color-purple--1);
    --icon-color: var(--color-turquoise--1);
    --icon-background-color: var(--color-purple--3);
    background-color: var(--background-color);
    color: var(--text-color);
}

.sq-theme-dark,
.themeDark {
	--text-color: var(--color-white);
	--text-color--support: var(--color-white);
	--text-color--accent: var(--color-white);
	--text-color--interface: var(--color-white);
	--background-color: var(--color-purple--4);
	--border-color: var(--color-purple--3);
	--border-color--hover: var(--color-white);
	--chapter-section-title-color: var(--color-turquoise--1);
	--icon-color: var(--color-turquoise--1);
	--icon-background-color: var(--color-purple--3);
	background-color: var(--background-color);
	color: var(--text-color);
}

.sq-theme-purple,
.themePurple {
	--text-color: var(--color-white);
	--text-color--support: var(--color-white);
	--text-color--accent: var(--color-white);
	--text-color--interface: var(--color-white);
	--background-color: var(--color-purple--2);
	--border-color: var(--color-purple--3);
	--border-color--hover: var(--color-white);
	--chapter-section-title-color: var(--color-white);
	--icon-color: var(--color-turquoise--1);
	--icon-background-color: var(--color-purple--3);
	background-color: var(--background-color);
	color: var(--text-color);
}

.sq-theme-section[data-theme="dark"] + .sq-theme-section[data-theme="dark"],
.sq-theme-section[data-theme="light"] + .sq-theme-section[data-theme="light"],
.sq-theme-section[data-theme="purple"]
	+ .sq-theme-section[data-theme="purple"] {
	position: relative;
}

.sq-theme-section[data-theme="dark"]
  + .sq-theme-section[data-theme="dark"]::before,
.sq-theme-section[data-theme="light"]
  + .sq-theme-section[data-theme="light"]::before,
.sq-theme-section[data-theme="purple"]
  + .sq-theme-section[data-theme="purple"]::before {
	content: "";
	position: absolute;
	top: 0;
	left: var(--horizontal-margin);
	right: var(--horizontal-margin);
	border-top: 0.1rem solid var(--border-color);
}

.sq-block--no-border::before {
  	display: none !important;
}

.sq-h1,
.sq-h2,
.sq-h3,
.sq-h4,
.sq-h5,
.sq-label,
.sq-body {
  font-family: var(--font-macan);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.02em;
  font-variant-ligatures: none;
  font-feature-settings:
    "ss03" on,
    "liga" off;
}

.sq-h1 {
  letter-spacing: -0.05em;
  font-size: 5.6rem;
  line-height: 100%;
}

.sq-h2 {
  letter-spacing: -0.05em;
  font-size: 3.2rem;
  line-height: 125%;
}

.sq-h3 {
  letter-spacing: -0.05em;
  font-size: 2.8rem;
  line-height: 125%;
}

.sq-h4 {
  letter-spacing: -0.03em;
  font-weight: 600;
  font-size: 2rem;
  line-height: 125%;
}

.sq-h5 {
  letter-spacing: -0.03em;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 125%;
}

.sq-body {
  font-size: 1.6rem;
  line-height: 175%;
}

/* Origineel bodyMeta: afwijkend van bodySmall door line-height 1 en weight 400. */
/* `.sq-meta` is het alias dat single.php gebruikt. */
.sq-body--meta,
.sq-meta {
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}


.sq-label {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
    color: var(--text-color--accent);
}

.sq-stencil {
  font-family: var(--font-macan-stencil);
}

@media only screen and (min-width: 600px) {
  .sq-h1 {
    font-size: 8rem;
  }
  .sq-h2 {
    font-size: 4.6rem;
  }
  .sq-h3 {
    font-size: 3.2rem;
  }
  .sq-h4 {
    font-size: 2.4rem;
  }
  .sq-h5 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1000px) {
  .sq-label {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .sq-h1 {
    font-size: 9.6rem;
  }
  .sq-h2 {
    font-size: 5.6rem;
  }
  .sq-h3 {
    font-size: 4rem;
  }
  .sq-body--large,
  p.sq-body--large,
  .sq-body--large p {
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 1792px) {
  .sq-h1 {
    font-size: max(9.6rem, min(-9.0666666667rem + 10.4166666667vw, 17.6rem));
  }
  .sq-h2 {
    font-size: max(5.6rem, min(-7.4666666667rem + 7.2916666667vw, 11.2rem));
  }
  .sq-h3 {
    font-size: max(4rem, min(-3.4666666667rem + 4.1666666667vw, 7.2rem));
  }
  .sq-h4 {
    font-size: max(2.4rem, min(-2.2666666667rem + 2.6041666667vw, 4.4rem));
  }
  .sq-h5 {
    font-size: max(2rem, min(-1.7333333333rem + 2.0833333333vw, 3.6rem));
  }
  .sq-body {
    font-size: max(1.6rem, min(-1.2rem + 1.5625vw, 2.8rem));
  }
  .sq-body--small,
  .sq-body--small p {
    font-size: max(1.4rem, min(0rem + 0.78125vw, 2rem));
  }
  .sq-body--meta,
  .sq-meta,
  .sq-footer__navigation {
    font-size: 1.8rem;
  }
  .sq-body--large,
  p.sq-body--large,
  .sq-body--large p {
    font-size: max(2.4rem, min(-2.2666666667rem + 2.6041666667vw, 4.4rem));
  }
  .sq-label {
    font-size: 2rem;
  }
}

.sq-link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--text-color--accent);
	transition: color 0.25s ease-in-out;
}

.sq-link__icon-container {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: 0.1rem solid var(--link-border-color);
	transition: border-color 0.25s ease-in-out;
}

.sq-link:hover .sq-link__icon-container {
  border-color: var(--link-border-color--hover);
}

.sq-link__icon {
  width: 1.6rem;
  fill: currentColor;
  transition: transform 0.25s ease-in-out;
}

@media only screen and (min-width: 1000px) {
  .sq-link__icon-container {
    width: 4rem;
  }

  .sq-link__icon {
    width: 2.4rem;
  }
}

.sq-cta-link {
  display: block;
  padding: 6.4rem 2.4rem 2.4rem;
  color: var(--color-white);
  background: var(--color-turquoise--1);
  border-radius: 0 2.4rem 0 0;
  transition: box-shadow 0.3s ease-in-out;
}

.sq-cta-link:hover,
.sq-cta-link:active {
  color: var(--color-white);
  box-shadow:
    0 1.2rem 2rem var(--color-purple--4-25),
    inset 0 0.4rem 0.4rem var(--color-white--50);
}

.sq-cta-link__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sq-cta-link__label {
  font-family: var(--font-macan);
  font-size: 2rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-ligatures: none;
  font-feature-settings:
    "ss03" on,
    "liga" off;
}

.sq-cta-link__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  min-height: 2.4rem;
  fill: currentColor;
}

@media only screen and (min-width: 1792px) {
  .sq-cta-link__label {
    font-size: 3rem;
  }
}


.sq-two-column-layout {
  display: grid;
  gap: var(--gutter);
}

@media only screen and (min-width: 1000px) {
  .sq-two-column-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left right";
  }

  .sq-two-column-layout__left {
    grid-area: left;
  }

  .sq-two-column-layout__right {
    grid-area: right;
  }
}

/* Origineel rich-text-renderer: 3.2rem tussen blokken, 1.6rem direct na een kop.
   Bootstrap zet p { margin-bottom: 1rem } en 1rem is hier 10px, dus die marge
   moet eerst weg voordat de margin-top-regels de afstand bepalen. */
.sq-rich-text > *,
.sq-body > p,
.sq-body--large > p,
.sq-body--small > p {
  margin-bottom: 0;
}

.sq-rich-text > * + *,
.sq-body > * + *,
.sq-body--large > * + *,
.sq-body--small > * + * {
  margin-top: 3.2rem;
}

.sq-rich-text > h1 + *,
.sq-rich-text > h2 + *,
.sq-rich-text > h3 + *,
.sq-rich-text > h4 + *,
.sq-rich-text > h5 + *,
.sq-rich-text > h6 + * {
  margin-top: 1.6rem;
}

.sq-rich-text p {
  color: var(--text-color--support);
}

.sq-nested-block + .sq-nested-block {
  margin-top: 2.4rem;
}

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

.sq-check-list__item {
  display: flex;
  align-items: center;
  padding: 1.6rem 0;
}

.sq-check-list__item:not(:first-of-type) {
  border-top: 0.1rem solid var(--border-color);
}

.sq-check-list__icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 1.6rem;
  border-radius: 50%;
  background: var(--icon-background-color);
}

.sq-check-list__icon {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--icon-color);
}

.sq-small-image-grid {
  display: grid;
  grid-template-columns: 142fr 116fr 120fr 208fr 62fr;
  grid-template-rows: 37fr 207fr 44fr 99fr 85fr 97fr;
  aspect-ratio: 648 / 569;
}

.sq-small-image-grid__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.sq-small-image-grid__figure--one {
  grid-area: 2 / 2 / 5 / 6;
  border-radius: 0 4.8rem 0 0;
  z-index: 1;
}

.sq-small-image-grid__figure--two {
  grid-area: 4 / 4 / 6 / 5;
  z-index: 2;
}

.sq-small-image-grid__figure--three {
  grid-area: 3 / 1 / 7 / 3;
  border-radius: 0 0 0 4.8rem;
  z-index: 2;
}

.sq-small-image-grid__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
}

.sq-small-image-grid__figure--one .sq-small-image-grid__image {
  border-radius: 0 4.8rem 0 0;
}

.sq-small-image-grid__figure--three .sq-small-image-grid__image {
  border-radius: 0 0 0 4.8rem;
}

.sq-check-list__text {
  margin: 0;
  color: var(--text-color);
  letter-spacing: -0.03em;
  font-size: max(2.2rem, min(2.05rem + 0.25vw, 2.4rem));
  line-height: 150%;
}

/* Step list — staat hier en niet in `step_list.css`, omdat functions.php alleen
   de CSS van top-level layouts inlaadt en dit blok ook genest in een kolom
   voorkomt. Het origineel nummert de stappen niet maar zet per stap een open
   rondje met een verbindingslijn; de klassenaam `__number` dekt die lading niet
   meer, maar blijft staan omdat hernoemen alleen kosmetisch is. */

.sq-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sq-step-list > li {
  position: relative;
  padding-left: 2.4rem;
  padding-bottom: 4.8rem;
}

/* Het rondje. Het origineel tekent dit met `li::before`; wij hangen het aan de
   lege span die het sjabloon al neerzet, zodat `::after` vrij blijft voor de
   verbindingslijn. */
.sq-step-list__number {
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 0.2rem solid var(--text-color--accent);
  border-radius: 50%;
}

/* De verbindingslijn start onder het rondje (top 1.8rem = 0.4 + 1.2 + 0.2) en
   loopt 0.2rem door onder het item, zodat hij tegen het volgende rondje sluit. */
.sq-step-list > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.8rem;
  bottom: -0.2rem;
  left: 0.5rem;
  width: 0.2rem;
  background: var(--text-color--accent);
}

.sq-step-list__title {
  margin: 0;
  color: var(--text-color--accent);
}

.sq-step-list__content > * + * {
  margin-top: 1.6rem;
}

.sq-step-list__text,
.sq-step-list__text p {
  color: var(--text-color--support);
}

/* `.sq-rich-text` kapt af op 58rem (style.css). Binnen een stap doet het
   origineel dat niet: de tekst loopt over de volle breedte van het item.
   Twee klassen diep, omdat style.css ná dit bestand laadt. */
.sq-step-list .sq-step-list__text {
  max-width: none;
}

.sq-step-list__text > *:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1000px) {
  .sq-step-list > li {
    padding-left: 3rem;
  }
}

/* Logo list — genest blok binnen een kolom van two_column_section: twee logo's
   per rij, en vanaf 1000px in de `vertical`-variant één per rij.

   Alles staat bewust onder `.sq-nested-block--logo_list`: style.css draagt nog de
   losse logo_list-sectie op dezelfde classnamen en laadt ná dit bestand, dus
   alleen die tweede klasse houdt de geneste variant heel. De reset-regels halen
   weg wat die oude sectie anders binnenlekt. */
.sq-nested-block--logo_list .sq-logo-list {
  /* Reset van .sq-logo-list in style.css: grid, rand, achtergrond, marge. */
  display: block;
  gap: 0;
  margin-top: 0;
  max-width: none;
  border: 0;
  background: none;
}

.sq-nested-block--logo_list .sq-logo-list--align-right {
  margin-left: auto;
}

.sq-nested-block--logo_list .sq-logo-list__title {
  margin: 0 0 1.6rem;
  text-align: center;
  color: var(--text-color--interface);
}

.sq-nested-block--logo_list .sq-logo-list__items {
  display: flex;
  flex-flow: wrap;
  gap: 1.6rem 0;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sq-nested-block--logo_list .sq-logo-list__item {
  width: 50%;
  height: 9.6rem;
  padding: 2.4rem 3.2rem;
}

.sq-nested-block--logo_list .sq-logo-list__item:nth-child(2n) {
  border-left: 0.1rem solid var(--border-color);
}

/* Vierkante en staande logo's krijgen in het origineel een dubbelhoog vak. */
.sq-nested-block--logo_list .sq-logo-list__item--square {
  height: 19.2rem;
}

.sq-nested-block--logo_list .sq-logo-list__figure {
  /* Reset van `.sq-logo-list figure` in style.css: grid, padding, achtergrond. */
  display: block;
  position: relative;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: none;
}

.sq-nested-block--logo_list .sq-logo-list__image {
  /* Reset van `.sq-logo-list__image` in style.css: max-height en grayscale.
     Het origineel toont de logo's onbewerkt; de bestanden zijn zelf al eenkleurig. */
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: none;
  opacity: 1;
}

@media only screen and (min-width: 1000px) {
  .sq-nested-block--logo_list .sq-logo-list--vertical {
    max-width: calc((calc(100vw - var(--gutter) * 2) * 0.25) - var(--gutter) * 0.75);
  }

  .sq-nested-block--logo_list .sq-logo-list--vertical .sq-logo-list__items {
    flex-direction: column;
    gap: 0;
  }

  .sq-nested-block--logo_list .sq-logo-list--vertical .sq-logo-list__item {
    width: 100%;
    border-top: 0.1rem solid var(--border-color);
  }

  .sq-nested-block--logo_list .sq-logo-list--vertical .sq-logo-list__item:nth-child(2n) {
    border-left: 0;
  }
}

/* Zonder logo's blijft de wrapper leeg achter; verbergen voorkomt een lege doos
   met marge in de kolom. */
.sq-nested-block--logo_list:empty {
  display: none;
}

/* Alleen bovenaan de kolom: daar heeft het blok erna geen voorganger om ruimte
   van te houden. Midden in een kolom vervangt die marge juist de ruimte van het
   verborgen blok. */
.sq-nested-block--logo_list:empty:first-child + .sq-nested-block {
  margin-top: 0;
}

ul.socialmedia_buttons {
  display: inline-flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.socialmedia_buttons li {
  margin: 0;
}

ul.socialmedia_buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: var(--text-color);
  border: 0.1rem solid var(--border-color);
  border-radius: 50%;
  transition: border-color 0.25s ease-in-out;
}

ul.socialmedia_buttons a:hover,
ul.socialmedia_buttons a:active {
  border-color: var(--text-color--support);
}

ul.socialmedia_buttons i,
ul.socialmedia_buttons .svg-inline--fa {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1.6rem;
  line-height: 1;
}

.sq-footer {
  position: relative;
  color: var(--text-color--interface);
  background: var(--background-color);
}

.sq-footer .container-fluid {
  min-height: 0;
}
/* Het origineel zet geen verticale gutter op de footerrij: de ruimte boven de
   tekst komt volledig uit de padding van .sq-footer__navigation. */
.row_footer {
  --bs-gutter-y: 0;
}

/* Origineel gebruikt hier bodyMeta (line-height 1, weight 400), niet bodySmall. */
.sq-footer__navigation {
  padding-top: 2.4rem;
  padding-bottom: 2rem;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}

/* Gestapelde footer: het origineel houdt 20px tussen copyright en menu. */
.sq-footer__copyright {
  display: inline-block;
  margin: 0 0 2rem;
}

.sq-footer__copyright > :last-child {
  margin-bottom: 0;
}

.sq-footer__menu {
  gap: 0 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sq-footer__menu a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}

.sq-footer__menu a:hover,
.sq-footer__menu a:active {
  color: var(--text-color--accent);
}

@media only screen and (max-width: 999px) {
  .sq-check-list__text {
    letter-spacing: -0.02em;
    font-size: 1.6rem;
    line-height: 175%;
  }
}

@media only screen and (min-width: 1000px) {
  ul.socialmedia_buttons {
    display: flex;
    flex: 1 1;
    justify-content: flex-end;
  }
}

/* De bootstrap-utilities in de markup schakelen op 992px, het origineel pas op
   1000px; deze query houdt de footer tot en met 999px gestapeld. !important,
   omdat die utilities het zelf ook gebruiken. */
@media only screen and (max-width: 999px) {
  .sq-footer__navigation {
    flex-direction: column !important;
    text-align: center !important;
  }

  .sq-footer__menu {
    justify-content: center !important;
  }
}

@media only screen and (min-width: 1000px) {
  .sq-footer__navigation {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sq-footer__copyright {
    margin: 0 1.2rem 0 0;
    padding-right: 1.2rem;
    border-right: 0.1rem solid var(--border-color);
  }
}

@media only screen and (min-width: 1400px) {
  .sq-check-list__text {
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 1792px) {
  .sq-check-list__text {
    font-size: max(2.4rem, min(-2.2666666667rem + 2.6041666667vw, 4.4rem));
  }

  /* Het origineel houdt hier 1.8rem vast, ook boven 2560px — geen 2rem. */
  .sq-footer__navigation {
    font-size: 1.8rem;
  }
}
