/* style/blog-solve-9win-login-issues.css */

/* --- Base Styles & Color Contrast --- */
/* Body background is #08160F (dark), so main text should be #F2FFF6 (light) */
.page-blog-solve-9win-login-issues {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.page-blog-solve-9win-login-issues__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-solve-9win-login-issues__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-blog-solve-9win-login-issues__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
}

/* --- Hero Section --- */
.page-blog-solve-9win-login-issues__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 */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-solve-9win-login-issues__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit height for hero image */
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-solve-9win-login-issues__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-solve-9win-login-issues__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Use clamp for H1 */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-solve-9win-login-issues__hero-description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}