/* SEO enhancements: breadcrumbs + FAQ accordions.
   Theme-agnostic (uses currentColor + transparent borders) so it sits cleanly
   on both the minimal (mn-*/ev-*) and spector (strv-*) page systems. */

/* ---------------------------------------------------------------- Breadcrumbs */
.tc-breadcrumb {
  font-family: "Inter", "Geist", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.tc-breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
}
.tc-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.tc-breadcrumb__list li + li::before {
  content: "/";
  opacity: 0.4;
  font-size: 0.8em;
}
.tc-breadcrumb a {
  color: currentColor;
  opacity: 0.62;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.tc-breadcrumb a:hover {
  opacity: 1;
}
.tc-breadcrumb [aria-current="page"] {
  opacity: 1;
  font-weight: 600;
}

/* --------------------------------------------------------------------- FAQ */
.tc-faq {
  max-width: 820px;
  margin: 0 auto;
}
.tc-faq__head {
  text-align: center;
  margin-bottom: 2rem;
}
.tc-faq__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.55;
  margin: 0 0 0.5rem;
}
.tc-faq__title {
  font-family: "Funnel Display", "Geist", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0;
}
.tc-faq__item {
  border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent);
}
.tc-faq__item:last-child {
  border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent);
}
.tc-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: "Geist", "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
}
.tc-faq__q::-webkit-details-marker {
  display: none;
}
.tc-faq__q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.6;
  transition: transform 0.2s ease;
  flex: none;
}
.tc-faq__item[open] .tc-faq__q::after {
  content: "\2212"; /* minus */
}
.tc-faq__a {
  padding: 0 0 1.3rem;
  margin: 0;
  max-width: 64ch;
  font-size: 0.97rem;
  line-height: 1.65;
  opacity: 0.8;
}
.tc-faq__a a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------- Related links (blog) */
.tc-related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.tc-related__item a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  border-radius: 12px;
  color: currentColor;
  text-decoration: none;
  font-family: "Geist", "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tc-related__item a:hover {
  border-color: color-mix(in srgb, currentColor 42%, transparent);
  transform: translateY(-2px);
}
.tc-related__kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.5;
  flex: none;
}
