/* фон и отступы */
.blog-post-page {
    padding: 8rem 0;
    background: var(--bg-light);
  }
  
  /* «← All blogs» */
  .back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
  }
  .back-link:hover {
    text-decoration: underline;
  }
  
  /* Заголовок и дата */
  .post-title {
    font-size: 2rem;
    margin: 0;
    margin-bottom: 0.5rem;
  }
  .post-date {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 2rem;
  }
  
  /* Баннер */
  .post-hero {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Содержимое статьи */
  .post-content {
    max-width: 720px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    color: var(--text-primary);
  }
  .post-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  .post-content p {
    margin-bottom: 1.2rem;
  }
  .post-content ul {
    list-style: disc inside;
    margin: 1rem 0 2rem;
    padding-left: 0;
  }
  
  /* Адаптив */
  @media (max-width: 800px) {
    .blog-post-page {
      padding: 2rem 0;
    }
    .post-hero {
      height: 200px;
    }
  }
  