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

.page-blog-shbet0-latest-promotions {
  background-color: var(--shbet0-background);
  color: var(--shbet0-text-main); /* Ensure light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-shbet0-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-shbet0-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-shbet0-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-shbet0-latest-promotions__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
  box-sizing: border-box;
}

.page-blog-shbet0-latest-promotions__main-title {
  color: var(--shbet0-text-main);
  font-size: clamp(2em, 4vw, 3.5em); /* Using clamp for responsive H1 */
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-shbet0-latest-promotions__intro-text {
  color: var(--shbet0-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-shbet0-latest-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-shbet0-latest-promotions__btn-primary,
.page-blog-shbet0-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-shbet0-latest-promotions__btn-primary {
  background: var(--shbet0-button-gradient);
  color: #ffffff; /* White text on green button */
  border: none;
}

.page-blog-shbet0-latest-promotions__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-shbet0-latest-promotions__btn-secondary {
  background-color: transparent;
  color: var(--shbet0-primary-color);
  border: 2px solid var(--shbet0-primary-color);
}

.page-blog-shbet0-latest-promotions__btn-secondary:hover {
  background-color: var(--shbet0-primary-color);
  color: #ffffff;
}

.page-blog-shbet0-latest-promotions__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}