/* ════════════════════════════════════════════════════════════════
   VLink Outline — FAQ shortcode ([vlink_outline_faq])
   Pure-CSS accordion using <details>/<summary> — no JS.
   ════════════════════════════════════════════════════════════════ */

.vog-faq {
  max-width: 760px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0f172a;
}
.vog-faq-head { text-align: center; margin-bottom: 28px; }
.vog-faq-title {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #0f172a;
}
.vog-faq-lead {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.vog-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vog-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .12s;
}
.vog-faq-item[open] { border-color: #cbd5e1; }
.vog-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 16px 56px 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  position: relative;
  transition: background .12s;
}
.vog-faq-q::-webkit-details-marker { display: none; }
.vog-faq-q:hover { background: #f8fafc; }
.vog-faq-q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #94a3b8;
  transition: transform .15s, color .15s;
}
.vog-faq-item[open] .vog-faq-q::after {
  transform: translateY(-50%) rotate(45deg);
  color: #ef6c1a;
}
.vog-faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}
.vog-faq-a a {
  color: #ef6c1a;
  text-decoration: none;
  border-bottom: 1px dotted #fbbf24;
}
.vog-faq-a a:hover { border-bottom-style: solid; }
.vog-faq-a strong { color: #0f172a; }
