.page-blog {
  color: #ffffff; /* Text color for dark body background */
}

.page-blog__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  background-color: #1A1A2E;
}

.page-blog__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-blog__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-blog__hero-title {
  font-size: 3.5em;
  color: #E9B000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog__hero-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__hero-button:hover {
  background-color: #ffc800;
  transform: translateY(-3px);
}

.page-blog__posts-section {
  padding: 60px 20px;
  background-color: #0d0d1a;
}

.page-blog__posts-container,
.page-blog__deep-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog__section-title {
  font-size: 2.5em;
  color: #E9B000;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog__posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog__post-card {
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
}

.page-blog__post-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

.page-blog__post-content {
  padding: 25px;
}

.page-blog__post-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog__post-title a {
  color: #E9B000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
  color: #ffc800;
}

.page-blog__post-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-blog__post-link {
  display: inline-block;
  color: #E9B000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog__post-link:hover {
  color: #ffc800;
}

.page-blog__deep-content-section {
  padding: 60px 20px;
  background-color: #10101c;
}

.page-blog__deep-content-container p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog__deep-content-container h3 {
  font-size: 2em;
  color: #E9B000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog__deep-content-container ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog__deep-content-container li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-blog__deep-content-container a {
  color: #E9B000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__deep-content-container a:hover {
  color: #ffc800;
}

.page-blog__content-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
}

.page-blog__cta-area {
  background-color: #1A1A2E;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__cta-title {
  font-size: 2.2em;
  color: #E9B000;
  margin-bottom: 20px;
}

.page-blog__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog__cta-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__cta-button:hover {
  background-color: #ffc800;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 3em;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px); /* Keep padding-top for mobile */
  }
  .page-blog__hero-content {
    padding: 30px 15px;
  }
  .page-blog__hero-title {
    font-size: 2.5em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog__posts-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__post-title {
    font-size: 1.3em;
  }
  .page-blog__deep-content-container h3 {
    font-size: 1.7em;
  }
  .page-blog__deep-content-container p, .page-blog__deep-content-container li {
    font-size: 1em;
  }
  .page-blog__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-blog__cta-area {
    padding: 30px;
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
  .page-blog__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}