/* Esnafım Cepte Blog — ortak stil (landing token'larıyla tutarlı) */
:root{
  --navy:#0D1B2A;--teal:#14B8A6;--teal-700:#0E8C7F;--mint:#2DD4BF;
  --ink:#10243A;--muted:#5B6B7B;--line:#E8ECF1;--surface:#fff;--surface-2:#F7F8FA;
  --radius:14px;--ease:cubic-bezier(.2,.6,.2,1);--maxw:820px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Poppins',system-ui,sans-serif;color:var(--ink);background:var(--surface);
  line-height:1.7;font-size:16.5px;-webkit-font-smoothing:antialiased}
a{color:var(--teal-700);text-decoration:none}
a:hover{text-decoration:underline}
img,svg{display:block;max-width:100%}
.wrap{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(18px,5vw,32px)}
/* Üst bar */
.topbar{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line)}
.topbar .in{max-width:1160px;margin-inline:auto;padding-inline:clamp(18px,5vw,40px);
  display:flex;align-items:center;gap:16px;min-height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--navy)}
.brand:hover{text-decoration:none}
.brand .mark{width:36px;height:36px;border-radius:10px;background:var(--navy);color:#fff;
  display:grid;place-items:center;font-size:18px}
.brand .mark b{color:var(--mint)}
.topbar .cta{margin-left:auto;background:var(--teal);color:#fff;font-weight:600;font-size:.9rem;
  padding:10px 18px;border-radius:11px}
.topbar .cta:hover{background:var(--teal-700);text-decoration:none}
/* Makale */
.crumbs{font-size:.82rem;color:var(--muted);margin:26px 0 10px}
.crumbs a{color:var(--muted)}
article h1{font-size:clamp(1.7rem,4vw,2.5rem);font-weight:800;line-height:1.2;
  letter-spacing:-.02em;color:var(--navy)}
.meta{display:flex;flex-wrap:wrap;gap:14px;color:var(--muted);font-size:.85rem;margin:14px 0 6px}
article .lead{font-size:1.08rem;color:var(--ink);border-left:4px solid var(--teal);
  background:var(--surface-2);border-radius:0 var(--radius) var(--radius) 0;padding:16px 20px;margin:22px 0}
article h2{font-size:clamp(1.25rem,2.6vw,1.6rem);font-weight:700;color:var(--navy);margin:38px 0 12px}
article h3{font-size:1.08rem;font-weight:700;color:var(--navy);margin:26px 0 8px}
article p{margin:12px 0;color:#22374d}
article ul,article ol{margin:12px 0 12px 22px}
article li{margin:6px 0;color:#22374d}
article table{width:100%;border-collapse:collapse;margin:16px 0;font-size:.92rem}
article th,article td{border:1px solid var(--line);padding:10px 12px;text-align:left;vertical-align:top}
article th{background:var(--surface-2);font-weight:700}
article strong{color:var(--navy)}
.tip{background:rgba(20,184,166,.08);border:1px solid rgba(20,184,166,.25);border-radius:var(--radius);
  padding:14px 18px;margin:18px 0;font-size:.95rem}
.tip b{color:var(--teal-700)}
/* CTA kutusu */
.cta-box{background:linear-gradient(135deg,var(--navy),#13314f);border-radius:16px;color:#fff;
  padding:26px;margin:36px 0;text-align:center}
.cta-box p{color:#9FB3C8;margin:8px 0 16px}
.cta-box a{display:inline-block;background:var(--teal);color:#fff;font-weight:700;
  padding:13px 26px;border-radius:12px}
.cta-box a:hover{background:var(--teal-700);text-decoration:none}
/* İlgili yazılar */
.related{border-top:1px solid var(--line);margin-top:40px;padding-top:24px}
.related h2{margin-top:0}
.related ul{list-style:none;margin:14px 0 0}
.related li{margin:9px 0}
/* Blog index kartları */
.post-list{display:grid;gap:14px;margin:30px 0 50px}
.post{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:22px;
  transition:transform .2s var(--ease),box-shadow .2s var(--ease)}
.post:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgb(13 27 42/.08)}
.post a{text-decoration:none}
.post h2{font-size:1.15rem;margin:0 0 6px;color:var(--navy)}
.post p{color:var(--muted);font-size:.92rem;margin:0}
.post .tag{display:inline-block;background:rgba(20,184,166,.1);color:var(--teal-700);
  font-size:.72rem;font-weight:600;padding:4px 10px;border-radius:999px;margin-bottom:10px}
/* Footer */
footer{background:var(--navy);color:#9FB3C8;padding:36px 0;font-size:.85rem;margin-top:60px;text-align:center}
footer a{color:var(--mint)}
@media (prefers-reduced-motion: reduce){*{transition-duration:.01ms!important}}
