/* ============================================================
   CLEANFREQS — hotline.css
   FAQ page for the SMS hotline. Reuses base/nav chrome.
   ============================================================ */

body.page-hotline {
  overflow-y: auto;
  overflow-x: hidden;
}

.hotline {
  position: relative;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 6rem;
}

.hotline__hero {
  margin-bottom: 3rem;
}

.hotline__title {
  font-family: var(--font-code);
  font-weight: 700;
  font-size: clamp(1.4rem, 4.6vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--fg);
  text-shadow: 0 0 18px rgba(184,255,0,0.12);
}

.hotline__number {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--font-code);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: 0.03em;
  color: var(--green);
  text-decoration: none;
  text-shadow: 0 0 16px rgba(184,255,0,0.18);
  transition: opacity 0.2s ease;
}

.hotline__number:hover,
.hotline__number:focus-visible {
  opacity: 0.8;
}

.hotline__lede {
  margin-top: 1rem;
  max-width: 46ch;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(240,237,230,0.65);
}

.hotline__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.1rem 0;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--fg);
  cursor: pointer;
}

.faq-item__q:hover {
  color: var(--green);
}

.faq-item__marker {
  flex-shrink: 0;
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--muted2);
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item[open] .faq-item__marker {
  color: var(--green);
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 0 1.2rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(240,237,230,0.65);
}

.faq-item__a p {
  margin-top: 0.7rem;
}

.faq-item__a ul {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
}

.faq-item__a li {
  margin-bottom: 0.3rem;
}

.faq-item__a a {
  color: var(--blue-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(63,180,255,0.35);
}

.faq-item__a a:hover {
  color: var(--green);
  border-color: var(--green);
}

.hotline__footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(240,237,230,0.5);
  text-align: center;
}

.hotline__footer a {
  color: var(--green);
  text-decoration: none;
}

.hotline__footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hotline {
    padding: 6.5rem 1.2rem 5rem;
  }

  .hotline__title {
    letter-spacing: 0.02em;
    line-height: 1.25;
  }

  .hotline__number {
    letter-spacing: 0.01em;
  }
}
