:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4cc9f0;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.post h1 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.post .meta {
  color: var(--white);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.post .meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post .content {
  line-height: 1.7;
  flex-wrap: wrap;
  color: var(--text-color);
}

.post .content h2,
.post .content h3 {
  margin: 2rem 0 1.5rem;
  color: var(--primary-color);
}

.post .content pre {
  background: #f6f8fa;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.post .content code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.post .content blockquote {
  border-left: 4px solid var(--accent-color);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--light-gray);
  color: var(--dark-gray);
}

.post .content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  border: 1px solid var(--medium-gray);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
}

.post-navigation a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.post-navigation a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .post header h1 {
    font-size: 1.8rem;
  }
  
  .post .content pre {
    padding: 1rem;
  }
}
