.page-blog-strategy-guides {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  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-strategy-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-strategy-guides__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

.page-blog-strategy-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-strategy-guides__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  padding: 20px;
}

.page-blog-strategy-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-blog-strategy-guides__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
}

.page-blog-strategy-guides__hero-button {
  display: inline-block;
  background-color: #CC0000; /* Main brand red */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-strategy-guides__hero-button:hover {
  background-color: #FFD700; /* Auxiliary gold on hover */
  color: #CC0000;
}

.page-blog-strategy-guides__intro-section,
.page-blog-strategy-guides__casino-section,
.page-blog-strategy-guides__sports-section,
.page-blog-strategy-guides__tips-section,
.page-blog-strategy-guides__cta-section {
  padding: 60px 0;
}

.page-blog-strategy-guides__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Main brand red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-strategy-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary gold */
  border-radius: 2px;
}

.page-blog-strategy-guides__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-strategy-guides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-strategy-guides__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-strategy-guides__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog-strategy-guides__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-strategy-guides__card-title {
  font-size: 1.5em;
  color: #CC0000; /* Main brand red */
  margin: 20px 20px 10px;
}

.page-blog-strategy-guides__card-title a {
  text-decoration: none;
  color: inherit;
}

.page-blog-strategy-guides__card-title a:hover {
  color: #FFD700;
}

.page-blog-strategy-guides__card-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-blog-strategy-guides__card-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold */
  color: #CC0000; /* Main brand red */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-blog-strategy-guides__card-button:hover {
  background-color: #CC0000;
  color: #ffffff;
}

.page-blog-strategy-guides__tips-section {
  background-color: #f9f9f9;
}

.page-blog-strategy-guides__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-blog-strategy-guides__tips-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 300px; /* Ensure image is not too small */
}

.page-blog-strategy-guides__tips-text-content {
  width: 50%;
}

.page-blog-strategy-guides__text-button {
  display: inline-block;
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #CC0000;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog-strategy-guides__text-button:hover {
  color: #FFD700;
  border-color: #FFD700;
}

.page-blog-strategy-guides__cta-section {
  background-color: #CC0000; /* Main brand red background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-blog-strategy-guides__cta-title {
  font-size: 3em;
  color: #FFD700; /* Auxiliary gold title */
  margin-bottom: 20px;
}

.page-blog-strategy-guides__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-blog-strategy-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-blog-strategy-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-blog-strategy-guides__cta-button--primary {
  background-color: #FFD700; /* Auxiliary gold */
  color: #CC0000;
}

.page-blog-strategy-guides__cta-button--primary:hover {
  background-color: #ffffff;
  color: #CC0000;
}

.page-blog-strategy-guides__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-blog-strategy-guides__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #CC0000;
}

.page-blog-strategy-guides__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  min-width: 300px; /* Ensure image is not too small */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-strategy-guides__hero-title {
    font-size: 2.8em;
  }

  .page-blog-strategy-guides__hero-description {
    font-size: 1.2em;
  }

  .page-blog-strategy-guides__section-title {
    font-size: 2em;
  }

  .page-blog-strategy-guides__card-title {
    font-size: 1.3em;
  }

  .page-blog-strategy-guides__cta-title {
    font-size: 2.5em;
  }

  .page-blog-strategy-guides__tips-image,
  .page-blog-strategy-guides__tips-text-content {
    width: 100%;
  }

  .page-blog-strategy-guides__content-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-blog-strategy-guides__hero-title {
    font-size: 2.2em;
  }

  .page-blog-strategy-guides__hero-description {
    font-size: 1em;
  }

  .page-blog-strategy-guides__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-strategy-guides__section-title {
    font-size: 1.8em;
  }

  .page-blog-strategy-guides__card-image,
  .page-blog-strategy-guides__tips-image,
  .page-blog-strategy-guides__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure image is not too small on mobile */
  }

  .page-blog-strategy-guides__card-title {
    font-size: 1.2em;
  }

  .page-blog-strategy-guides__card-text {
    font-size: 0.9em;
  }

  .page-blog-strategy-guides__cta-title {
    font-size: 2em;
  }

  .page-blog-strategy-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-strategy-guides__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-blog-strategy-guides__hero-title {
    font-size: 1.8em;
  }

  .page-blog-strategy-guides__hero-description {
    font-size: 0.9em;
  }

  .page-blog-strategy-guides__section-title {
    font-size: 1.5em;
  }

  .page-blog-strategy-guides__cta-title {
    font-size: 1.8em;
  }

  .page-blog-strategy-guides__cta-button {
    width: 90%;
  }
}