/* VB Dynamics Music Academy — local SEO page additions
   Loaded ONLY on /locations/ and /instruments/{slug}/ pages, on top of
   the existing css/style.css. Uses the same CSS custom properties
   (--purple, --cyan, --text-light, --text-mid etc.) already defined
   in style.css so it inherits the site's palette automatically. */

.breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 12px;
  color: var(--text-light, #888);
}
.breadcrumbs a { color: var(--text-light, #888); text-decoration: none; }
.breadcrumbs a:hover { color: var(--purple, #6b3fa0); }
.breadcrumbs span[aria-current] { color: var(--text-mid, #555); font-weight: 600; }

.price-note-strip {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-mid, #444);
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.service-area-list .area-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid, #444);
}

.related-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.related-locations a {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--purple, #6b3fa0);
  color: var(--purple, #6b3fa0);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.related-locations a:hover { background: var(--purple, #6b3fa0); color: #fff; }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 18px 4px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-mid, #222);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--purple, #6b3fa0);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light, #666);
}

.loc-card-link { text-decoration: none; display: block; transition: transform .2s ease; }
.loc-card-link:hover { transform: translateY(-3px); }
.loc-card-desc { font-size: 13px; color: var(--text-light, #777); margin-top: 6px; line-height: 1.6; }
.loc-card-cta { font-size: 12px; font-weight: 700; color: var(--purple, #6b3fa0); margin-top: 10px; display: inline-block; }

.instr-card-link { text-decoration: none; display: block; }
.instr-more { font-size: 12px; font-weight: 700; color: var(--purple, #6b3fa0); margin-top: 10px; display: inline-block; }
