/* style/blog-online-betting-tips.css */

/* Variables and Base Styles */
:root {
    --primary-color: #F2C14E; /* Gold */
    --secondary-color: #FFD36B; /* Lighter Gold */
    --card-bg: #111111; /* Dark Grey */
    --background-color: #0A0A0A; /* Very Dark Grey/Black */
    --text-main-color: #FFF6D6; /* Off-white/Light Yellow */
    --border-color: #3A2A12; /* Dark Brown */
    --glow-color: #FFD36B; /* Lighter Gold */
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --padding-section: 60px 20px;
    --max-width-content: 1200px;
}

.page-blog-online-betting-tips {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-blog-online-betting-tips__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--padding-section);
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden; /* Ensure no image overflow */
}

.page-blog-online-betting-tips__hero-image-wrapper {
    width: 100%;
    max-width: var(--max-width-content); /* Constrain image wrapper */
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.page-blog-online-betting-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog-online-betting-tips__hero-content {
    max-width: 800px;
    padding: 0 15px;
}

.page-blog-online-betting-tips__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Soft glow */
}