/* style/resources-8q-bet-beginner-guide.css */

/* Base Styles for the Page Content */
.page-resources-8q-bet-beginner-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared, fallback to white */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-8q-bet-beginner-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-8q-bet-beginner-guide__hero-section {
    position: relative;
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Minimum height for hero */
}

.page-resources-8q-bet-beginner-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-resources-8q-bet-beginner-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-resources-8q-bet-beginner-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-resources-8q-bet-beginner-guide__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-8q-bet-beginner-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-8q-bet-beginner-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
    filter: none; /* Ensure no CSS filter changes original image color */
}

/* Video Section */
.page-resources-8q-bet-beginner-guide__video-section {
    padding: 60px 0;
    text-align: center;
    background-color: #F8F8F8;
    border-bottom: 1px solid #EEEEEE;
}