/* style/resources-online-gambling-guide.css */
.page-resources-online-gambling-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches shared.css body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-online-gambling-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-online-gambling-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-online-gambling-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-online-gambling-guide__section-intro {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-online-gambling-guide__dark-bg {
  background-color: #1A1A2E;
  color: #ffffff;
}

.page-resources-online-gambling-guide__light-bg {
  background-color: #2a2a3e; /* Slightly lighter than body for card contrast */
  color: #f0f0f0;
}

/* Hero Section */
.page-resources-online-gambling-guide__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #FFD700 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources-online-gambling-guide__hero-section .page-resources-online-gambling-guide__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
}

.page-resources-online-gambling-guide__hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-resources-online-gambling-guide__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-online-gambling-guide__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-online-gambling-guide__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: right;
}

.page-resources-online-gambling-guide__hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
}