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

.page-blog-how-to-maximize-betting-bonuses {
  color: var(--text-main);
  background-color: var(--background-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-maximize-betting-bonuses__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  text-align: center;
  background-color: var(--background-color);
}

.page-blog-how-to-maximize-betting-bonuses__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-maximize-betting-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-maximize-betting-bonuses__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-how-to-maximize-betting-bonuses__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-blog-how-to-maximize-betting-bonuses__intro-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-maximize-betting-bonuses__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-maximize-betting-bonuses__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-maximize-betting-bonuses__cta-button--secondary {
  background: var(--deep-green);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-maximize-betting-bonuses__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-blog-how-to-maximize-betting-bonuses__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-how-to-maximize-betting-bonuses__section-title {
  color: var(--gold-color);
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-maximize-betting-bonuses__sub-title {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-maximize-betting-bonuses__paragraph {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-how-to-maximize-betting-bonuses__highlight {
  color: var(--gold-color);
  font-weight: bold;
}

.page-blog-how-to-maximize-betting-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-how-to-maximize-betting-bonuses__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main);
}

.page-blog-how-to-maximize-betting-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-maximize-betting-bonuses__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-how-to-maximize-betting-bonuses__card-title {
  color: var(--primary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-blog-how-to-maximize-betting-bonuses__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
}

.page-blog-how-to-maximize-betting-bonuses__card-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-how-to-maximize-betting-bonuses__card-link:hover {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-blog-how-to-maximize-betting-bonuses__strategy-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-maximize-betting-bonuses__strategy-image {
  flex: 1 1 400px;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.page-blog-how-to-maximize-betting-bonuses__strategy-content {
  flex: 1 1 400px;
  max-width: 50%;
}

.page-blog-how-to-maximize-betting-bonuses__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-how-to-maximize-betting-bonuses__tip-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-blog-how-to-maximize-betting-bonuses__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-maximize-betting-bonuses__faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
}

.page-blog-how-to-maximize-betting-bonuses__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-how-to-maximize-betting-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: var(--deep-green);
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-how-to-maximize-betting-bonuses__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-maximize-betting-bonuses__faq-question::marker {
  display: none;
}

.page-blog-how-to-maximize-betting-bonuses__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-maximize-betting-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-maximize-betting-bonuses__faq-item[open] .page-blog-how-to-maximize-betting-bonuses__faq-toggle {
  content: '−';
}

.page-blog-how-to-maximize-betting-bonuses__faq-answer {
  padding: 15px 25px;
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-blog-how-to-maximize-betting-bonuses__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-maximize-betting-bonuses__hero-content {
    padding: 30px 15px;
  }

  .page-blog-how-to-maximize-betting-bonuses__main-title {
    font-size: 2.5em;
  }

  .page-blog-how-to-maximize-betting-bonuses__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-maximize-betting-bonuses__strategy-image,
  .page-blog-how-to-maximize-betting-bonuses__strategy-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-maximize-betting-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-maximize-betting-bonuses__hero-content {
    padding: 20px 15px;
  }

  .page-blog-how-to-maximize-betting-bonuses__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-how-to-maximize-betting-bonuses__intro-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-maximize-betting-bonuses__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-maximize-betting-bonuses__content-area {
    padding: 20px 15px;
  }

  .page-blog-how-to-maximize-betting-bonuses__section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-how-to-maximize-betting-bonuses__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
  }

  .page-blog-how-to-maximize-betting-bonuses__paragraph {
    font-size: 0.95em;
  }

  .page-blog-how-to-maximize-betting-bonuses__grid,
  .page-blog-how-to-maximize-betting-bonuses__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-maximize-betting-bonuses__card,
  .page-blog-how-to-maximize-betting-bonuses__tip-card {
    padding: 20px;
  }

  .page-blog-how-to-maximize-betting-bonuses__card-image {
    height: 180px;
  }

  .page-blog-how-to-maximize-betting-bonuses__strategy-section {
    padding: 20px;
  }

  .page-blog-how-to-maximize-betting-bonuses__strategy-image {
    min-width: 200px !important; /* Ensure min size */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-maximize-betting-bonuses__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-maximize-betting-bonuses__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-maximize-betting-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-maximize-betting-bonuses__hero-image-wrapper,
  .page-blog-how-to-maximize-betting-bonuses__section,
  .page-blog-how-to-maximize-betting-bonuses__card,
  .page-blog-how-to-maximize-betting-bonuses__container,
  .page-blog-how-to-maximize-betting-bonuses__strategy-section,
  .page-blog-how-to-maximize-betting-bonuses__tips-grid,
  .page-blog-how-to-maximize-betting-bonuses__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-how-to-maximize-betting-bonuses__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  
  .page-blog-how-to-maximize-betting-bonuses__cta-buttons,
  .page-blog-how-to-maximize-betting-bonuses__button-group,
  .page-blog-how-to-maximize-betting-bonuses__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
}