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

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

.page-blog-latest-promotions-at-shbet5__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content */
  text-align: center;
  overflow: hidden;
}

.page-blog-latest-promotions-at-shbet5__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-latest-promotions-at-shbet5__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 1;
}

.page-blog-latest-promotions-at-shbet5__main-title {
  color: var(--shbet5-gold-color);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-at-shbet5__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--shbet5-text-secondary);
}

.page-blog-latest-promotions-at-shbet5__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--shbet5-button-gradient);
  color: var(--shbet5-text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-latest-promotions-at-shbet5__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-latest-promotions-at-shbet5__btn-primary--center {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
}

.page-blog-latest-promotions-at-shbet5__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--shbet5-deep-green-color);
  color: var(--shbet5-text-main);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--shbet5-border-color);
  cursor: pointer;
}

.page-blog-latest-promotions-at-shbet5__btn-secondary:hover {
  background-color: var(--shbet5-primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-at-shbet5__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--shbet5-divider-color);
}

.page-blog-latest-promotions-at-shbet5__section:last-of-type {
  border-bottom: none;
}

.page-blog-latest-promotions-at-shbet5__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-latest-promotions-at-shbet5__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--shbet5-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-latest-promotions-at-shbet5__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--shbet5-primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-latest-promotions-at-shbet5__sub-title--margin-top {
  margin-top: 60px;
}

.page-blog-latest-promotions-at-shbet5__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--shbet5-text-main);
}

.page-blog-latest-promotions-at-shbet5__text-secondary {
  color: var(--shbet5-text-secondary);
}

.page-blog-latest-promotions-at-shbet5__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-at-shbet5__grid-margin-top {
  margin-top: 30px;
}

.page-blog-latest-promotions-at-shbet5__card {
  background-color: var(--shbet5-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--shbet5-border-color);
}

.page-blog-latest-promotions-at-shbet5__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-latest-promotions-at-shbet5__card-title {
  font-size: 1.5rem;
  color: var(--shbet5-primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-latest-promotions-at-shbet5__card-text {
  font-size: 1rem;
  color: var(--shbet5-text-secondary);
}

.page-blog-latest-promotions-at-shbet5__ordered-list,
.page-blog-latest-promotions-at-shbet5__bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-blog-latest-promotions-at-shbet5__ordered-list {
  counter-reset: my-counter;
}

.page-blog-latest-promotions-at-shbet5__list-item {
  position: relative;
  font-size: 1.05rem;
  margin-bottom: 15px;
  padding-left: 30px;
  color: var(--shbet5-text-main);
}

.page-blog-latest-promotions-at-shbet5__ordered-list .page-blog-latest-promotions-at-shbet5__list-item::before {
  counter-increment: my-counter;
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  color: var(--shbet5-gold-color);
  font-weight: bold;
}

.page-blog-latest-promotions-at-shbet5__bullet-list .page-blog-latest-promotions-at-shbet5__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--shbet5-gold-color);
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-blog-latest-promotions-at-shbet5__promo-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-latest-promotions-at-shbet5__promo-card {
  background-color: var(--shbet5-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--shbet5-border-color);
}

.page-blog-latest-promotions-at-shbet5__promo-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-latest-promotions-at-shbet5__promo-title {
  font-size: 1.6rem;
  color: var(--shbet5-primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-latest-promotions-at-shbet5__promo-description {
  font-size: 1rem;
  color: var(--shbet5-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-at-shbet5__promo-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-latest-promotions-at-shbet5__event-card {
  background-color: var(--shbet5-card-bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--shbet5-border-color);
}

.page-blog-latest-promotions-at-shbet5__event-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-blog-latest-promotions-at-shbet5__event-title {
  font-size: 1.4rem;
  color: var(--shbet5-primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-blog-latest-promotions-at-shbet5__event-description {
  font-size: 0.95rem;
  color: var(--shbet5-text-secondary);
}

.page-blog-latest-promotions-at-shbet5__faq-list {
  margin-top: 40px;
}

.page-blog-latest-promotions-at-shbet5__faq-item {
  background-color: var(--shbet5-card-bg);
  border: 1px solid var(--shbet5-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-promotions-at-shbet5__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--shbet5-primary-color);
  cursor: pointer;
  background-color: var(--shbet5-deep-green-color);
  border-bottom: 1px solid var(--shbet5-border-color);
  list-style: none; /* For details/summary */
}

.page-blog-latest-promotions-at-shbet5__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-at-shbet5__faq-item[open] > .page-blog-latest-promotions-at-shbet5__faq-question {
  border-bottom: 1px solid var(--shbet5-border-color);
}

.page-blog-latest-promotions-at-shbet5__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-promotions-at-shbet5__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--shbet5-gold-color);
}

.page-blog-latest-promotions-at-shbet5__faq-item[open] .page-blog-latest-promotions-at-shbet5__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-latest-promotions-at-shbet5__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--shbet5-text-secondary);
  line-height: 1.7;
}

.page-blog-latest-promotions-at-shbet5__faq-answer p {
  margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-latest-promotions-at-shbet5 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-promotions-at-shbet5__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-latest-promotions-at-shbet5__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-at-shbet5__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-latest-promotions-at-shbet5__btn-primary,
  .page-blog-latest-promotions-at-shbet5__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-latest-promotions-at-shbet5__btn-primary--center {
    margin: 30px auto 15px auto;
  }

  .page-blog-latest-promotions-at-shbet5__section {
    padding: 40px 15px;
  }

  .page-blog-latest-promotions-at-shbet5__container {
    padding: 0;
  }

  .page-blog-latest-promotions-at-shbet5__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-at-shbet5__sub-title {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-at-shbet5__grid-2-col,
  .page-blog-latest-promotions-at-shbet5__promo-card-group,
  .page-blog-latest-promotions-at-shbet5__promo-event-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-promotions-at-shbet5__card,
  .page-blog-latest-promotions-at-shbet5__promo-card,
  .page-blog-latest-promotions-at-shbet5__event-card {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions-at-shbet5__card-image,
  .page-blog-latest-promotions-at-shbet5__promo-image,
  .page-blog-latest-promotions-at-shbet5__event-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-at-shbet5__card-title,
  .page-blog-latest-promotions-at-shbet5__promo-title,
  .page-blog-latest-promotions-at-shbet5__event-title {
    font-size: 1.3rem;
  }

  .page-blog-latest-promotions-at-shbet5__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions-at-shbet5__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-blog-latest-promotions-at-shbet5__list-item {
    font-size: 1rem;
    padding-left: 25px;
  }

  .page-blog-latest-promotions-at-shbet5__ordered-list .page-blog-latest-promotions-at-shbet5__list-item::before,
  .page-blog-latest-promotions-at-shbet5__bullet-list .page-blog-latest-promotions-at-shbet5__list-item::before {
    left: 0;
  }
}

/* Ensure content area images adhere to min size */
.page-blog-latest-promotions-at-shbet5 img {
  min-width: 200px;
  min-height: 200px;
}

/* Override for specific card images if they are smaller than 200px due to layout, but still avoid tiny icons */
.page-blog-latest-promotions-at-shbet5__card-image,
.page-blog-latest-promotions-at-shbet5__promo-image,
.page-blog-latest-promotions-at-shbet5__event-image {
  width: auto; /* Allow image to scale with max-width */
  max-width: 100%;
  height: auto;
}

/* General image responsiveness */
.page-blog-latest-promotions-at-shbet5 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-latest-promotions-at-shbet5__section,
.page-blog-latest-promotions-at-shbet5__card,
.page-blog-latest-promotions-at-shbet5__container,
.page-blog-latest-promotions-at-shbet5__promo-card,
.page-blog-latest-promotions-at-shbet5__event-card,
.page-blog-latest-promotions-at-shbet5__faq-item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}