/* Additive styles for the blog pages only — style.css is untouched and
   already provides the header/footer/section/button/kicker foundation
   these pages reuse. */

.blog-empty{
  text-align:center;
  color:var(--ink-3);
  padding:40px 0;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
  gap:28px;
  margin-top:36px;
}

.blog-card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:transform .3s var(--ease), border-color .3s var(--ease);
}
.blog-card:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
}
.blog-card a{
  display:block;
  color:inherit;
  text-decoration:none;
}

.blog-card-media{
  aspect-ratio:16/10;
  overflow:hidden;
  background:var(--bg-sand);
}
.blog-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-card-body{
  padding:20px 22px 24px;
}

.blog-card-date{
  font-size:12.5px;
  color:var(--gold-2);
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.blog-card-title{
  font-size:19px;
  line-height:1.35;
  margin:8px 0 8px;
  color:var(--ink);
}

.blog-card-excerpt{
  font-size:14.5px;
  color:var(--ink-3);
  line-height:1.6;
  margin:0;
}

.blog-pager{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:44px;
}
.blog-pager a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 10px;
  border-radius:var(--r-sm);
  border:1px solid var(--line);
  color:var(--ink-2);
  text-decoration:none;
  font-size:14px;
}
.blog-pager a:hover{border-color:var(--gold)}
.blog-pager a.active{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--on-gold);
  font-weight:600;
}

/* single post */
.post-wrap{
  max-width:760px;
}
.post-back{
  margin:0 0 18px;
}
.post-back a{
  color:var(--ink-3);
  text-decoration:none;
  font-size:14px;
}
.post-back a:hover{color:var(--gold-2)}

.post-date{
  font-size:12.5px;
  color:var(--gold-2);
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.post h1{
  margin:10px 0 24px;
}

.post-cover{
  border-radius:var(--r-lg);
  overflow:hidden;
  margin-bottom:32px;
  box-shadow:var(--sh-2);
}
.post-cover img{
  width:100%;
  display:block;
}

.post-body{
  color:var(--ink-2);
  font-size:16.5px;
  line-height:1.8;
}
.post-body h2{
  color:var(--ink);
  font-size:24px;
  margin:1.6em 0 .6em;
}
.post-body h3{
  color:var(--ink);
  font-size:19px;
  margin:1.4em 0 .5em;
}
.post-body p{margin:0 0 1.2em}
.post-body a{color:var(--gold-2)}
.post-body ul,.post-body ol{margin:0 0 1.2em;padding-left:1.4em}
.post-body ul{list-style:disc}
.post-body ol{list-style:decimal}
.post-body ul ul,.post-body ol ul{list-style:circle}
.post-body li{margin-bottom:.4em;list-style:inherit}
.post-body blockquote{
  margin:0 0 1.2em;
  padding:4px 0 4px 18px;
  border-left:3px solid var(--gold);
  color:var(--ink-3);
}
.post-body img{
  max-width:100%;
  border-radius:var(--r);
  margin:1.2em 0;
}
.post-body table{
  width:100%;
  border-collapse:collapse;
  margin:0 0 1.4em;
  font-size:15px;
  overflow-x:auto;
  display:block;
}
.post-body th,.post-body td{
  padding:10px 14px;
  border:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
.post-body th{
  background:var(--bg-sand);
  color:var(--ink);
  font-weight:600;
}
.post-body tr:nth-child(even) td{background:var(--inv-surface)}

.post-share{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:40px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.post-share-label{
  font-size:13px;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:var(--ink-3);
}
.post-share-btns{
  display:flex;
  gap:10px;
}
.post-share-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--bg-soft);
  border:1px solid var(--line);
  color:var(--ink-2);
  cursor:pointer;
  transition:transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.post-share-btn svg{width:18px;height:18px}
.post-share-btn:hover{transform:translateY(-2px);border-color:var(--gold);color:var(--gold-2)}
.post-share-btn.wa:hover{color:var(--wa);border-color:var(--wa)}
.post-share-btn.copy.copied{border-color:var(--gold);color:var(--gold-2)}
.post-share-btn.copy.copied::after{
  content:"Kopyalandı";
  position:absolute;
  bottom:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  background:var(--ink);
  color:var(--bg);
  font-size:12px;
  font-weight:600;
  padding:4px 10px;
  border-radius:6px;
  white-space:nowrap;
}

.post-related{
  border-top:1px solid var(--line);
}
