.page-blog-gamebet-sports-betting-tips {
    background-color: #FFFFFF; /* Overall page background */
    color: #333333; /* Default text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-gamebet-sports-betting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-blog-gamebet-sports-betting-tips__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #017439; /* Dark background for hero content area */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-gamebet-sports-betting-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
    /* Ensure the image is always above the content */
}

.page-blog-gamebet-sports-betting-tips__hero-content {
    padding: 40px 15px;
    background-color: #017439; /* Consistent dark background */
}

.page-blog-gamebet-sports-betting-tips__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto 20px;
    /* Using clamp for font-size if absolutely necessary, but prioritize other properties */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example clamp, keeping within bounds */
}

.page-blog-gamebet-sports-betting-tips__description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-blog-gamebet-sports-betting-tips__cta-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login text color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-gamebet-sports-betting-tips__cta-button:hover {
    background-color: #a30606;
}

/* Section General Styles */
.page-blog-gamebet-sports-betting-tips__introduction-section,
.page-blog-gamebet-sports-betting-tips__tips-section,
.page-blog-gamebet-sports-betting-tips__strategies-section,
.page-blog-gamebet-sports-betting-tips__related-articles-section,
.page-blog-gamebet-sports-betting-tips__faq-section,
.page-blog-gamebet-sports-betting-tips__cta-bottom-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Default light background */
}

.page-blog-gamebet-sports-betting-tips__introduction-section {
    background-color: #f8f8f8;
}

.page-blog-gamebet-sports-betting-tips__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-blog-gamebet-sports-betting-tips__text-content {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #555555;
}

/* Tips Grid */
.page-blog-gamebet-sports-betting-tips__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-gamebet-sports-betting-tips__tip-card {
    background-color: #f0f8f0; /* Light green background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-gamebet-sports-betting-tips__tip-card:hover {
    transform: translateY(-5px);
}

.page-blog-gamebet-sports-betting-tips__tip-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-gamebet-sports-betting-tips__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #017439;
    padding: 20px 20px 10px;
}

.page-blog-gamebet-sports-betting-tips__card-text {
    font-size: 0.95rem;
    color: #666666;
    padding: 0 20px 20px;
    flex-grow: 1; /* Allow text to take available space */
}

/* Strategy List */
.page-blog-gamebet-sports-betting-tips__strategy-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-blog-gamebet-sports-betting-tips__strategy-item {
    background-color: #f0f8f0; /* Light green background */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-gamebet-sports-betting-tips__item-title {
    font-size: 1.3rem;
    color: #017439;
    margin-bottom: 10px;
}

.page-blog-gamebet-sports-betting-tips__item-text {
    font-size: 1rem;
    color: #555555;
}

.page-blog-gamebet-sports-betting-tips__secondary-cta {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #017439;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.page-blog-gamebet-sports-betting-tips__secondary-cta:hover {
    color: #005a2e;
}

/* Related Articles */
.page-blog-gamebet-sports-betting-tips__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-gamebet-sports-betting-tips__article-card {
    background-color: #f0f8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.page-blog-gamebet-sports-betting-tips__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-gamebet-sports-betting-tips__article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog-gamebet-sports-betting-tips__article-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-blog-gamebet-sports-betting-tips__article-title a {
    color: #017439;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-gamebet-sports-betting-tips__article-title a:hover {
    color: #005a2e;
}

.page-blog-gamebet-sports-betting-tips__article-meta {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 15px;
}

.page-blog-gamebet-sports-betting-tips__article-excerpt {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-gamebet-sports-betting-tips__read-more {
    display: inline-block;
    color: #017439;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-gamebet-sports-betting-tips__read-more:hover {
    color: #005a2e;
}

.page-blog-gamebet-sports-betting-tips__view-all {
    text-align: center;
}

/* FAQ Section */
.page-blog-gamebet-sports-betting-tips__faq-items {
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-blog-gamebet-sports-betting-tips__faq-item {
    background-color: #f0f8f0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-gamebet-sports-betting-tips__faq-question {
    font-size: 1.2rem;
    color: #017439;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    position: relative;
    user-select: none;
}

.page-blog-gamebet-sports-betting-tips__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-blog-gamebet-sports-betting-tips__faq-item.active .page-blog-gamebet-sports-betting-tips__faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-blog-gamebet-sports-betting-tips__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #555555;
    display: none; /* Hidden by default */
}

.page-blog-gamebet-sports-betting-tips__faq-answer p {
    margin-bottom: 15px;
}

.page-blog-gamebet-sports-betting-tips__faq-cta {
    display: inline-block;
    background-color: #017439;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.page-blog-gamebet-sports-betting-tips__faq-cta:hover {
    background-color: #005a2e;
}

.page-blog-gamebet-sports-betting-tips__view-all-faq {
    text-align: center;
}

/* CTA Bottom Section */
.page-blog-gamebet-sports-betting-tips__cta-bottom-section {
    background-color: #017439;
    color: #FFFFFF;
    text-align: center;
}

.page-blog-gamebet-sports-betting-tips__cta-bottom-section .page-blog-gamebet-sports-betting-tips__section-title {
    color: #FFFFFF;
}

.page-blog-gamebet-sports-betting-tips__cta-bottom-section .page-blog-gamebet-sports-betting-tips__text-content {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-gamebet-sports-betting-tips__hero-content {
        padding: 30px 15px;
    }

    .page-blog-gamebet-sports-betting-tips__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-gamebet-sports-betting-tips__description {
        font-size: 1rem;
    }

    .page-blog-gamebet-sports-betting-tips__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-gamebet-sports-betting-tips__tips-grid,
    .page-blog-gamebet-sports-betting-tips__article-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-gamebet-sports-betting-tips__tip-image,
    .page-blog-gamebet-sports-betting-tips__article-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and don't overflow */
        min-height: 200px; /* Maintain minimum height */
    }

    /* All content images must be responsive and not cause horizontal scroll */
    .page-blog-gamebet-sports-betting-tips img {
        max-width: 100%;
        height: auto;
        display: block; /* Prevent inline image issues */
    }

    /* Specific rules for content area images to ensure min-width */
    .page-blog-gamebet-sports-betting-tips__tips-section img,
    .page-blog-gamebet-sports-betting-tips__related-articles-section img {
        min-width: 200px;
        min-height: 200px;
    }

    .page-blog-gamebet-sports-betting-tips__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-blog-gamebet-sports-betting-tips__faq-question {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-blog-gamebet-sports-betting-tips__hero-content {
        padding: 20px 10px;
    }

    .page-blog-gamebet-sports-betting-tips__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-blog-gamebet-sports-betting-tips__section-title {
        font-size: 1.8rem;
    }

    .page-blog-gamebet-sports-betting-tips__cta-button {
        width: 100%;
        max-width: 250px;
    }
    .page-blog-gamebet-sports-betting-tips__secondary-cta {
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}