/* Reset & base */
.blog-container,
.blog-banner-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Banner */
.blog-banner-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.blog-banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Post styling */
.blog-post {
  background: #fff;
  margin-top: -4rem;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.post-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
}

/* Headings */
.blog-post h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #444;
  border-left: 4px solid #e74c3c;
  padding-left: 0.75rem;
}

/* Highlight */
.highlight {
  background: #fffae6;
  padding: 0.1em 0.3em;
  border-radius: 4px;
  color: #c0392b;
}

/* Lists */
.screening-list {
  list-style: disc inside;
  margin: 1rem 0;
  padding-left: 1rem;
}
.screening-list li {
  margin-bottom: 0.5rem;
}

/* CTA box */
.cta {
  background: #f9f3ec;
  border-left: 4px solid #e67e22;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-style: italic;
}

/* Hashtags */
.hashtags {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}

/* Links */
.blog-post a {
  color: #e74c3c;
  text-decoration: none;
  border-bottom: 1px dashed #e74c3c;
}
.blog-post a:hover {
  text-decoration: underline;
}
