/** Shopify CDN: Minification failed

Line 241:0 Expected "}" to go with "{"

**/
/* ===== Simple page menu ===== */
.simple-page__menu {
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid rgba(var(--color-border), 0.5);
}
.simple-page__menu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 2rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgb(var(--color-foreground));
  list-style: none;
}

.simple-page__menu-trigger::-webkit-details-marker {
  display: none;
}

.simple-page__menu-list {
  list-style: none;
  padding: 0 0 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.simple-page__menu-item {
  padding: 1rem 0;
}

@keyframes simple-page-border-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.simple-page__menu-link {
  text-decoration: none;
  color: rgb(var(--color-foreground));
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 0.1rem;
}

.simple-page__menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: rgb(var(--color-foreground));
  transform: scaleX(0);
  transform-origin: left center;
}
@media screen and (min-width: 750px) {
  .simple-page__menu {
    margin-bottom: 3rem;
    }
  .simple-page__menu-link {
    font-size: 1.2rem;
  }
  .simple-page__menu-trigger {
    font-size: 1.2rem;
  }
}
.simple-page__menu-link--active::after {
  animation: simple-page-border-in var(--duration-default) ease forwards;
}

/* Desktop: show menu inline, no accordion */
@media screen and (min-width: 750px) {
  .simple-page__menu-accordion {
    border-top: none;
  }

  .simple-page__menu-trigger {
    display: none;
  }

  /* Force details content visible even when closed */
  .simple-page__menu-accordion > .simple-page__menu-list {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    padding: 0 0 1.5rem;
  }

  .simple-page__menu-item {
    padding: 0;
  }
}

/* ===== 2-column simple page layout ===== */
.simple-page__layout {
  display: block;
}

@media screen and (min-width: 750px) {
  .simple-page__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch;
  }
}

/* Left column — sticky title */
.simple-page__sidebar {
  margin-bottom: 2rem;
}

.simple-page__sidebar-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap:60px
}

@media screen and (min-width: 750px) {
  .simple-page__sidebar {
    margin-bottom: 0;
  }

  .simple-page__sidebar-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
  }

  /* R100 — nothing to offset now the sidebar is not sticky. */
}

.simple-page__title {
  margin: 0;
  text-transform: uppercase;
  font-size: calc(var(--font-heading-scale) * 2rem);
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .simple-page__title {
    /* R78 — 2.8rem, per the design. */
    font-size: calc(var(--font-heading-scale) * 2.8rem);
  }
}

/* Featured image */
.simple-page__featured-image {
  margin-top: auto;
  width: 100%;
}

.simple-page__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 750px) {
  .simple-page__featured-image {
    width: 65%;
    /* R77 — no wider than 25% of the page width inside the margins
       (1360px content at 1440 → 340px). */
    max-width: 340px;
    margin-left: auto;
    margin-top: auto;
  }
}

/* Right column — content */
.simple-page__main {
  min-width: 0;
  .title-wrapper{
    margin-bottom: 2rem;
  }
}

.simple-page__content > *:last-child {
  margin-bottom: 0;
}

.simple-page__content p:empty {
  display: none;
}

.simple-page__content {
  margin: 0;
}

.simple-page__content h2,
.simple-page__content h3,
.simple-page__content h4,
.simple-page__content h5,
.simple-page__content h6,
.simple-page__main .faq  {
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8rem;
  margin-bottom: 0;
}

/* No line above the first FAQ question. */
.simple-page__main .faq .accordion:first-of-type {
  border-top: none;
}
.simple-page__content h2{
  margin-top: 6rem;
}
@media screen and (min-width: 750px) {
  .simple-page__content h2,
  .simple-page__content h3,
  .simple-page__content h4,
  .simple-page__main .faq {
    margin-top: 8rem;
  }
  .simple-page__content h2:first-child,
  .simple-page__content h3:first-child,
  .simple-page__content h4:first-child,
  .simple-page__content h5:first-child,
  .simple-page__content h6:first-child,
  .simple-page__main .faq:first-child {
    margin-top: 0;
  }
