/** Shopify CDN: Minification failed

Line 176:0 Unexpected "}"

**/
/* ==========================================================================
   MU FAQ – Shared styles for hero + accordion sections
   ========================================================================== */

/* ---------- Hero Section ---------- */
.mu-faq-hero__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.mu-faq-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mu-faq-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

.mu-faq-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.5));
}

.mu-faq-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mu-faq-hero__heading {
  font-size: 3.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  line-height: 1.15;
  color: #111;
}

.mu-faq-hero__text {
  font-size: 1.5rem;
  line-height: 1.7;
  max-width: 62rem;
  margin: 0 auto;
  color: #111;
}

/* ---------- Accordion Section ---------- */
.mu-faq-accordion {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Sidebar Layout --- */
.mu-faq-layout {
  display: grid;
  grid-template-columns: 24rem 1fr;
  gap: 4rem;
  align-items: start;
}

/* --- Sidebar Navigation --- */
.mu-faq-sidebar {
  position: sticky;
  top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.1);
  padding-right: 2rem;
}

.mu-faq-sidebar__btn {
  display: block;
  text-decoration: none;
  background: transparent;
  border: none;
  border-left: 0.2rem solid transparent;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  font-family: inherit;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.6);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
  font-weight: 500;
  border-radius: 0;
}

.mu-faq-sidebar__btn:hover {
  color: rgb(var(--color-foreground));
  background: rgba(var(--color-foreground), 0.04);
}

.mu-faq-sidebar__btn.is-active {
  color: rgb(var(--color-foreground));
  border-left-color: rgb(var(--color-foreground));
  font-weight: 600;
  background: rgba(var(--color-foreground), 0.04);
}

/* --- Content Area --- */
.mu-faq-content {
  min-width: 0;
}

/* --- Category Panels --- */
.mu-faq-panel {
  scroll-margin-top: 10rem;
  margin-bottom: 3.5rem;
}

.mu-faq-panel:last-of-type {
  margin-bottom: 0;
}

.mu-faq-panel__heading {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.12);
}

/* --- Accordion Items --- */
.mu-faq-item {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

.mu-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  cursor: pointer;
  list-style: none;
  gap: 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 0.4rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.mu-faq-item summary:hover {
  background: rgba(var(--color-foreground), 0.04);
  color: rgb(var(--color-foreground));
}

.mu-faq-item[open] > summary {
  background: rgba(var(--color-foreground), 0.06);
  font-weight: 600;
  color: rgb(var(--color-foreground));
}
}

.mu-faq-item summary::-webkit-details-marker {
  display: none;
}

.mu-faq-item summary::marker {
  content: '';
}

/* Caret icon */
.mu-faq-item__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.mu-faq-item[open] > summary .mu-faq-item__icon {
  transform: rotate(180deg);
}

/* Accordion content wrapper — animated */
.mu-faq-item__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.mu-faq-item[open] > .mu-faq-item__content {
  max-height: 60rem;
  padding-bottom: 2rem;
}

.mu-faq-item__content .rte {
  font-size: 1.4rem;
  line-height: 1.75;
  opacity: 0.82;
  padding-left: 1.2rem;
}

/* --- Contact CTA --- */
.mu-faq-cta {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
}

.mu-faq-cta__text {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  opacity: 0.8;
}

.mu-faq-cta__link {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  transition: opacity 0.25s ease;
}

.mu-faq-cta__link:hover {
  opacity: 0.85;
}

/* ---------- Responsive ---------- */

/* Tablet (< 990px) */
@media screen and (max-width: 989px) {
  .mu-faq-hero__heading {
    font-size: 2.8rem;
  }

  .mu-faq-hero__text {
    font-size: 1.4rem;
  }

  .mu-faq-layout {
    grid-template-columns: 20rem 1fr;
    gap: 2.5rem;
  }

  .mu-faq-sidebar__btn {
    font-size: 1.3rem;
    padding: 0.8rem 1.2rem;
  }

  .mu-faq-panel__heading {
    font-size: 1.6rem;
  }
}

/* Mobile (< 750px) */
@media screen and (max-width: 749px) {
  .mu-faq-hero {
    padding: 0 1.5rem;
  }

  .mu-faq-hero__heading {
    font-size: 2.2rem;
  }

  .mu-faq-hero__text {
    font-size: 1.3rem;
  }

  .mu-faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mu-faq-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.4rem;
    border-right: none;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.1);
    padding-right: 0;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }

  .mu-faq-sidebar::-webkit-scrollbar {
    display: none;
  }

  .mu-faq-sidebar__btn {
    border-left: none;
    border-bottom: 0.2rem solid transparent;
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .mu-faq-sidebar__btn.is-active {
    border-left-color: transparent;
    border-bottom-color: rgb(var(--color-foreground));
  }

  .mu-faq-item summary {
    padding: 1.4rem 0;
    font-size: 1.35rem;
  }

  .mu-faq-item__content .rte {
    font-size: 1.3rem;
  }

  .mu-faq-panel__heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mu-faq-cta {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .mu-faq-cta__link {
    width: 100%;
    text-align: center;
    padding: 1.4rem 2rem;
  }
}

/* Small mobile (< 480px) */
@media screen and (max-width: 479px) {
  .mu-faq-hero__heading {
    font-size: 1.8rem;
  }

  .mu-faq-hero__text {
    font-size: 1.2rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mu-faq-item__icon {
    transition: none;
  }

  .mu-faq-item__content {
    transition: none;
  }
}
