/* ── Blog FAQ — Concept 1: Luxe Accordion ────────────────────────── */
.faq-list {
  margin: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  transition: background .35s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

/* turuncu→altın dikey ışık çubuğu */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #E85D1F, #D9B779);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s ease;
  border-radius: 0 2px 2px 0;
}

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item[open] {
  background: linear-gradient(100deg, rgba(232, 93, 31, .07), transparent 55%);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1rem 1.35rem 1.3rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  line-height: 1.45;
  list-style: none;
  transition: color .22s ease, padding-left .22s ease;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q:hover {
  color: #fff;
  padding-left: 1.75rem;
}

/* yuvarlak + ikonu */
.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(232, 93, 31, .45);
  color: #E85D1F;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  transition: transform .35s ease, background .3s ease, color .3s ease, border-color .3s ease;
  margin-top: 1px;
}

.faq-item[open] .faq-q::after {
  transform: rotate(135deg);
  background: #E85D1F;
  color: #fff;
  border-color: #E85D1F;
}

.faq-a {
  padding: 0 1.2rem 1.35rem 1.3rem;
  font-size: 0.91rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
  max-width: 860px;
}
