/* ===== Blog Liste Sayfası ===== */

.blog-hero {
  background: linear-gradient(135deg, #4bbfe3 0%, #9ad8f0 50%, #e8f7fd 100%);
  color: var(--text);
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
}

.blog-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.blog-hero p {
  color: var(--text-muted);
  font-size: 1rem;
}

.blog-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ice-light);
  box-shadow: 0 2px 10px rgba(72,180,220,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #e91e8c 0%, #b03a9e 40%, #4bbfe3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(72,180,220,0.15);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card h2 {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.blog-card-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--fuchsia);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-card-link:hover { text-decoration: underline; }

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Blog Yazı Sayfası ===== */

.blog-post {
  padding: 3rem 1.5rem;
}

.blog-container {
  max-width: 720px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ice-light);
}

.post-header h1 {
  font-size: 1.9rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.post-content {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

.post-content p {
  margin-bottom: 1.1rem;
}

.post-content ul, .post-content ol {
  margin: 0.75rem 0 1.1rem 1.5rem;
}

.post-content li {
  margin-bottom: 0.4rem;
}

.post-cta {
  background: linear-gradient(135deg, var(--fuchsia) 0%, #4bbfe3 100%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  color: #fff;
}

.post-cta h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.post-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.nav-active,
a.active { color: var(--fuchsia) !important; }
