/* Takvimim Blog — editorial / şık serif */
.blog-page {
  --blog-bg: #0a0a0a;
  --blog-text: #f4f4f5;
  --blog-muted: #a1a1aa;
  --blog-accent: #e11d48;
  --blog-card: #141414;
  --blog-border: rgba(255,255,255,.08);
  min-height: 100vh;
  background: var(--blog-bg);
  color: var(--blog-text);
  font-family: 'Inter', system-ui, sans-serif;
}

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--blog-border);
}
.blog-nav a { color: var(--blog-text); text-decoration: none; }
.blog-nav-brand { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; }
.blog-nav-links { display: flex; gap: 20px; font-size: 0.88rem; }
.blog-nav-links a { opacity: 0.75; }
.blog-nav-links a:hover { opacity: 1; }
.blog-nav-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  opacity: 1;
  letter-spacing: -0.02em;
}
.blog-nav-accent {
  color: var(--blog-accent);
}

.blog-hero {
  text-align: center;
  padding: 56px 24px 40px;
}
.blog-hero-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em 0.28em;
}
.blog-hero-brand { font-style: italic; }
.blog-hero-accent {
  color: var(--blog-accent);
  font-style: italic;
}
.blog-hero-rest {
  color: #d4d4d8;
  font-style: italic;
}
.blog-hero-amp {
  color: #71717a;
  font-style: italic;
  font-weight: 400;
  padding: 0 0.05em;
}
.blog-hero-blog {
  color: #e4e4e7;
  font-style: italic;
}
.blog-nav-amp {
  color: var(--blog-muted);
  font-weight: 400;
}
.blog-ph-amp {
  color: #71717a;
  margin: 0 0.15em;
}
.blog-hero-sub {
  margin: 16px auto 0;
  max-width: 420px;
  color: var(--blog-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.blog-card {
  background: var(--blog-card);
  border: 1px solid var(--blog-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.blog-card-cover {
  aspect-ratio: 16/10;
  background: #1f1f1f;
  overflow: hidden;
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #52525b;
  letter-spacing: -0.02em;
}
.blog-ph-accent { color: var(--blog-accent); }
.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body { padding: 22px 24px 26px; }
.blog-card-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blog-muted);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 10px;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--blog-muted);
  line-height: 1.55;
  margin: 0;
}

.blog-post-cover {
  width: 100%;
  max-height: 52vh;
  object-fit: cover;
  display: block;
}
.blog-post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px 80px;
}
.blog-post-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blog-muted);
  margin-bottom: 16px;
}
.blog-post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.blog-post-content {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #e4e4e7;
}
.blog-post-content h2, .blog-post-content h3 {
  font-style: italic;
  font-weight: 500;
  margin-top: 1.6em;
}
.blog-post-content p { margin: 0 0 1.2em; }
.blog-post-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5em 0;
}
.blog-post-content a { color: #fda4af; }

.blog-footer {
  border-top: 1px solid var(--blog-border);
  padding: 24px 32px;
  font-size: 0.78rem;
  color: var(--blog-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
.blog-footer a { color: var(--blog-muted); text-decoration: none; }
.blog-footer a:hover { color: var(--blog-text); }

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 48px;
}
.blog-pagination a {
  color: var(--blog-text);
  padding: 8px 16px;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
}
.blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--blog-muted);
}

@media (max-width: 640px) {
  .blog-nav { padding: 14px 18px; }
  .blog-grid { padding: 0 18px 48px; grid-template-columns: 1fr; }
}
