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

/* Custom properties for colors */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

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

/* Fixed Header Spacing: body already handles padding-top */
/* Page's first section should only have a small top padding */
.page-blog-betting-strategy-tips__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--background);
    color: var(--text-main);
    overflow: hidden; /* Ensure no overflow issues */
}

.page-blog-betting-strategy-tips__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    z-index: 1; /* Ensure image is behind text if any accidental overlap */
}

.page-blog-betting-strategy-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for better text readability */
}

.page-blog-betting-strategy-tips__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 30px; /* Space between image and content */
    padding: 0 20px;
}

.page-blog-betting-strategy-tips__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Enhance readability */
}