@charset "UTF-8";
/************************************************************************************
COLORS
*************************************************************************************/
html {
  --text-color: #1F0E1D;
  --orange: #f08200;
  --blue: #1A6DF3;
  --bg: #BCC1BA;
  --light: #EEF1EC;
}

/************************************************************************************
BASICS
*************************************************************************************/
html {
  --border-radius: 20px;
  --header-height: 90px;
}

/************************************************************************************
BREAKPOINTS
*************************************************************************************/
/************************************************************************************
GLOBALS
*************************************************************************************/
/* ==============================================================
RESPONSIVE SETTINGS
================================================================*/
/************************************************************************************
RESET
*************************************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0px;
  padding: 0px;
  border: 0;
  outline: 0;
  font-size: 100.01%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, p {
  margin: 0px;
  padding: 0px;
  line-height: 1;
}

textarea {
  overflow: auto;
}

input {
  border: 0px solid white;
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/************************************************************************************
CSS BASICS
*************************************************************************************/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  color: var(--text);
  background: #fff;
}

body {
  background: var(--bg);
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
}

*:focus-visible {
  outline: 1px solid var(--blue);
}

/************************************************************************************
GLOBALS
*************************************************************************************/
#wrapper {
  min-height: 100%;
}

.relative {
  position: relative;
}

.shadow {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
  -moz-box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
  box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
}

.shadow--small {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  -moz-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
}

.middle {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 200;
}

.middle--small {
  max-width: 720px;
}

.middle--medium {
  max-width: 1000px;
}

.middle--big {
  max-width: 1500px;
}

.v-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.rounded {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

.btn {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
  margin-top: 36px;
  padding: 17px 32px;
  min-width: 150px;
  border: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--btn-text);
  background: var(--primary);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

.btn:hover {
  filter: brightness(1.04);
}

.btn + .btn {
  margin-left: 20px;
}

.btn--primary {
  background: var(--primary);
  color: var(--btn-text);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--btn-text);
}

.btn--small {
  padding: 12px 30px;
  min-width: 100px;
  font-size: 1.4rem;
}

.hide {
  display: none;
}

.no-overflow {
  overflow: hidden;
}

.background-center {
  background-size: cover;
  background-position: center center;
}

#container {
  position: relative;
  z-index: 50;
  padding-top: calc(var(--header-height) - 20px);
}

.bg-none {
  background: none;
}

.bg-light {
  background: var(--light);
}

.bg-primary {
  background: var(--primary);
  color: #fff;
}
.bg-primary a {
  color: #fff;
}

.bg-secondary {
  background: var(--secondary);
  color: #fff;
}
.bg-secondary a {
  color: #fff;
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  .middle {
    width: calc(100% - 32px);
  }
  .btn {
    padding: 15px 26px;
    min-width: 130px;
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 14px 22px;
    min-width: 0;
    margin-top: 24px;
    font-size: 1.4rem;
  }
  .btn + .btn {
    margin-left: 12px;
  }
}
@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../../fonts/ubuntu/ubuntu-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/************************************************************************************
GLOBAL TYPO
*************************************************************************************/
body {
  font-family: "Ubuntu", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: 5rem;
}
h1 b,
h1 strong {
  color: var(--sorbet);
  font-weight: 700;
}

.block--page-top h1 {
  font-size: 6rem;
}

h2 {
  font-size: 4rem;
  line-height: 1.2;
}

h3 {
  font-size: 2.6rem;
  line-height: 1.25;
}

h4 {
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 500;
}

h5 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
}

.is-intro {
  font-family: "Ubuntu", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 0;
}

p,
ul,
ol,
blockquote {
  margin: 0;
}

p {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.5;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

p a,
li a {
  text-decoration: underline;
}

strong,
b {
  font-weight: 600;
}

.center {
  text-align: center;
}

/************************************************************************************
FLOW / WYSIWYG SPACING
*************************************************************************************/
.text > *,
.wysiwyg > *,
.flow > * {
  margin-top: 0;
  margin-bottom: 0;
}
.text > * + *,
.wysiwyg > * + *,
.flow > * + * {
  margin-top: 3rem;
}
.text > h1 + *,
.text > h2 + *,
.text > h3 + *,
.text > h4 + *,
.text > h5 + *,
.text > h6 + *,
.wysiwyg > h1 + *,
.wysiwyg > h2 + *,
.wysiwyg > h3 + *,
.wysiwyg > h4 + *,
.wysiwyg > h5 + *,
.wysiwyg > h6 + *,
.flow > h1 + *,
.flow > h2 + *,
.flow > h3 + *,
.flow > h4 + *,
.flow > h5 + *,
.flow > h6 + * {
  margin-top: 1.6rem;
}
.text > h1 + blockquote,
.text > h2 + blockquote,
.text > h3 + blockquote,
.text > h4 + blockquote,
.text > h5 + blockquote,
.text > h6 + blockquote,
.wysiwyg > h1 + blockquote,
.wysiwyg > h2 + blockquote,
.wysiwyg > h3 + blockquote,
.wysiwyg > h4 + blockquote,
.wysiwyg > h5 + blockquote,
.wysiwyg > h6 + blockquote,
.flow > h1 + blockquote,
.flow > h2 + blockquote,
.flow > h3 + blockquote,
.flow > h4 + blockquote,
.flow > h5 + blockquote,
.flow > h6 + blockquote {
  margin-top: 3.5rem;
}
.text > p + h2,
.text > ul + h2,
.text > ol + h2,
.text > blockquote + h2,
.wysiwyg > p + h2,
.wysiwyg > ul + h2,
.wysiwyg > ol + h2,
.wysiwyg > blockquote + h2,
.flow > p + h2,
.flow > ul + h2,
.flow > ol + h2,
.flow > blockquote + h2 {
  margin-top: 5.6rem;
}
.text > p + h3,
.text > ul + h3,
.text > ol + h3,
.text > blockquote + h3,
.wysiwyg > p + h3,
.wysiwyg > ul + h3,
.wysiwyg > ol + h3,
.wysiwyg > blockquote + h3,
.flow > p + h3,
.flow > ul + h3,
.flow > ol + h3,
.flow > blockquote + h3 {
  margin-top: 4rem;
}
.text > p + h4,
.text > ul + h4,
.text > ol + h4,
.text > blockquote + h4,
.wysiwyg > p + h4,
.wysiwyg > ul + h4,
.wysiwyg > ol + h4,
.wysiwyg > blockquote + h4,
.flow > p + h4,
.flow > ul + h4,
.flow > ol + h4,
.flow > blockquote + h4 {
  margin-top: 4rem;
}
.text > ul,
.text > ol,
.wysiwyg > ul,
.wysiwyg > ol,
.flow > ul,
.flow > ol {
  padding-left: 2.4rem;
}
.text > ul li,
.text > ol li,
.wysiwyg > ul li,
.wysiwyg > ol li,
.flow > ul li,
.flow > ol li {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.5;
}
.text ul li,
.wysiwyg ul li,
.flow ul li {
  list-style-type: disc;
}
.text > ul li + li,
.text > ol li + li,
.wysiwyg > ul li + li,
.wysiwyg > ol li + li,
.flow > ul li + li,
.flow > ol li + li {
  margin-top: 1.5rem;
}
.text > ul.fa-ul,
.wysiwyg > ul.fa-ul,
.flow > ul.fa-ul {
  list-style: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.text > ul.fa-ul li,
.wysiwyg > ul.fa-ul li,
.flow > ul.fa-ul li {
  list-style: none;
  margin-top: 0;
}
.text > ul.fa-ul li + li,
.wysiwyg > ul.fa-ul li + li,
.flow > ul.fa-ul li + li {
  margin-top: 2.2rem;
}
.text > blockquote,
.wysiwyg > blockquote,
.flow > blockquote {
  padding-left: 2rem;
  border-left: 3px solid rgba(0, 0, 0, 0.15);
}

/************************************************************************************
RESPONSIVE TYPO
*************************************************************************************/
@media (max-width: 1200px) {
  h1 {
    font-size: 4.6rem;
  }
  .block--page-top h1 {
    font-size: 5.2rem;
  }
  h2 {
    font-size: 3.6rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  .is-intro {
    font-size: 2.1rem;
  }
  p,
  .text > ul li,
  .text > ol li,
  .wysiwyg > ul li,
  .wysiwyg > ol li,
  .flow > ul li,
  .flow > ol li {
    font-size: 1.85rem;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 4rem;
  }
  .block--page-top h1 {
    font-size: 4.6rem;
  }
  h2 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.8rem;
  }
  .is-intro {
    font-size: 2rem;
    line-height: 1.45;
  }
  p,
  .text > ul li,
  .text > ol li,
  .wysiwyg > ul li,
  .wysiwyg > ol li,
  .flow > ul li,
  .flow > ol li {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .text > * + *,
  .wysiwyg > * + *,
  .flow > * + * {
    margin-top: 2.6rem;
  }
  .text > p + h2,
  .text > ul + h2,
  .text > ol + h2,
  .text > blockquote + h2,
  .wysiwyg > p + h2,
  .wysiwyg > ul + h2,
  .wysiwyg > ol + h2,
  .wysiwyg > blockquote + h2,
  .flow > p + h2,
  .flow > ul + h2,
  .flow > ol + h2,
  .flow > blockquote + h2 {
    margin-top: 4.8rem;
  }
  .text > p + h3,
  .text > ul + h3,
  .text > ol + h3,
  .text > blockquote + h3,
  .wysiwyg > p + h3,
  .wysiwyg > ul + h3,
  .wysiwyg > ol + h3,
  .wysiwyg > blockquote + h3,
  .flow > p + h3,
  .flow > ul + h3,
  .flow > ol + h3,
  .flow > blockquote + h3 {
    margin-top: 3.6rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 3.4rem;
    line-height: 1.1;
  }
  .block--page-top h1 {
    font-size: 3.8rem;
  }
  h2 {
    font-size: 2.8rem;
    line-height: 1.15;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.9rem;
  }
  h5 {
    font-size: 1.7rem;
  }
  .is-intro {
    font-size: 1.9rem;
    line-height: 1.45;
  }
  p,
  .text > ul li,
  .text > ol li,
  .wysiwyg > ul li,
  .wysiwyg > ol li,
  .flow > ul li,
  .flow > ol li {
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .text > * + *,
  .wysiwyg > * + *,
  .flow > * + * {
    margin-top: 2.2rem;
  }
  .text > h1 + *,
  .text > h2 + *,
  .text > h3 + *,
  .text > h4 + *,
  .text > h5 + *,
  .text > h6 + *,
  .wysiwyg > h1 + *,
  .wysiwyg > h2 + *,
  .wysiwyg > h3 + *,
  .wysiwyg > h4 + *,
  .wysiwyg > h5 + *,
  .wysiwyg > h6 + *,
  .flow > h1 + *,
  .flow > h2 + *,
  .flow > h3 + *,
  .flow > h4 + *,
  .flow > h5 + *,
  .flow > h6 + * {
    margin-top: 1.4rem;
  }
  .text > p + h2,
  .text > ul + h2,
  .text > ol + h2,
  .text > blockquote + h2,
  .wysiwyg > p + h2,
  .wysiwyg > ul + h2,
  .wysiwyg > ol + h2,
  .wysiwyg > blockquote + h2,
  .flow > p + h2,
  .flow > ul + h2,
  .flow > ol + h2,
  .flow > blockquote + h2 {
    margin-top: 4rem;
  }
  .text > p + h3,
  .text > ul + h3,
  .text > ol + h3,
  .text > blockquote + h3,
  .wysiwyg > p + h3,
  .wysiwyg > ul + h3,
  .wysiwyg > ol + h3,
  .wysiwyg > blockquote + h3,
  .flow > p + h3,
  .flow > ul + h3,
  .flow > ol + h3,
  .flow > blockquote + h3 {
    margin-top: 3rem;
  }
  .text > p + h4,
  .text > ul + h4,
  .text > ol + h4,
  .text > blockquote + h4,
  .wysiwyg > p + h4,
  .wysiwyg > ul + h4,
  .wysiwyg > ol + h4,
  .wysiwyg > blockquote + h4,
  .flow > p + h4,
  .flow > ul + h4,
  .flow > ol + h4,
  .flow > blockquote + h4 {
    margin-top: 2.6rem;
  }
  .text > ul,
  .text > ol,
  .wysiwyg > ul,
  .wysiwyg > ol,
  .flow > ul,
  .flow > ol {
    padding-left: 2rem;
  }
}
/************************************************************************************
HEADER
*************************************************************************************/
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: 100px;
  transition: height 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header .middle {
  height: 100%;
  width: 95%;
  max-width: 95%;
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.site-header__logo-img {
  display: block;
  width: auto;
  max-height: 60px;
  transition: max-height 0.3s ease;
}
.site-header.is-top {
  height: 100px;
}
.site-header.is-top .site-header__logo-img {
  max-height: 60px;
}
.site-header.is-compact {
  height: 76px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.site-header.is-compact .site-header__logo-img {
  max-height: 46px;
}
.site-header {
  /************************************************************************************
  NAV
  *************************************************************************************/
}
.site-header__nav .site-header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__nav .site-header__menu > .menu-item {
  position: relative;
}
.site-header__nav .site-header__menu > .menu-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__nav .site-header__menu > .menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.site-header__nav .site-header__menu > .menu-item:hover > a::after, .site-header__nav .site-header__menu > .menu-item:focus-within > a::after {
  transform: scaleX(1);
}
.site-header__nav .site-header__menu > .menu-item.current-menu-item > a::after, .site-header__nav .site-header__menu > .menu-item.current-menu-ancestor > a::after, .site-header__nav .site-header__menu > .menu-item.current_page_item > a::after, .site-header__nav .site-header__menu > .menu-item.current_page_ancestor > a::after {
  transform: scaleX(1);
}
.site-header__nav .site-header__menu .menu-item-has-children > a {
  padding-right: 18px;
}
.site-header__nav .site-header__menu .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}
.site-header__nav .site-header__menu .menu-item-has-children:hover > a::before, .site-header__nav .site-header__menu .menu-item-has-children:focus-within > a::before {
  transform: translateY(-40%) rotate(225deg);
}
.site-header__nav .site-header__menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.site-header__nav .site-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 50;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-header__nav .site-header__menu .sub-menu li {
  margin: 0;
}
.site-header__nav .site-header__menu .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-color);
  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header__nav .site-header__menu .sub-menu a:hover,
.site-header__nav .site-header__menu .sub-menu a:focus-visible {
  background: rgba(0, 0, 0, 0.04);
}
.site-header__nav .site-header__menu .sub-menu .current-menu-item > a,
.site-header__nav .site-header__menu .sub-menu .current_page_item > a {
  color: var(--primary);
  font-weight: 500;
}
.site-header__nav .site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__nav .site-header__menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header {
  /************************************************************************************
  MOBILE TOGGLE
  *************************************************************************************/
}
.site-header__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.site-header__toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.site-header__toggle span:nth-child(1) {
  top: 14px;
}
.site-header__toggle span:nth-child(2) {
  top: 21px;
}
.site-header__toggle span:nth-child(3) {
  top: 28px;
}
.site-header__toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/************************************************************************************
SUBMENU TOGGLE BUTTON
*************************************************************************************/
.submenu-toggle {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 1200px) {
  .site-header .middle {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  .site-header__inner {
    gap: 24px;
  }
  .site-header__nav .site-header__menu {
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .site-header {
    height: 84px;
  }
  .site-header.is-top {
    height: 84px;
  }
  .site-header.is-compact {
    height: 72px;
  }
  .site-header .middle {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
  .site-header__inner {
    gap: 16px;
  }
  .site-header__logo-img {
    max-height: 52px;
  }
  .site-header.is-compact .site-header__logo-img {
    max-height: 42px;
  }
  .site-header__toggle {
    display: block;
  }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }
  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header__nav .site-header__menu {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0;
    align-items: initial;
  }
  .site-header__nav .site-header__menu > .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .site-header__nav .site-header__menu > .menu-item > a {
    display: block;
    min-height: 0;
    padding: 14px 24px;
    font-size: 1.8rem;
  }
  .site-header__nav .site-header__menu > .menu-item > a::after {
    display: none;
  }
  .site-header__nav .site-header__menu .menu-item-has-children {
    position: relative;
  }
  .site-header__nav .site-header__menu .menu-item-has-children > a {
    padding-right: 56px;
  }
  .site-header__nav .site-header__menu .menu-item-has-children > a::before {
    display: none;
  }
  .site-header__nav .site-header__menu .menu-item-has-children::after {
    display: none;
  }
  .site-header__nav .site-header__menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .site-header__nav .site-header__menu .sub-menu a {
    display: block;
    padding: 10px 24px 10px 40px;
    font-size: 1.5rem;
    background: transparent;
  }
  .site-header__nav .site-header__menu .menu-item.is-open > .sub-menu {
    display: block;
  }
  .submenu-toggle {
    display: block;
    position: absolute;
    top: 6px;
    right: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .submenu-toggle::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease, top 0.2s ease;
  }
  .menu-item.is-open > .submenu-toggle::before {
    transform: rotate(225deg);
    top: 18px;
  }
}
@media (max-width: 767px) {
  .site-header {
    height: 76px;
  }
  .site-header.is-top {
    height: 76px;
  }
  .site-header.is-compact {
    height: 68px;
  }
  .site-header .middle {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
  .site-header__logo-img {
    max-height: 46px;
  }
  .site-header.is-compact .site-header__logo-img {
    max-height: 40px;
  }
  .site-header__nav .site-header__menu > .menu-item > a {
    padding: 13px 20px;
    font-size: 1.7rem;
  }
  .site-header__nav .site-header__menu .sub-menu a {
    padding: 10px 20px 10px 36px;
    font-size: 1.5rem;
  }
}
/************************************************************************************
BLOCK
*************************************************************************************/
.block {
  width: 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 2;
}

/* Padding top */
.pt-0 {
  padding-top: 0;
}

.pt-s {
  padding-top: 100px;
}

.pt-n {
  padding-top: 150px;
}

/* Padding bottom */
.pb-0 {
  padding-bottom: 0;
}

.pb-s {
  padding-bottom: 100px;
}

.pb-n {
  padding-bottom: 150px;
}

/* Background helpers */
.bg-white {
  background-color: #fff;
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  /* Padding top */
  .pt-0 {
    padding-top: 0;
  }
  .pt-s {
    padding-top: 50px;
  }
  .pt-n {
    padding-top: 100px;
  }
  /* Padding bottom */
  .pb-0 {
    padding-bottom: 0;
  }
  .pb-s {
    padding-bottom: 50px;
  }
  .pb-n {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  /* Padding top */
  .pt-0 {
    padding-top: 0;
  }
  .pt-s {
    padding-top: 40px;
  }
  .pt-n {
    padding-top: 70px;
  }
  /* Padding bottom */
  .pb-0 {
    padding-bottom: 0;
  }
  .pb-s {
    padding-bottom: 40px;
  }
  .pb-n {
    padding-bottom: 70px;
  }
}
/************************************************************************************
HERO
*************************************************************************************/
.block--hero {
  color: #fff;
}
.block--hero .hero__media {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}
.block--hero .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: none;
}
.block--hero .hero__img,
.block--hero .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.block--hero .hero__content {
  position: relative;
  z-index: 3;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
.block--hero .hero__content-inner {
  max-width: 940px;
  width: 90%;
  padding: 80px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.block--hero h1 {
  color: #fff;
}
.block--hero .hero__links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.block--hero {
  /* Optional modifiers */
}
.block--hero.text-left .hero__content {
  justify-content: flex-start;
}
.block--hero.text-left .hero__content-inner {
  margin-left: 0;
  margin-right: auto;
}
.block--hero.text-center .hero__content {
  justify-content: center;
  align-items: center;
}
.block--hero.text-center .hero__content-inner {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.block--hero.text-center .hero__links {
  justify-content: center;
}
.block--hero {
  /* =========================
     Filter-styrka via ACF-klass
     ========================= */
  /* CENTER – jämn overlay */
}
.block--hero.text-center.filter-10 .hero__media::after {
  background: rgba(0, 0, 0, 0.1);
}
.block--hero.text-center.filter-20 .hero__media::after {
  background: rgba(0, 0, 0, 0.2);
}
.block--hero.text-center.filter-30 .hero__media::after {
  background: rgba(0, 0, 0, 0.3);
}
.block--hero.text-center.filter-40 .hero__media::after {
  background: rgba(0, 0, 0, 0.4);
}
.block--hero {
  /* LEFT – generell toning + starkare spotlight nere vänster */
}
.block--hero.text-left.filter-10 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.1);
}
.block--hero.text-left.filter-20 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.2);
}
.block--hero.text-left.filter-30 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.3);
}
.block--hero.text-left.filter-40 .hero__media::after {
  background: radial-gradient(1200px 700px at 12% 88%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, 0.4);
}
.block--hero {
  /* No filter */
}
.block--hero.no-filter .hero__media::after {
  background: none;
}

/************************************************************************************
PAGE HEADER
*************************************************************************************/
.page-header__meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.page-header__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.page-header__meta-item span {
  font-size: 1.5rem;
}
.page-header__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: var(--primary);
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  .block--hero .hero__content-inner {
    width: 100%;
    padding: 40px;
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .block--hero .hero__content-inner {
    width: 100%;
    padding: 30px;
  }
}
/************************************************************************************
TEXT AND IMAGE
*************************************************************************************/
.block--text-and-image .text-and-image__wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  background: var(--light);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  overflow: hidden;
  position: relative;
}
.block--text-and-image .text-and-image__media {
  position: relative;
  min-height: 500px;
}
.block--text-and-image .text-and-image__img,
.block--text-and-image .text-and-image__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block--text-and-image .text-and-image__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.block--text-and-image .text-and-image__links {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.block--text-and-image.image-right .text-and-image__wrapper {
  grid-template-columns: 60% 40%;
}
.block--text-and-image.image-right .text-and-image__media {
  order: 2;
}
.block--text-and-image.image-right .text-and-image__text {
  order: 1;
}
.block--text-and-image.bg-sand-light .text-and-image__text {
  background: #fff;
}
@media (max-width: 1200px) {
  .block--text-and-image .text-and-image__text {
    padding: 56px;
  }
}
@media (max-width: 991px) {
  .block--text-and-image .text-and-image__wrapper {
    grid-template-columns: 1fr;
  }
  .block--text-and-image .text-and-image__media {
    min-height: 340px;
  }
  .block--text-and-image .text-and-image__text {
    padding: 40px;
  }
  .block--text-and-image.image-right .text-and-image__media,
  .block--text-and-image.image-right .text-and-image__text {
    order: initial;
  }
}
@media (max-width: 767px) {
  .block--text-and-image .text-and-image__media {
    min-height: 260px;
  }
  .block--text-and-image .text-and-image__text {
    padding: 24px;
  }
  .block--text-and-image .text-and-image__links {
    margin-top: 24px;
  }
}

/************************************************************************************
FORM
*************************************************************************************/
.form-block {
  scroll-margin-top: 120px;
}
.form-block .middle {
  display: flex;
  justify-content: center;
}
.form-block__inner {
  width: 100%;
  max-width: 900px;
  padding: 0;
  border-radius: 8px;
}
.form-block__inner--has-image {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  overflow: hidden;
}
.form-block__media {
  min-height: 100%;
}
.form-block__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-block__body {
  padding: 60px;
}
.form-block__head {
  margin-bottom: 32px;
  text-align: center;
}
.form-block__intro {
  margin-top: 16px;
}
.form-block__form {
  display: block;
}
.form-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.form-block__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-block__field--full {
  grid-column: 1/-1;
}
.form-block__field label {
  font-weight: 500;
}
.form-block__field input,
.form-block__field textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.form-block__field textarea {
  resize: vertical;
  min-height: 140px;
}
.form-block__actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}
.form-block__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-block__notice {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 8px;
}
.form-block__notice--success {
  background: #eaf6ea;
  border: 1px solid #b7d9b9;
}
.form-block__notice--error {
  background: #fbeaea;
  border: 1px solid #e2b7b7;
}
.form-block__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-block__checkbox input {
  width: auto;
  margin-top: 3px;
}
.form-block.bg-none .form-block__inner {
  background: var(--light);
}
.form-block.bg-none .form-block__body {
  background: var(--light);
}
@media (max-width: 991px) {
  .form-block__inner--has-image {
    grid-template-columns: 1fr;
  }
  .form-block__media {
    min-height: 260px;
  }
  .form-block__body {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .form-block__grid {
    grid-template-columns: 1fr;
  }
  .form-block__field--full {
    grid-column: auto;
  }
  .form-block__body {
    padding: 24px;
  }
}

.block--articles .middle {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.block--articles .feed-item {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.block--articles .feed-item__content {
  display: flex;
  background: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.block--articles .feed-item__content .image {
  width: 40%;
  position: absolute;
  height: 100%;
}
.block--articles .feed-item__content .feed-item__text {
  width: 60%;
  margin-left: auto;
  margin-right: 0px;
  padding: 80px;
}

/************************************************************************************
PAGINATION
*************************************************************************************/
.pagination {
  justify-self: center;
  text-align: center;
  margin-top: 30px;
}

.pagination .wp-pagenavi a, .pagination .wp-pagenavi span.current, .pagination .page {
  border: 0px;
  color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  padding: 0px;
  padding-top: 10px;
  height: 35px;
  width: 35px;
  display: inline-block;
  font-weight: 500;
  margin: 5px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.pagination .wp-pagenavi a {
  background: var(--blue);
}

.pagination .page {
  background: var(--blue);
}

.pagination .wp-pagenavi span.current {
  background: #7ADBE2;
}

.pagination .wp-pagenavi .previouspostslink, .pagination .wp-pagenavi .nextpostslink, .pagination .wp-pagenavi .last, .pagination .wp-pagenavi .first {
  background: var(--dark);
  color: #fff;
  padding-top: 9px;
}

.pagination .wp-pagenavi a i {
  font-size: 13px;
}

/************************************************************************************
EVENTS
*************************************************************************************/
.events-block__head {
  margin-bottom: 32px;
}
.events-block__section:not(:last-child) {
  margin-bottom: 40px;
}
.events-block__section-title {
  margin-bottom: 20px;
}
.events-block__featured, .events-block__list, .events-block__grid {
  display: grid;
  gap: 24px;
}
.events-block__footer {
  margin-top: 20px;
  text-align: center;
}
.events-block__more-link {
  text-decoration: none;
}

.event-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
}
.event-card__media {
  position: relative;
  aspect-ratio: 2.45/1;
  border-radius: 16px;
  overflow: hidden;
}
.event-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 38%, rgba(0, 0, 0, 0.12) 100%);
}
.event-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 32px;
  color: #fff;
}
.event-card__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 400;
}
.event-card__title a {
  color: #fff;
}
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
}
.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.event-card--featured .event-card__media {
  aspect-ratio: 2.45/1;
}

@media (max-width: 1200px) {
  .event-card__content {
    padding: 28px;
  }
  .event-card__title {
    font-size: 3.8rem;
  }
  .event-card__media {
    aspect-ratio: 2.2/1;
  }
  .event-card--featured .event-card__media {
    aspect-ratio: 2.3/1;
  }
}
@media (max-width: 991px) {
  .events-block__head {
    margin-bottom: 24px;
  }
  .events-block__section:not(:last-child) {
    margin-bottom: 32px;
  }
  .events-block__section-title {
    margin-bottom: 16px;
  }
  .event-card__media {
    aspect-ratio: 2/1;
  }
  .event-card__content {
    padding: 24px;
  }
  .event-card__title {
    font-size: 3.2rem;
  }
  .event-card__meta {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  .event-card--featured .event-card__media {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 767px) {
  .events-block__section:not(:last-child) {
    margin-bottom: 24px;
  }
  .events-block__featured, .events-block__list, .events-block__grid {
    gap: 20px;
  }
  .events-block__footer {
    margin-top: 16px;
  }
  .event-card__media {
    aspect-ratio: 1.55/1;
  }
  .event-card__content {
    padding: 20px;
  }
  .event-card__title {
    font-size: 2.8rem;
    margin-bottom: 6px;
  }
  .event-card__meta {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.4rem;
  }
  .event-card__actions {
    gap: 10px;
  }
  .event-card--featured .event-card__media {
    aspect-ratio: 1.55/1;
  }
}
/************************************************************************************
FOOTER
*************************************************************************************/
.site-footer .footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.site-footer .footer__logo {
  font-weight: 700;
  text-decoration: none;
  max-width: 180px;
  display: flex;
}
.site-footer .footer__contact a {
  text-decoration: none;
}
.site-footer .footer__meta {
  text-align: right;
}
.site-footer .social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
}
.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.site-footer .social-link svg path {
  fill: currentColor;
}
.site-footer .icon--social {
  width: 25px;
  height: 25px;
  display: block;
  /* Simple Icons brukar ha path utan fill, så forc:a färg */
}
.site-footer .icon--social path {
  fill: currentColor;
}
.site-footer .social-link {
  color: #fff; /* eller var(--footer-text) */
}
.site-footer .social-link:hover {
  opacity: 0.85;
}

/************************************************************************************
RESPONSIVE
*************************************************************************************/
@media (max-width: 991px) {
  .site-footer .footer__logo {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer__logo {
    max-width: 80px;
  }
}
.event-image__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.event-exhibitors {
  background: #e9ece7;
}
.event-exhibitors__head {
  text-align: center;
  margin-bottom: 56px;
}
.event-exhibitors__head h2 {
  margin: 0;
}
.event-exhibitors__grid {
  display: grid;
  gap: 48px 36px;
}
.event-exhibitors__grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.event-exhibitors__grid.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.exhibitor-card {
  height: 100%;
}
.exhibitor-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.exhibitor-card__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.exhibitor-card__top {
  background: #fff;
  min-height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 50px;
}
.exhibitor-card__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exhibitor-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
}
.exhibitor-card__bottom {
  background: #1c0318;
  padding: 24px 20px;
  text-align: center;
}
.exhibitor-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}

.exhibitor-header__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.exhibitor-header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px;
  background-color: #fff;
  border-radius: 8px;
}
.exhibitor-header__img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.exhibitor-header__content {
  max-width: 700px;
}
.exhibitor-header__content a {
  margin-left: 10px;
  font-weight: 500;
}
.exhibitor-header__content a:hover {
  color: var(--primary);
}

.exhibitor-content .middle {
  max-width: 720px;
}

@media (max-width: 1200px) {
  .event-exhibitors__grid.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .event-exhibitors__grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .exhibitor-header__inner {
    gap: 48px;
    grid-template-columns: 260px 1fr;
  }
  .exhibitor-header__logo {
    padding: 36px;
  }
}
@media (max-width: 991px) {
  .event-exhibitors__grid.columns-4, .event-exhibitors__grid.columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .exhibitor-card__top {
    min-height: 180px;
    padding: 28px 32px;
  }
  .exhibitor-header__inner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
  .exhibitor-header__logo {
    padding: 28px;
  }
  .exhibitor-header__img {
    max-height: 100px;
  }
}
@media (max-width: 767px) {
  .event-exhibitors__grid.columns-4, .event-exhibitors__grid.columns-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .exhibitor-card__top {
    min-height: 160px;
    padding: 24px;
  }
  .exhibitor-card__logo img {
    max-height: 72px;
  }
  .exhibitor-card__bottom {
    padding: 20px 16px;
  }
  .exhibitor-card__title {
    font-size: 1.7rem;
  }
  .exhibitor-header__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .exhibitor-header__logo {
    justify-content: center;
    padding: 24px;
  }
  .exhibitor-header__img {
    max-height: 80px;
  }
}
