/* Blog tekil sayfa stilleri */

.post-page {
  background: #f7f7f7;
  min-height: 100vh;
  padding-top: 140px;
}

.post-hero {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 0 20px;
}

.post-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-hero h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.post-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 14px 0;
}

.post-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 14px;
  justify-content: center;
}

.post-body {
  background: transparent;
  padding: 0 20px 80px;
}

.post-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
}

.post-content h2 {
  margin: 0 0 6px 0;
  font-size: 36px;
  color: #0f172a;
  font-weight: 800;
}

.post-content p,
.post-content li {
  font-size: 17px;
  line-height: 1.75;
  color: #414b57;
}

.post-content ul,
.post-content ol {
  margin: 0 0 10px 18px;
  padding: 0;
}

.post-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.metric {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

.metric-label {
  font-size: 13px;
  color: #6b7280;
}

.post-cta {
  background: linear-gradient(135deg, #111827, #0f172a);
  color: #fff;
  border-radius: 14px;
  padding: 18px;
}

.post-cta h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
}

.post-cta p {
  margin: 0 0 10px 0;
  color: #e5e7eb;
}

.post-btn {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 768px) {
  .post-hero h1 {
    font-size: 32px;
  }

  .post-content {
    padding: 22px;
  }
}
