/* ============================================================================
   common-core — Help Centre

   STRUCTURAL ONLY. Colours and fonts come from the brand's Crayon Box
   variables; the var() fallbacks are neutral greys so the page stays legible
   if a brand omits a key, not a default brand look.
   ============================================================================ */

.cc-help {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--cc-font-body, sans-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cc-text, #1a1a1a);
}

/* ── FAQ list ─────────────────────────────────────────────────────────── */

.cc-help__item {
  border-bottom: 1px solid var(--cc-border-subtle, #d9d9d9);
  padding: 4px 0;
}

.cc-help__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cc-text, #1a1a1a);
  cursor: pointer;
  list-style: none;
}

.cc-help__q::-webkit-details-marker { display: none; }
.cc-help__q::marker { content: ""; }

/* Chevron, drawn in CSS so there's no icon asset to ship. */
.cc-help__q::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-right: 2px solid var(--cc-accent, #767676);
  border-bottom: 2px solid var(--cc-accent, #767676);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cc-help__item[open] .cc-help__q::after { transform: rotate(-135deg); }

.cc-help__q:focus-visible {
  outline: 2px solid var(--cc-accent, #767676);
  outline-offset: 2px;
}

.cc-help__a {
  padding: 0 0 20px;
  font-size: 17px;
  color: var(--cc-text, #1a1a1a);
}

.cc-help__a p { margin: 0 0 12px; }
.cc-help__a p:last-child { margin-bottom: 0; }
.cc-help__a a { color: var(--cc-accent-hover, #444444); }

/* ── Contact routes ───────────────────────────────────────────────────── */

.cc-help__contact { margin-top: 48px; }

.cc-help__contact-title {
  font-family: var(--cc-font-heading, serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--cc-text, #1a1a1a);
}

.cc-help__routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-help__routes a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--cc-border-subtle, #d9d9d9);
  border-radius: 10px;
  background: var(--cc-bg-subtle, #f5f5f5);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.cc-help__routes a:hover { border-color: var(--cc-accent, #767676); }

.cc-help__route-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cc-accent-hover, #444444);
  margin-bottom: 4px;
}

.cc-help__route-value {
  display: block;
  font-size: 17px;
  color: var(--cc-text, #1a1a1a);
}

@media (max-width: 600px) {
  .cc-help__q { font-size: 17px; }
  .cc-help__contact-title { font-size: 25px; }
}
