/* style/responsible-gaming.css */

/* General page styling */
.page-responsible-gaming {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Use shared background variable, fallback to white */
}

/* Hero Section */
.page-responsible-gaming__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, main offset from body padding-top */
    background-color: var(--primary-color, #26A9E0); /* Use primary color as background for hero */
    color: #FFFFFF; /* White text for dark background */
}

.page-responsible-gaming__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%; /* Ensure width 100% for flex child */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gaming__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 800px; /* Limit image width to prevent it from being too large */
}

.page-responsible-gaming__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

.page-responsible-gaming__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-responsible-gaming__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}