/* style/blog-6686bet-no-hu-guide.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-6686bet-no-hu-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main - light color for dark background */
    background-color: transparent; /* Main content background is transparent, letting body's var(--bg-color) show */
    padding-bottom: 40px;
}

/* Container for main content sections */
.page-blog-6686bet-no-hu-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-6686bet-no-hu-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #08160F; /* Background color for hero section */
}

.page-blog-6686bet-no-hu-guide__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-6686bet-no-hu-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
}

.page-blog-6686bet-no-hu-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above any potential background elements, though not overlapping the image */
}

.page-blog-6686bet-no-hu-guide__main-title {
    font-size: clamp(2em, 4vw, 3em); /* H1 font size constraint */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-6686bet-no-hu-guide__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

/* Call to Action Buttons */
.page-blog-6686bet-no-hu-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-6686bet-no-hu-guide__btn-primary,
.page-blog-6686bet-no-hu-guide__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;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-blog-6686bet-no-hu-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-6686bet-no-hu-guide__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-6686bet-no-hu-guide__btn-secondary {
    background: #11271B; /* Card BG */
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border color */
}

.page-blog-6686bet-no-hu-guide__btn-secondary:hover {
    transform: translateY(-2px);
    background: #1E3A2A; /* Divider */
    opacity: 0.9;
}

/* General Section Styles */
.page-blog-6686bet-no-hu-guide__section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green for sections */
    margin-bottom: 20px;
}

.page-blog-6686bet-no-hu-guide__section:nth-of-type(even) {
    background-color: #08160F; /* Background for alternating sections */
}

.page-blog-6686bet-no-hu-guide__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-6686bet-no-hu-guide__subsection-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-6686bet-no-hu-guide__text-block {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-blog-6686bet-no-hu-guide__text-block strong {
    color: #F2FFF6; /* Text Main */
}

.page-blog-6686bet-no-hu-guide__text-block a {
    color: #57E38D; /* Glow for links */
    text-decoration: underline;
}

.page-blog-6686bet-no-hu-guide__text-block a:hover {
    color: #F2C14E; /* Gold on hover */
}

/* Lists */
.page-blog-6686bet-no-hu-guide__ordered-list,
.page-blog-6686bet-no-hu-guide__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-blog-6686bet-no-hu-guide__ordered-list {
    list-style-type: decimal;
}

.page-blog-6686bet-no-hu-guide__unordered-list {
    list-style-type: disc;
}

.page-blog-6686bet-no-hu-guide__list-item {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-blog-6686bet-no-hu-guide__list-item strong {
    color: #F2FFF6; /* Text Main */
}

.page-blog-6686bet-no-hu-guide__list-item a {
    color: #57E38D; /* Glow for links */
    text-decoration: underline;
}

.page-blog-6686bet-no-hu-guide__list-item a:hover {
    color: #F2C14E; /* Gold on hover */
}

/* Content Images */
.page-blog-6686bet-no-hu-guide__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
}

/* Card Grid for Strategies section */
.page-blog-6686bet-no-hu-guide__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-6686bet-no-hu-guide__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-6686bet-no-hu-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-6686bet-no-hu-guide__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
}

.page-blog-6686bet-no-hu-guide__card-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-6686bet-no-hu-guide__card-text {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-blog-6686bet-no-hu-guide__faq-list {
    margin-top: 30px;
}

.page-blog-6686bet-no-hu-guide__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-6686bet-no-hu-guide__faq-item summary {
    list-style: none; /* Hide default marker for <details> */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15em;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-blog-6686bet-no-hu-guide__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for <details> on WebKit */
}

.page-blog-6686bet-no-hu-guide__faq-item summary:hover {
    background-color: #1E3A2A; /* Divider */
}

.page-blog-6686bet-no-hu-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-6686bet-no-hu-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-blog-6686bet-no-hu-guide__faq-item[open] .page-blog-6686bet-no-hu-guide__faq-toggle {
    color: #F2C14E; /* Gold */
}

.page-blog-6686bet-no-hu-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-6686bet-no-hu-guide__faq-answer p {
    margin-bottom: 10px;
}

/* Conclusion section specific styling */
.page-blog-6686bet-no-hu-guide__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-6686bet-no-hu-guide__hero-image {
        max-height: 400px;
    }
    .page-blog-6686bet-no-hu-guide__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-blog-6686bet-no-hu-guide__section-title {
        font-size: 2em;
    }
    .page-blog-6686bet-no-hu-guide__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* General mobile adjustments */
    .page-blog-6686bet-no-hu-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Containers and sections for mobile responsiveness */
    .page-blog-6686bet-no-hu-guide__container,
    .page-blog-6686bet-no-hu-guide__hero-section,
    .page-blog-6686bet-no-hu-guide__section,
    .page-blog-6686bet-no-hu-guide__card-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-blog-6686bet-no-hu-guide__hero-section {
        padding-top: 10px !important; /* body handles --header-offset, small top padding for section */
        padding-bottom: 40px;
    }

    .page-blog-6686bet-no-hu-guide__hero-image {
        max-height: 300px;
    }

    .page-blog-6686bet-no-hu-guide__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    
    .page-blog-6686bet-no-hu-guide__description {
        font-size: 1em;
    }

    .page-blog-6686bet-no-hu-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
    }

    .page-blog-6686bet-no-hu-guide__btn-primary,
    .page-blog-6686bet-no-hu-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-6686bet-no-hu-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-6686bet-no-hu-guide__subsection-title {
        font-size: 1.5em;
    }

    /* Images responsiveness */
    .page-blog-6686bet-no-hu-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px; /* Maintain min-size even on mobile */
        min-height: 200px; /* Maintain min-size even on mobile */
    }

    .page-blog-6686bet-no-hu-guide__card-grid {
        grid-template-columns: 1fr; /* Single column for cards on mobile */
    }

    .page-blog-6686bet-no-hu-guide__card {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-blog-6686bet-no-hu-guide__card-image {
        height: auto; /* Allow auto height for card images */
        max-height: 250px;
    }

    .page-blog-6686bet-no-hu-guide__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }
}