/* style/blog-latest-betting-strategies.css */

/* Base styles for the page content */
.page-blog-latest-betting-strategies {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default to white */
}

/* Ensure text color is appropriate for the body background */
/* Assuming --background-color is light based on default #FFFFFF */
.page-blog-latest-betting-strategies {
    color: #333333; /* Deep gray for readability on light backgrounds */
}

/* Hero Section */
.page-blog-latest-betting-strategies__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden; /* Ensure no overflow from hero elements */
}

.page-blog-latest-betting-strategies__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
}

.page-blog-latest-betting-strategies__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure image covers the area */
    filter: none; /* No filter allowed */
}

.page-blog-latest-betting-strategies__hero-content {
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-blog-latest-betting-strategies__main-title {
    font-weight: bold;
    color: #26A9E0; /* Brand color for H1 */
    margin-bottom: 20px;
    font-size: 2.5em; /* default for desktop */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-latest-betting-strategies__description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
}

.page-blog-latest-betting-strategies__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-latest-betting-strategies__btn-primary,
.page-blog-latest-betting-strategies__btn-secondary,
.page-blog-latest-betting-strategies__btn-text-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-blog-latest-betting-strategies__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-blog-latest-betting-strategies__btn-primary:hover {
    background-color: #1e87b6; /* Slightly darker */
    border-color: #1e87b6;
}

.page-blog-latest-betting-strategies__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0; /* Brand primary color */
    border: 2px solid #26A9E0;
}

.page-blog-latest-betting-strategies__btn-secondary:hover {
    background-color: #e0f2f7; /* Light background */
    color: #1e87b6;
    border-color: #1e87b6;
}

.page-blog-latest-betting-strategies__btn-text-link {
    padding: 0;
    border: none;
    background: none;
    color: #26A9E0;
    text-decoration: underline;
    font-size: 0.9em;
    margin-top: 10px;
}

.page-blog-latest-betting-strategies__btn-text-link:hover {
    color: #1e87b6;
    text-decoration: none;
}

/* General Section Styles */
.page-blog-latest-betting-strategies__section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Default light background */
    color: #333333; /* Default dark text */
}

.page-blog-latest-betting-strategies__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Slightly different background for alternating sections */
}

.page-blog-latest-betting-strategies__dark-bg {
    background-color: #26A9E0; /* Brand color as background */
    color: #FFFFFF; /* White text for contrast */
}

.page-blog-latest-betting-strategies__dark-bg .page-blog-latest-betting-strategies__section-title {
    color: #FFFFFF;
}

.page-blog-latest-betting-strategies__dark-bg .page-blog-latest-betting-strategies__description {
    color: #e0f2f7; /* Lighter text for description on dark background */
}

.page-blog-latest-betting-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-latest-betting-strategies__section-title {
    font-size: 2em;
    color: #26A9E0; /* Brand color for H2 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-latest-betting-strategies__introduction p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Strategy Items */
.page-blog-latest-betting-strategies__strategy-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #333333; /* Ensure dark text on light card */
}

.page-blog-latest-betting-strategies__strategy-title {
    font-size: 1.5em;
    color: #26A9E0; /* Brand color for H3 */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-latest-betting-strategies__strategy-image {
    width: 100%;
    height: auto;
    max-height: 450px; /* Max height for strategy images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* No filter allowed */
}

.page-blog-latest-betting-strategies__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding: 0;
}

.page-blog-latest-betting-strategies__list li {
    margin-bottom: 10px;
    color: #555555;
}

/* FAQ Section */
.page-blog-latest-betting-strategies__faq-section {
    background-color: #f0f8ff; /* Light blue background for FAQ */
}

.page-blog-latest-betting-strategies__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-latest-betting-strategies__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: #333333; /* Ensure dark text on light card */
}

.page-blog-latest-betting-strategies__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px 25px;
    font-weight: bold;
    font-size: 1.1em;
    color: #26A9E0; /* Brand color for FAQ question */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.page-blog-latest-betting-strategies__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-latest-betting-strategies__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-blog-latest-betting-strategies__faq-qtext {
    flex-grow: 1;
}

.page-blog-latest-betting-strategies__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
}

.page-blog-latest-betting-strategies__faq-item[open] .page-blog-latest-betting-strategies__faq-question {
    border-bottom: 1px solid #e0e0e0;
}

.page-blog-latest-betting-strategies__faq-answer {
    padding: 20px 25px;
    font-size: 0.95em;
    color: #555555;
    text-align: justify;
}

.page-blog-latest-betting-strategies__faq-answer p {
    margin: 0;
}

/* Final CTA Section */
.page-blog-latest-betting-strategies__final-cta {
    text-align: center;
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__section-title {
    color: #FFFFFF;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__description {
    color: #e0f2f7;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__cta-buttons {
    margin-top: 30px;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    border-color: #EA7C07;
    color: #FFFFFF;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__btn-primary:hover {
    background-color: #c76706;
    border-color: #c76706;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #FFFFFF;
}

.page-blog-latest-betting-strategies__final-cta .page-blog-latest-betting-strategies__btn-secondary:hover {
    background-color: #e0f2f7;
    color: #1e87b6;
    border-color: #e0f2f7;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-latest-betting-strategies__main-title {
        font-size: 2em;
    }
    .page-blog-latest-betting-strategies__section-title {
        font-size: 1.8em;
    }
    .page-blog-latest-betting-strategies__strategy-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-betting-strategies {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-latest-betting-strategies__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-latest-betting-strategies__hero-content {
        margin-top: 30px;
        padding: 0 15px;
    }

    .page-blog-latest-betting-strategies__main-title {
        font-size: 1.8em; /* Adjusted for mobile */
        margin-bottom: 15px;
    }

    .page-blog-latest-betting-strategies__description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-blog-latest-betting-strategies__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .page-blog-latest-betting-strategies__btn-primary,
    .page-blog-latest-betting-strategies__btn-secondary,
    .page-blog-latest-betting-strategies__btn-text-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .page-blog-latest-betting-strategies__section {
        padding: 40px 0;
    }

    .page-blog-latest-betting-strategies__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-latest-betting-strategies__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .page-blog-latest-betting-strategies__strategy-item {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-blog-latest-betting-strategies__strategy-title {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .page-blog-latest-betting-strategies__strategy-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-latest-betting-strategies__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-latest-betting-strategies__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
    }

    /* Ensure all images are responsive and don't overflow */
    .page-blog-latest-betting-strategies img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure all video containers are responsive and don't overflow */
    .page-blog-latest-betting-strategies video,
    .page-blog-latest-betting-strategies__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-latest-betting-strategies__video-section,
    .page-blog-latest-betting-strategies__video-container,
    .page-blog-latest-betting-strategies__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-latest-betting-strategies__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-blog-latest-betting-strategies__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Ensure text in strategy items is dark on light background */
    .page-blog-latest-betting-strategies__strategy-item p,
    .page-blog-latest-betting-strategies__strategy-item li {
        color: #555555;
    }

    /* Ensure text in FAQ items is dark on light background */
    .page-blog-latest-betting-strategies__faq-answer p {
        color: #555555;
    }
}