/* CariTakip Pro — Blog paylaşımlı stil */
:root {
  --bg:        #070E22;
  --bg-2:      #0A1430;
  --card:      #0C1733;
  --card-2:    #0E1A38;
  --line:      #1C2A4A;
  --line-soft: #16223E;
  --accent:    #22D3C5;
  --accent-2:  #34D399;
  --danger:    #FF6B82;
  --warn:      #FFB454;
  --ink:       #EAF0F9;
  --muted:     #A5B2C9;
  --muted-2:   #8A98B4;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,0.45);
  --glow: 0 0 40px rgba(34,211,197,0.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
header { position: sticky; top: 0; z-index: 100; background: rgba(7,14,34,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.3px; }
.brand img { height: 30px; width: auto; }
.brand .pro { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: all .15s ease; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #04221F; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Footer */
footer { border-top: 1px solid var(--line-soft); padding: 40px 0; text-align: center; color: var(--muted-2); font-size: 14px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }

/* Blog Liste */
.blog-hero { padding: 60px 0 48px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.blog-hero h1 { font-size: 46px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 14px; }
.blog-hero p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 56px 0; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: all .15s ease; }
.post-card:hover { border-color: rgba(34,211,197,.4); transform: translateY(-3px); }
.post-tag { display: inline-flex; align-items: center; background: rgba(34,211,197,.1); color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 4px 12px; border-radius: 999px; width: fit-content; }
.post-card h2 { font-size: 19px; line-height: 1.3; }
.post-card p { font-size: 14px; color: var(--muted); flex: 1; }
.post-meta { font-size: 13px; color: var(--muted-2); display: flex; gap: 16px; }
.post-read { font-size: 14px; font-weight: 700; color: var(--accent); margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; }
.post-read:hover { gap: 10px; }

/* Makale */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.article-meta .tag { display: inline-flex; background: rgba(34,211,197,.1); color: var(--accent); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.article-meta .date { color: var(--muted-2); font-size: 14px; }
.article-meta .rt { color: var(--muted-2); font-size: 14px; }
.article-wrap h1 { font-size: 40px; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 18px; }
.article-lead { font-size: 19px; color: var(--muted); border-left: 3px solid var(--accent); padding-left: 18px; margin-bottom: 36px; line-height: 1.6; }
.article-wrap h2 { font-size: 24px; margin: 40px 0 14px; letter-spacing: -.3px; }
.article-wrap h3 { font-size: 19px; margin: 28px 0 10px; color: var(--ink); }
.article-wrap p { font-size: 16px; color: var(--muted); margin-bottom: 18px; line-height: 1.75; }
.article-wrap ul, .article-wrap ol { padding-left: 22px; margin-bottom: 18px; display: grid; gap: 10px; }
.article-wrap li { font-size: 16px; color: var(--muted); line-height: 1.6; }
.article-wrap li strong { color: var(--ink); }
.callout { background: rgba(34,211,197,.07); border: 1px solid rgba(34,211,197,.25); border-radius: 12px; padding: 20px 22px; margin: 28px 0; }
.callout p { color: var(--ink); margin: 0; font-size: 15px; }
.callout .cl-title { font-weight: 700; color: var(--accent); font-size: 14px; letter-spacing: .5px; margin-bottom: 6px; }
.article-cta { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; text-align: center; margin: 48px 0 0; }
.article-cta h3 { font-size: 22px; margin-bottom: 10px; }
.article-cta p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-2); margin-bottom: 28px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--line); }

.related { padding: 48px 0 64px; border-top: 1px solid var(--line-soft); }
.related-title { font-size: 22px; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px; transition: all .15s ease; }
.related-card:hover { border-color: rgba(34,211,197,.3); }
.related-card .rtag { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .5px; margin-bottom: 8px; display: block; }
.related-card h3 { font-size: 15px; line-height: 1.35; color: var(--ink); }

@media (max-width: 768px) {
  .post-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-hero h1 { font-size: 32px; }
  .article-wrap h1 { font-size: 28px; }
  .nav-links { display: none; }
}
