/* === Hero секция === */
.post-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    color: #fff;
    background-size: cover;
    background-position: center;
    justify-content: center;
}
.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, var(--color-bg, #0a0a0a) 100%);
  z-index: 0;
}
.post-hero .container {
  position: relative;
  z-index: 1;
}
.post-hero h1 {
text-align: center;
line-height: var(--h1-size);
  max-width: 800px;
}

/* === Основной контент + сайдбар === */
.single-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}
.single-main {
  flex: 1 1 640px;
}
.single-sidebar {
  flex: 1 1 300px;
}

/* === Баннер === */
.single-banner {
  margin: 60px 0 30px;
  text-align: center;
}
.single-banner img {
  max-width: 100%;
  height: auto;
}

/* === Секция "Еще интересное" === */
.more-posts {
  padding: 40px 0;
}
.more-posts .section-header {
  margin-bottom: 24px;
}
.more-posts .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
