/* style/blog-x8-promotions-guide.css */

:root {
  --x8-primary-color: #11A84E;
  --x8-secondary-color: #22C768;
  --x8-text-main: #F2FFF6;
  --x8-text-secondary: #A7D9B8;
  --x8-card-bg: #11271B;
  --x8-background: #08160F;
  --x8-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --x8-border-color: #2E7A4E;
  --x8-glow-color: #57E38D;
  --x8-gold-color: #F2C14E;
  --x8-divider-color: #1E3A2A;
  --x8-deep-green: #0A4B2C;
}

.page-blog-x8-promotions-guide {
  background-color: var(--x8-background);
  color: var(--x8-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-x8-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-x8-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-x8-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-blog-x8-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-x8-promotions-guide__hero-content-wrapper {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-x8-promotions-guide__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--x8-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-x8-promotions-guide__intro-text {
  font-size: 1.1em;
  color: var(--x8-text-secondary);
  margin-bottom: 30px;
}

.page-blog-x8-promotions-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-x8-promotions-guide__btn-primary,
.page-blog-x8-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}
}