/* ============================================================
   Güvencem360 — Mobile nav & extra utility
   ============================================================ */

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--navy-900);
  cursor: pointer;
  margin-left: auto;
}

.mobile-nav {
  background: white;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.mobile-nav-link {
  display: block;
  padding: 14px var(--gutter);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.mobile-nav-link:hover { background: var(--bg-soft); }
.mobile-nav-actions { padding: 20px var(--gutter) 8px; }

@media (max-width: 980px) {
  .site-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
}

/* FAQ answer hidden/shown via JS */
.faq-item .faq-a { display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  transition: transform .2s ease;
}

/* Smooth animations */
.fade-in {
  animation: fadeIn .4s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--ink-500);
}
.breadcrumb a { color: var(--teal-600); }
.breadcrumb span { margin: 0 8px; }

/* Table of contents (SSS sidebar active) */
.faq-cat.active span { background: rgba(255,255,255,.15); color: white; }

/* Blog post layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}
.blog-article { font-size: 16.5px; line-height: 1.8; color: var(--ink-700); }
.blog-article h2 {
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--navy-900);
  margin: 44px 0 16px;
  line-height: 1.25;
}
.blog-article h3 { font-size: 20px; color: var(--navy-900); margin: 32px 0 12px; }
.blog-article p { margin-bottom: 20px; }
.blog-article ul, .blog-article ol { padding-left: 24px; margin: 16px 0 22px; }
.blog-article li { margin-bottom: 10px; line-height: 1.65; }
.blog-article strong { color: var(--navy-900); }
.blog-article a { color: var(--teal-600); }
.blog-callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--teal-500);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.65;
}
.blog-sidebar { position: sticky; top: 100px; }

@media (max-width: 940px) {
  .blog-layout { grid-template-columns: 1fr; gap: 32px; }
  .blog-sidebar { position: static; }
}
