/* ================================================
   BLOG / SSS SAYFASI STİLLERİ
   ================================================ */

.blog-page-body .navbar { background: var(--black) !important; }

/* Kategori Nav */
.blog-nav {
  position: sticky;
  top: 78px;
  z-index: 100;
  background: #fff;
  border-bottom: 1.5px solid var(--g200);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.blog-nav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
}
.blog-nav-inner::-webkit-scrollbar { display: none; }
.blog-nav-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border: 1.5px solid var(--g200);
  background: #fff;
  white-space: nowrap;
  transition: var(--t);
  text-decoration: none;
}
.blog-nav-btn:hover { color: var(--blue); border-color: var(--blue); }
.blog-nav-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Ana içerik */
.blog-main { background: var(--g50); }
.blog-container { padding-top: 60px; padding-bottom: 60px; }

/* Bölüm */
.blog-section {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-s);
  scroll-margin-top: 130px;
}

.blog-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1.5px solid var(--g100);
}
.blog-section-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a2744, #0e7490);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
/* Cam balkon default rengi */
.blog-section:first-of-type .blog-section-icon {
  background: linear-gradient(135deg, #0a2744, #1d4ed8);
}
.blog-section-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}
.blog-section-header p {
  font-size: 13.5px;
  color: var(--muted);
}

/* FAQ Liste */
.blog-faq-list { padding: 8px 0; }

.blog-faq-item {
  border-bottom: 1px solid var(--g100);
}
.blog-faq-item:last-child { border-bottom: none; }

.blog-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s, color .2s;
  line-height: 1.45;
}
.blog-faq-q:hover { background: var(--g50); color: var(--blue); }
.blog-faq-item.open .blog-faq-q { color: var(--blue); background: var(--blue-soft); }
.blog-faq-q i {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.blog-faq-item.open .blog-faq-q i { transform: rotate(180deg); color: var(--blue); }

.blog-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.blog-faq-item.open .blog-faq-a { max-height: 600px; }
.blog-faq-a p {
  padding: 0 28px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}
.blog-faq-a strong { color: var(--text); }

/* CTA Band */
.blog-cta-band {
  background: var(--black);
  padding: 56px 0;
}
.blog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.blog-cta-inner h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.blog-cta-inner p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
}
.blog-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .blog-nav { top: 64px; }
  .blog-section-header { padding: 18px 16px; }
  .blog-faq-q { padding: 15px 16px; font-size: 14px; }
  .blog-faq-a p { padding: 0 16px 16px; font-size: 14px; }
  .blog-cta-inner { flex-direction: column; text-align: center; }
  .blog-cta-btns { justify-content: center; }
  .blog-cta-btns .btn-hero-primary,
  .blog-cta-btns .btn-hero-ghost { width: 100%; max-width: 280px; justify-content: center; }
}
