/* ==========================================================================
   Ufuk İklimi — blog.css (yalnızca blog.php'ye özel)
   ========================================================================== */

.blog-card{ display:flex; flex-direction:column; background:var(--cream-soft); border:1px solid var(--line-soft); overflow:hidden; transition:transform .3s ease, box-shadow .3s ease; }
.blog-card:hover{ transform:translateY(-5px); box-shadow:0 20px 38px -22px rgba(16,27,49,.32); }
.blog-card .bc-body{ padding:1.8rem 1.9rem; }
.blog-card .bc-cat{ font-family:'Cinzel',serif; font-size:.64rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
.blog-card .bc-title{ font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:600; color:var(--navy); margin:.5rem 0 .6rem; line-height:1.2; }
.blog-card .bc-title a{ color:inherit; }
.blog-card .bc-excerpt{ color:var(--muted); font-size:.95rem; }
.blog-card .bc-meta{ display:flex; align-items:center; justify-content:space-between; gap:.7rem; margin-top:1.2rem; padding-top:1rem; border-top:1px solid var(--line-soft); }
.blog-card .bc-author{ display:flex; align-items:center; gap:.6rem; }
.blog-card .bc-author img{ width:34px; height:34px; border-radius:50%; }
.blog-card .bc-author .name{ font-weight:500; color:var(--navy); font-size:.86rem; line-height:1.1; }
.blog-card .bc-date{ font-size:.76rem; color:var(--muted); }

.featured-post{ background:var(--navy); color:var(--cream); padding:2.6rem; position:relative; overflow:hidden; }
.featured-post .eyebrow{ color:var(--gold-light); }
.featured-post h3{ color:#fff; font-size:1.9rem; }
.featured-post p{ color:rgba(245,239,225,.82); }
