/* =====================
   RESET & BASE
===================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}

/* =====================
   HEADER & NAV
===================== */

.site-header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #111;
}

.site-header nav a {
  margin-left: 16px;
  font-size: 14px;
  text-decoration: none;
  color: #444;
}

.site-header nav a:hover {
  color: #000;
  text-decoration: underline;
}

/* Mobile nav */
@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav {
    margin-top: 10px;
  }

  .site-header nav a {
    margin-left: 0;
    margin-right: 14px;
    font-size: 13px;
  }
}

/* =====================
   HERO (HOME)
===================== */

.hero {
  margin: 40px 0;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #444;
}

/* =====================
   CATEGORIES (HOME)
===================== */

/* ❗️ÖNEMLİ: önceki .categories grid’i KALDIRILDI */
.categories {
  margin: 40px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.category-card {
  display: block;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  background: #fff;
  transition: all 0.2s ease;
}

.category-card:hover {
  background: #fafafa;
  border-color: #ddd;
  transform: translateY(-2px);
}

/* =====================
   LATEST FIXES
===================== */

.latest {
  margin-top: 40px;
}

.latest h2 {
  margin-bottom: 12px;
}

.latest ul {
  list-style: none;
  padding: 0;
}

.latest li {
  margin-bottom: 10px;
}

.latest a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
}

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

/* =====================
   ARTICLE
===================== */

.article h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.article .content {
  margin-top: 20px;
}

.article .content h2 {
  margin-top: 30px;
  font-size: 20px;
}

.article .content p {
  margin-bottom: 14px;
}

.article ul {
  padding-left: 20px;
}

.article li {
  margin-bottom: 8px;
}

/* =====================
   FAQ (ARTICLE)
===================== */

.faq {
  margin-top: 40px;
}

.faq h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.faq details {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: #fafafa;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq summary:hover {
  color: #000;
}

.faq .faq-answer {
  margin-top: 10px;
  font-size: 15px;
  color: #333;
}

/* =====================
   RELATED ARTICLES
===================== */

.related {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.related h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.related ul {
  padding-left: 18px;
}

.related a {
  text-decoration: none;
  color: #0066cc;
}

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

/* =====================
   CATEGORY PAGE
===================== */

.category h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.category-intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.fix-list article {
  margin-bottom: 18px;
}

.fix-list a {
  display: block;
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
}

.fix-list a:hover {
  border-color: #ddd;
  background: #fafafa;
}

.fix-list h2 {
  font-size: 18px;
  margin: 0 0 6px 0;
}

.fix-list p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* =====================
   FOOTER
===================== */

.site-footer {
  border-top: 1px solid #eee;
  margin-top: 60px;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
}

.site-footer a {
  color: #555;
  text-decoration: none;
  margin-left: 10px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.article-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.toc {
  background: #f8f9fa;
  padding: 16px;
  border-left: 4px solid #007aff;
  margin: 24px 0;
}

.info-box {
  background: #fff7e6;
  padding: 16px;
  border-left: 4px solid #ffa500;
  margin: 24px 0;
}

.related-articles {
  margin-top: 48px;
}

.content ol li::marker {
  font-weight: 670;
}

/* =====================
   BREADCRUMB
===================== */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #2563EB;
    text-decoration: none;
}

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

.breadcrumb span {
    color: #555;
}


.hub-reference{
background:#f5f7fa;
border-left:4px solid #2563EB;
padding:14px;
margin:20px 0;
font-size:14px;
line-height:1.5;
}
.hub-related{
margin-bottom:12px;
font-size:14px;
color:#444;
}