.page-blog {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F; /* Dark background for hero section */
  color: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-blog__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let text stand out */
}

.page-blog__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.page-blog__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-blog__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-blog__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog__latest-posts,
.page-blog__categories,
.page-blog__in-depth-guides,
.page-blog__promotions-spotlight,
.page-blog__why-choose,
.page-blog__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

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

.page-blog__post-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.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.6em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog__post-title a {
  color: #0A192F; /* Dark blue for link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
  color: #FFD700; /* Gold on hover */
}

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

.page-blog__read-more {
  display: inline-block;
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog__read-more:hover {
  color: #FFD700;
  border-color: #0A192F;
}

.page-blog__view-all {
  text-align: center;
  margin-top: 50px;
}

.page-blog__cta-button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog__cta-button--secondary:hover {
  background-color: #1a2c4a;
  border-color: #FFD700;
  color: #FFD700;
}

.page-blog__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.page-blog__category-card {
  background-color: #0A192F;
  color: #ffffff;
  padding: 25px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog__category-card:hover {
  background-color: #1a2c4a;
  transform: translateY(-3px);
  color: #FFD700;
}

.page-blog__in-depth-guides {
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-radius: 15px;
}

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

.page-blog__guide-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.page-blog__guide-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-blog__guide-text {
  color: #555555;
  margin-bottom: 20px;
}

.page-blog__promotions-spotlight {
  background-color: #0A192F;
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-blog__promo-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog__promo-text {
  flex: 2 1 500px;
}

.page-blog__promotions-spotlight .page-blog__section-title {
  color: #FFD700;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

.page-blog__promotions-spotlight p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-blog__why-choose {
  text-align: center;
}

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

.page-blog__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-blog__feature-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-blog__feature-description {
  color: #555555;
}

.page-blog__cta-section {
  background-color: #FFD700; /* Gold background for final CTA */
  color: #0A192F;
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
}

.page-blog__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-section .page-blog__cta-button {
  margin: 0 10px;
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
}

.page-blog__cta-section .page-blog__cta-button:hover {
  background-color: #1a2c4a;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 2.8em;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__promotions-spotlight {
    flex-direction: column;
    text-align: center;
  }
  .page-blog__promotions-spotlight .page-blog__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    min-height: 400px;
  }
  .page-blog__hero-title {
    font-size: 2.2em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__posts-grid, .page-blog__categories-grid, .page-blog__guides-grid, .page-blog__why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__promo-image, .page-blog__promo-text {
    flex: 1 1 100%;
  }
  .page-blog__cta-title {
    font-size: 2.2em;
  }
  .page-blog__cta-description {
    font-size: 1.1em;
  }
  .page-blog__cta-section .page-blog__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }

  /* Mobile content area image constraint */
  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 1.8em;
  }
  .page-blog__section-title {
    font-size: 1.5em;
  }
  .page-blog__post-title {
    font-size: 1.4em;
  }
  .page-blog__guide-title {
    font-size: 1.5em;
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
  .page-blog__cta-description {
    font-size: 1em;
  }
}