/* style/resources-sports-betting-tips.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
  --login-color: #EA7C07; /* Custom color for login */
}

/* Base styles for the page content */
.page-resources-sports-betting-tips {
  font-family: Arial, sans-serif;
  color: var(--text-dark); /* Default text color for light background */
  line-height: 1.6;
  background-color: var(--background-white); /* Assuming body background is light */
}

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

.page-resources-sports-betting-tips__section-title {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-sports-betting-tips__sub-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Hero/Introduction Section */
.page-resources-sports-betting-tips__hero-intro-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), #5ac2f2); /* Gradient from primary to a lighter blue */
  padding: 80px 0;
  text-align: center;
  color: var(--text-light); /* Light text on dark/gradient background */
  /* Fixed header spacing */
  padding-top: var(--header-offset, 120px);
}

.page-resources-sports-betting-tips__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color); /* White text for main title */
}

.page-resources-sports-betting-tips__intro-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.page-resources-sports-betting-tips__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-resources-sports-betting-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  box-sizing: border-box; /* Include padding in width calculation */
}

.page-resources-sports-betting-tips__cta-button--primary {
  background: var(--login-color); /* Custom login color for primary CTA */
  color: var(--text-light);
  border: 2px solid var(--login-color);
}