/* style/resources-m88-sports-betting-strategies.css */

/* General Styling */
.page-resources-m88-sports-betting-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for default light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared might define it */
}

.page-resources-m88-sports-betting-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-m88-sports-betting-strategies__section {
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}

.page-resources-m88-sports-betting-strategies__section:last-of-type {
  border-bottom: none;
}

.page-resources-m88-sports-betting-strategies__main-title {
  font-size: 3.2em;
  color: #017439; /* Brand color for main title */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-m88-sports-betting-strategies__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-resources-m88-sports-betting-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 1em;
  text-align: justify;
}

.page-resources-m88-sports-betting-strategies__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-m88-sports-betting-strategies__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* Hero Intro Section */
.page-resources-m88-sports-betting-strategies__hero-intro {
  background: linear-gradient(135deg, #e6ffe6, #ffffff); /* Light gradient for intro */
  padding: 40px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  text-align: center;
}

.page-resources-m88-sports-betting-strategies__hero-intro .page-resources-m88-sports-betting-strategies__description {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.15em;
  line-height: 1.7;
  color: #555555;
}

.page-resources-m88-sports-betting-strategies__image-wrapper {
  margin: 40px auto 0 auto;
  max-width: 1000px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-m88-sports-betting-strategies__main-image,
.page-resources-m88-sports-betting-strategies__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* CTA Buttons */
.page-resources-m88-sports-betting-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-m88-sports-betting-strategies__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Ensure button doesn't exceed container */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-resources-m88-sports-betting-strategies__cta-button--primary {
  background-color: #C30808; /* Use custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-resources-m88-sports-betting-strategies__cta-button--primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-m88-sports-betting-strategies__cta-button--secondary {
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-resources-m88-sports-betting-strategies__cta-button--secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-m88-sports-betting-strategies__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Feature Grid (Principles Section) */
.page-resources-m88-sports-betting-strategies__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}