.page-blog {
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-blog__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-blog__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-blog__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-blog__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-blog__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-blog__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

.page-blog__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-blog__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-blog__articles-section,
.page-blog__strategy-section,
.page-blog__stories-section,
.page-blog__deep-dive-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-blog__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-blog__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
}

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

.page-blog__article-card,
.page-blog__strategy-card,
.page-blog__story-card,
.page-blog__feature-item {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog__article-card:hover,
.page-blog__strategy-card:hover,
.page-blog__story-card:hover,
.page-blog__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog__article-image,
.page-blog__strategy-image,
.page-blog__story-image,
.page-blog__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog__article-content,
.page-blog__strategy-content,
.page-blog__story-content,
.page-blog__feature-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog__article-title,
.page-blog__strategy-title,
.page-blog__story-title,
.page-blog__feature-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
  flex-grow: 1;
}

.page-blog__article-title a,
.page-blog__strategy-title a,
.page-blog__story-title a,
.page-blog__feature-heading a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__article-title a:hover,
.page-blog__strategy-title a:hover,
.page-blog__story-title a:hover,
.page-blog__feature-heading a:hover {
  color: #e6c200;
}

.page-blog__article-excerpt,
.page-blog__strategy-excerpt,
.page-blog__story-excerpt,
.page-blog__feature-text {
  font-size: 1em;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-blog__button--read-more,
.page-blog__button--learn-more,
.page-blog__button--read-story {
  margin-top: auto;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  align-self: flex-start;
}

.page-blog__button--read-more:hover,
.page-blog__button--learn-more:hover,
.page-blog__button--read-story:hover {
  background-color: #e6c200;
}

.page-blog__feature-item {
  text-align: center;
}

.page-blog__feature-image {
  height: 200px; /* Adjust height for feature items */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog__feature-heading {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-blog__feature-text {
  font-size: 0.95em;
  color: #b0b0b0;
}

.page-blog__cta-section {
  padding: 80px 20px;
  text-align: center;
  background: #000000;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-blog__cta-section--promotions {
  background: #1A1A1A;
}

.page-blog__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-blog__cta-description {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-blog__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding: 60px 15px;
  }
  .page-blog__hero-title {
    font-size: 2.5em;
  }
  .page-blog__hero-description {
    font-size: 1.1em;
  }
  .page-blog__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog__button {
    width: 100%;
    max-width: 300px;
  }
  .page-blog__articles-section,
  .page-blog__strategy-section,
  .page-blog__stories-section,
  .page-blog__deep-dive-section,
  .page-blog__cta-section {
    padding: 50px 0;
  }
  .page-blog__section-title,
  .page-blog__cta-title {
    font-size: 2em;
  }
  .page-blog__section-intro,
  .page-blog__cta-description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-blog__article-grid,
  .page-blog__strategy-grid,
  .page-blog__story-grid,
  .page-blog__feature-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .page-blog__article-image,
  .page-blog__strategy-image,
  .page-blog__story-image,
  .page-blog__feature-image {
    height: 200px;
    max-width: 100%; /* Ensures images do not overflow */
  }
  .page-blog__article-title,
  .page-blog__strategy-title,
  .page-blog__story-title,
  .page-blog__feature-heading {
    font-size: 1.4em;
  }
  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog__articles-section img, .page-blog__strategy-section img, .page-blog__stories-section img, .page-blog__deep-dive-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 2em;
  }
  .page-blog__section-title,
  .page-blog__cta-title {
    font-size: 1.8em;
  }
  .page-blog__hero-description {
    font-size: 0.95em;
  }
  .page-blog__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-blog__article-title,
  .page-blog__strategy-title,
  .page-blog__story-title,
  .page-blog__feature-heading {
    font-size: 1.2em;
  }
  .page-blog__article-excerpt,
  .page-blog__strategy-excerpt,
  .page-blog__story-excerpt,
  .page-blog__feature-text {
    font-size: 0.9em;
  }
}