/* style/blog-win55-59k-beginner-guide.css */

/* Custom Colors */
:root {
    --win55-bg-primary: #08160F; /* Background */
    --win55-card-bg: #11271B; /* Card BG */
    --win55-text-main: #F2FFF6; /* Text Main */
    --win55-text-secondary: #A7D9B8; /* Text Secondary */
    --win55-border-color: #2E7A4E; /* Border */
    --win55-glow-color: #57E38D; /* Glow */
    --win55-gold-color: #F2C14E; /* Gold */
    --win55-divider-color: #1E3A2A; /* Divider */
    --win55-deep-green: #0A4B2C; /* Deep Green */
    --win55-button-gradient-start: #2AD16F; /* Button */
    --win55-button-gradient-end: #13994A; /* Button */
    --primary-brand-color: #11A84E; /* Main color */
    --secondary-brand-color: #22C768; /* Auxiliary color */
}

.page-blog-win55-59k-beginner-guide {
    background-color: var(--win55-bg-primary);
    color: var(--win55-text-main); /* Ensure light text on dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-win55-59k-beginner-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-win55-59k-beginner-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small decorative top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
}

.page-blog-win55-59k-beginner-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-blog-win55-59k-beginner-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-blog-win55-59k-beginner-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    border-radius: 10px;
    box-sizing: border-box;
    color: var(--win55-text-main);
}

.page-blog-win55-59k-beginner-guide__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Use clamp for h1 font size */
    color: var(--win55-gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-win55-59k-beginner-guide__description {
    font-size: 1.1em;
    color: var(--win55-text-secondary);
    margin-bottom: 30px;
}

.page-blog-win55-59k-beginner-guide__section-title {
    font-size: 2.2em;
    color: var(--win55-gold-color);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
}

.page-blog-win55-59k-beginner-guide__sub-title {
    font-size: 1.6em;
    color: var(--primary-brand-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-win55-59k-beginner-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin: 10px;
    box-sizing: border-box;
}

.page-blog-win55-59k-beginner-guide__btn-primary {
    background: linear-gradient(180deg, var(--win55-button-gradient-start) 0%, var(--win55-button-gradient-end) 100%);
    color: #ffffff; /* White text for primary button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-win55-59k-beginner-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-win55-59k-beginner-guide__btn-secondary {
    background: var(--win55-card-bg);
    color: var(--win55-text-main); /* Light text for secondary button */
    border: 2px solid var(--win55-border-color);
}

.page-blog-win55-59k-beginner-guide__btn-secondary:hover {
    background: var(--primary-brand-color);
    color: #ffffff;
    border-color: var(--primary-brand-color);
}

.page-blog-win55-59k-beginner-guide__text-link {
    color: var(--win55-gold-color);
    text-decoration: underline;
}

.page-blog-win55-59k-beginner-guide__text-link:hover {
    color: var(--win55-glow-color);
}

.page-blog-win55-59k-beginner-guide__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--win55-border-color);
}

.page-blog-win55-59k-beginner-guide__numbered-list,
.page-blog-win55-59k-beginner-guide__bullet-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--win55-text-secondary);
}

.page-blog-win55-59k-beginner-guide__numbered-list li,
.page-blog-win55-59k-beginner-guide__bullet-list li {
    margin-bottom: 10px;
}