/* Стили для журнала */
.journal-section {
  padding: 4rem 1rem;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-header {
  border-bottom: 2px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  position: relative;
  padding-left: 1.5rem;
}

.post-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 4px;
  background: #2980b9;
  border-radius: 2px;
}

.post-date {
  color: #95a5a6;
  font-size: 0.9rem;
}

.post-content h3 {
  color: #2980b9;
  margin: 1.5rem 0 1rem;
}

.post-list {
  padding-left: 1.5rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.post-sublist {
  padding-left: 1rem;
  margin: 0.5rem 0;
  list-style: circle;
}

.code-block {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-family: monospace;
  color: #2c3e50;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .blog-post {
    padding: 1.5rem;
  }

  .post-title {
    font-size: 1.5rem;
  }
}
