/* style/resources-betting-guide.css */
.page-resources-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF; /* Default light background */
}

.page-resources-betting-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #017439; /* Use brand color for hero background */
    color: #FFFFFF; /* White text for dark background */
}

.page-resources-betting-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Slightly transparent to make text readable */
}

.page-resources-betting-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-betting-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFF00; /* Special color for hero title */
    font-weight: bold;
}

.page-resources-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-resources-betting-guide__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-betting-guide__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.page-resources-betting-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #017439; /* Brand color for titles */
}

.page-resources-betting-guide__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-betting-guide__feature-grid,
.page-resources-betting-guide__steps-grid,
.page-resources-betting-guide__market-grid,
.page-resources-betting-guide__responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}