.page-blog-understanding-betting-odds {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.page-blog-understanding-betting-odds__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-understanding-betting-odds__hero-section {
    position: relative;
    margin-bottom: 40px;
    background-color: #FFFFFF; /* Card BG, as a fallback */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-understanding-betting-odds__hero-image-wrapper {
    width: 100%;
}

.page-blog-understanding-betting-odds__hero-image {
    width: 100%;
    height: auto; /* Prevent stretching */
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* For 1600x900 */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-blog-understanding-betting-odds__hero-content {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,1) 100%); /* Slight gradient for content */
    border-top: 1px solid #D6E2FF; /* Border */
}

.page-blog-understanding-betting-odds__main-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem); /* Adjusted for H1 font size rule */
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.page-blog-understanding-betting-odds__intro-text {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-understanding-betting-odds__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3); /* Glow */
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure sufficient size for CTA */
    text-align: center;
}

.page-blog-understanding-betting-odds__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-blog-understanding-betting-odds__content-section {
    padding: 30px 0;
}

.page-blog-understanding-betting-odds__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem); /* Adjusted for H2 */
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-understanding-betting-odds__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2F6BFF; /* Primary color */
    border-radius: 2px;
}

.page-blog-understanding-betting-odds__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
    text-align: left;
}

.page-blog-understanding-betting-odds__keyword {
    font-weight: bold;
    color: #2F6BFF; /* Primary color */
}

.page-blog-understanding-betting-odds__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-blog-understanding-betting-odds__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-blog-understanding-betting-odds__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Max width for content images */
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-blog-understanding-betting-odds__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.page-blog-understanding-betting-odds__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.page-blog-understanding-betting-odds__secondary-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #6FA3FF; /* Secondary color */
    color: #000000; /* Custom Color_1776249996415 for better contrast on #6FA3FF (4.88:1) */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.page-blog-understanding-betting-odds__secondary-cta-button:hover {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Primary button gradient on hover */
    color: #FFFFFF; /* White text on primary gradient */
}


.page-blog-understanding-betting-odds__faq-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #D6E2FF; /* Border */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-understanding-betting-odds__faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    background-color: #F4F7FB; /* Background */
}

.page-blog-understanding-betting-odds__faq-question {
    font-size: 1.2rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-understanding-betting-odds__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-understanding-betting-odds__container {
        padding: 0 15px;
    }

    .page-blog-understanding-betting-odds__hero-content {
        padding: 20px 15px;
    }

    .page-blog-understanding-betting-odds__main-title {
        font-size: clamp(1.4rem, 6vw, 2rem); /* Smaller H1 for mobile */
    }

    .page-blog-understanding-betting-odds__intro-text {
        font-size: 0.95rem;
    }

    .page-blog-understanding-betting-odds__cta-button,
    .page-blog-understanding-betting-odds__secondary-cta-button {
        width: 100%;
        max-width: 300px; /* Limit width to prevent being too wide */
        margin: 0 auto; /* Center buttons */
    }

    .page-blog-understanding-betting-odds__cta-wrapper {
        flex-direction: column;
    }

    .page-blog-understanding-betting-odds__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce min size */
        min-height: 200px; /* Still enforce min size */
    }

    .page-blog-understanding-betting-odds__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem); /* Smaller H2 for mobile */
    }

    .page-blog-understanding-betting-odds__paragraph,
    .page-blog-understanding-betting-odds__list-item,
    .page-blog-understanding-betting-odds__faq-question,
    .page-blog-understanding-betting-odds__faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 549px) {
    .page-blog-understanding-betting-odds__hero-section {
        margin-bottom: 20px;
    }
    .page-blog-understanding-betting-odds__hero-content {
        padding: 15px 10px;
    }
    .page-blog-understanding-betting-odds__section-title {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-blog-understanding-betting-odds__faq-section {
        padding: 30px 0;
    }
}

.page-blog-understanding-betting-odds img {
    max-width: 100%;
    height: auto;
    display: block;
}