/* style/resources-jbo-bookmaker-reputation.css */

/* Variables for color scheme */
:root {
    --jbo-primary-color: #1A2B4C; /* Deep Navy Blue */
    --jbo-secondary-color: #FF8C00; /* Vibrant Orange */
    --jbo-text-light: #F8F8F8; /* Light gray for dark backgrounds */
    --jbo-text-dark: #333333; /* Dark gray for light backgrounds */
    --jbo-background-light: #EFEFEF;
    --jbo-border-color: #4A5C7C;
}

/* Base styles for the page content area */
.page-resources-jbo-bookmaker-reputation {
    font-family: 'Arial', sans-serif;
    color: var(--jbo-text-dark);
    line-height: 1.6;
    background-color: var(--jbo-background-light);
}

.page-resources-jbo-bookmaker-reputation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-jbo-bookmaker-reputation__hero {
    background: linear-gradient(135deg, var(--jbo-primary-color) 0%, #3a4a6c 100%);
    padding: 80px 0 40px;
    color: var(--jbo-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-jbo-bookmaker-reputation__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:jbo,abstract,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-jbo-bookmaker-reputation__hero .page-resources-jbo-bookmaker-reputation__container {
    position: relative;
    z-index: 1;
}