/* Card container */
.qa-container {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.25) 60%),
    var(--surface-color, rgba(255,255,255,0.18));
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  border: none;
  box-shadow:
    0 0 1px rgba(227, 37, 18, 0.1),
    0 24px 54px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

/* Header button */
.qa-header {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.qa-header:focus-visible { outline: 2px solid rgba(227,37,18,0.5); outline-offset: 2px; }

.qa-header .title-line {
  width: 28px; height: 3px; border-radius: 3px; background: #E32512;
}

.qa-title {
  font-weight: 700; color:#111217; font-size: 1rem; letter-spacing:-0.005em;
}

/* Chevron */
.qa-chevron {
  width: 14px; height: 14px; border-right: 2px solid #1a1a1a; border-bottom: 2px solid #1a1a1a;
  transform: rotate(-45deg); transition: transform .25s ease, opacity .25s ease;
  opacity: .7;
}
.qa-header[aria-expanded="true"] .qa-chevron { transform: rotate(135deg); opacity: 1; }

/* Panel */
.qa-panel {
  padding: 0 16px 16px 56px; /* indent to align with title-line */
}
.answer.richtext { color: rgba(17,18,23,0.85); line-height: 1.6; font-size: .98rem; }
.answer p { margin: 0 0 .8em; }
.answer p:last-child { margin-bottom: 0; }
