/* style/blog-secure-igaming-with-https.css */

/* Root variables for consistent spacing and colors */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-dark: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --text-dark-contrast: #333333; /* For light backgrounds */
    --text-light-contrast: #ffffff; /* For dark backgrounds */
    --header-offset: 122px; /* Default from shared.css */
}

/* Base styles for the page content, assuming body has dark background from shared.css */
.page-blog-secure-igaming-with-https {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Light text for dark background */
    background-color: var(--background-dark); /* Ensure consistency if body background is not fully dark */
    line-height: 1.6;
    padding-bottom: 40px; /* General padding for footer space */
}

/* Hero Section */
.page-blog-secure-igaming-with-https__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--background-dark);
    overflow: hidden; /* Ensure no overflow issues */
}

.page-blog-secure-igaming-with-https__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-secure-igaming-with-https__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-secure-igaming-with-https__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px 60px;
}

.page-blog-secure-igaming-with-https__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-secure-igaming-with-https__hero-description {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

/* Content Area General Styles */
.page-blog-secure-igaming-with-https__content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-dark); /* Ensure content area also has dark background */
    color: var(--text-main);
}

.page-blog-secure-igaming-with-https__section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}