/* style/blog.css */
.page-blog {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: #0A0A0A; /* Body background handled by shared, but for consistency */
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fixed header spacing - first section only needs small top padding, body handles main offset */
.page-blog__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for the first section */
  padding-bottom: 60px;
  background-color: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog__hero-image {
  width: 1200px;
  height: 675px;
  object-fit: cover;
  display: block;
}

.page-blog__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}