/* ═══════════════════════════════════════════
   blog.css — Blog Listesi Sayfası
   site.css zaten nav/footer/lang/animations içerir.
   ═══════════════════════════════════════════ */

/* ── Blog Hero ── */
.blog-hero { background: var(--navy); padding: 80px 5%; }
.blog-hero-inner { max-width: 1200px; margin: 0 auto; }
.blog-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.blog-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.blog-hero-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
.blog-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 520px; line-height: 1.7; }

/* ── Featured ── */
.featured-section { max-width: 1200px; margin: 0 auto; padding: 60px 5% 0; }
.featured-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; transition: all 0.3s; text-decoration: none; color: inherit; }
.featured-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(15,34,72,0.14); border-color: var(--navy); }
.featured-img { background: linear-gradient(135deg, var(--navy) 0%, #1a3461 100%); display: flex; align-items: center; justify-content: center; min-height: 320px; position: relative; overflow: hidden; }
.featured-img::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; }
.featured-img-text { font-family: 'DM Serif Display', serif; font-size: 4rem; color: rgba(255,255,255,0.06); font-style: italic; text-align: center; padding: 2rem; line-height: 1.2; }
.featured-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.featured-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; flex-wrap: wrap; }
.cat-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; background: var(--navy-light); color: var(--navy); }
.read-time { font-size: 0.78rem; color: var(--text-muted); }
.post-date { font-size: 0.78rem; color: var(--text-muted); }
.featured-title { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.02em; }
.featured-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; flex: 1; margin-bottom: 1.5rem; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; transition: gap 0.2s; }
.featured-card:hover .read-more { gap: 10px; }

/* ── Grid ── */
.posts-section { max-width: 1200px; margin: 0 auto; padding: 48px 5% 80px; }
.posts-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.posts-header h2 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--navy); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.8rem; transition: all 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.post-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(15,34,72,0.1); border-color: transparent; }
.post-card:hover::after { transform: scaleX(1); }
.post-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.post-title { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--navy); line-height: 1.35; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.post-excerpt { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; flex: 1; margin-bottom: 1.2rem; }
.post-link { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-top: auto; }

/* ── Empty State ── */
.empty-note { grid-column: 1/-1; background: var(--bg-card); border: 1.5px dashed var(--border); border-radius: 16px; padding: 3rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── Blog Responsive ── */
@media (max-width: 900px) {
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { min-height: 200px; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
    .posts-grid { grid-template-columns: 1fr; }
}
