/* Legal page base */
.legal{
  background: #ffffff;
  color: #111827;
}

/* Legal hero section */
.legalHero{
  padding: 64px 0 34px;
}

/* Hero container */
.legalHero__wrap{
  width: min(880px, 92%);
  margin: 0 auto;
  text-align: center;
}

/* Hero title */
.legalHero__title{
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

/* Last updated text */
.legalHero__updated{
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
}

/* Hero description */
.legalHero__lead{
  margin: 0 auto 14px;
  max-width: 70ch;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #374151;
}

/* Privacy accordion section */
.ppAcc{
  padding: 18px 0 70px;
  background: #fff;
}

/* Accordion container */
.ppAcc__wrap{
  width: min(980px, 92%);
  margin: 0 auto;
  border-top: 1px solid #e5e7eb;
}

/* Accordion item */
.ppAcc__item{
  border-bottom: 1px solid #e5e7eb;
}

/* Accordion header */
.ppAcc__summary{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 22px 4px;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

/* Remove default marker */
.ppAcc__summary::-webkit-details-marker{
  display: none;
}

/* Accordion icon */
.ppAcc__icon{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  opacity: .6;
}

/* Icon horizontal line */
.ppAcc__icon::before,
.ppAcc__icon::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #111827;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

/* Icon vertical line */
.ppAcc__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Icon change when open */
.ppAcc__item[open] .ppAcc__icon::after{
  opacity: 0;
}

/* Accordion content */
.ppAcc__content{
  padding: 0 4px 20px;
  max-width: 80ch;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Content paragraph */
.ppAcc__content p{
  margin: 0 0 12px;
}

/* Content heading */
.ppAcc__content h3{
  margin: 14px 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
}

/* Content list */
.ppAcc__content ul{
  padding-left: 18px;
  margin: 0;
}

/* List items */
.ppAcc__content li{
  margin: 6px 0;
}

/* Accordion hover */
.ppAcc__summary:hover{
  color: #0f172a;
}