/* ============================================================
   BLOCK: faq — Section heading styles (moved from inline)
   ============================================================ */

.location-faq-block .sec-head h2 {
  color: #fff;
}

.location-faq-block .sec-head h2 span {
  color: var(--copper);
}

.location-faq-block .sec-head p {
  color: var(--steel);
  margin-top: 10px;
}

/* ============================================================
   BLOCK: faq
   All selectors scoped under .faq-block (parent class on root)
   so these styles cannot bleed into other blocks.
   ============================================================ */

.location-faq-block .faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 40px;
}

.location-faq-block .inn--mid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.location-faq-block .tld{
  color:#fff;
}

.location-faq-block .tld span{
  color:var(--copper);
}

.location-faq-block .faq-item {
  background: #242424;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 3px;
  overflow: hidden;
}

.location-faq-block .faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}

.location-faq-block .faq-q:hover {
  color: var(--copper-lt);
}

.location-faq-block .faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--copper);
  transition: transform .3s;
}

.location-faq-block .faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.location-faq-block .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}

.location-faq-block .faq-item.open .faq-a {
  max-height: 300px;
}

.location-faq-block .faq-a p {
  padding: 0 24px 22px;
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  color: var(--steel);
  line-height: 1.75;
}