/* style/blog-how-to-access-winmax1.css */

/* Custom Colors */
:root {
    --winmax1-primary-color: #11A84E; /* Main */
    --winmax1-secondary-color: #22C768; /* Aux */
    --winmax1-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --winmax1-card-bg: #11271B; /* Card BG */
    --winmax1-background: #08160F; /* Background */
    --winmax1-text-main: #F2FFF6; /* Text Main */
    --winmax1-text-secondary: #A7D9B8; /* Text Secondary */
    --winmax1-border: #2E7A4E; /* Border */
    --winmax1-glow: #57E38D; /* Glow */
    --winmax1-gold: #F2C14E; /* Gold */
    --winmax1-divider: #1E3A2A; /* Divider */
    --winmax1-deep-green: #0A4B2C; /* Deep Green */
    --winmax1-body-bg-light: #f8f9fa; /* Body BG from shared */
    --winmax1-dark-text: #333333; /* For light backgrounds */
    --winmax1-light-text: #ffffff; /* For dark backgrounds */
}

/* Base styles for the page content, assuming body background is light from shared.css */
.page-blog-how-to-access-winmax1 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--winmax1-dark-text); /* Default text for light body background */
    background-color: var(--winmax1-body-bg-light); /* Ensure consistency with body background */
}

/* Sections with specific dark backgrounds */
.page-blog-how-to-access-winmax1__dark-bg {
    background-color: var(--winmax1-background);
    color: var(--winmax1-text-main);
}

.page-blog-how-to-access-winmax1__light-bg {
    background-color: var(--winmax1-body-bg-light);
    color: var(--winmax1-dark-text);
}

.page-blog-how-to-access-winmax1__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden; /* For image within */
}

.page-blog-how-to-access-winmax1__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-how-to-access-winmax1__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-how-to-access-winmax1__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative; /* Ensure content is above image but not overlapping */
    padding: 20px;
}

.page-blog-how-to-access-winmax1__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--winmax1-gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-blog-how-to-access-winmax1__intro-text {
    font-size: 1.1em;
    color: var(--winmax1-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-access-winmax1__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-how-to-access-winmax1__cta-buttons--bottom {
    margin-top: 40px;
}

.page-blog-how-to-access-winmax1__btn-primary,
.page-blog-how-to-access-winmax1__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box; /* Button responsiveness */
    white-space: normal; /* Button responsiveness */
    word-wrap: break-word; /* Button responsiveness */
    text-align: center;
}

.page-blog-how-to-access-winmax1__btn-primary {
    background: var(--winmax1-button-gradient);
    color: var(--winmax1-light-text);
    border: 2px solid var(--winmax1-glow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}