/* style/blog-how-to-choose-your-online-betting-platform.css */
.page-blog-how-to-choose-your-online-betting-platform {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F3F8FF; /* Default text color for dark body background */
}

.page-blog-how-to-choose-your-online-betting-platform__dark-bg {
    background-color: #08162B;
    color: #F3F8FF;
}

.page-blog-how-to-choose-your-online-betting-platform__light-bg {
    background-color: #10233F; /* Card BG color for light sections */
    color: #F3F8FF;
}

.page-blog-how-to-choose-your-online-betting-platform__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
}

.page-blog-how-to-choose-your-online-betting-platform__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-blog-how-to-choose-your-online-betting-platform__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-choose-your-online-betting-platform__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-how-to-choose-your-online-betting-platform__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #F2C14E;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-blog-how-to-choose-your-online-betting-platform__description {
    font-size: 1.25rem;
    color: #AFC4E8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-choose-your-online-betting-platform__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-how-to-choose-your-online-betting-platform__btn-primary,
.page-blog-how-to-choose-your-online-betting-platform__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.page-blog-how-to-choose-your-online-betting-platform__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(17, 67, 166, 0.4);
}

.page-blog-how-to-choose-your-online-betting-platform__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 67, 166, 0.6);
}

.page-blog-how-to-choose-your-online-betting-platform__btn-secondary {
    background: #10233F;
    color: #F3F8FF;
    border: 2px solid #244D84;
}

.page-blog-how-to-choose-your-online-betting-platform__btn-secondary:hover {
    background: #244D84;
    color: #ffffff;
    transform: translateY(-3px);
}

.page-blog-how-to-choose-your-online-betting-platform__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #10233F;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.page-blog-how-to-choose-your-online-betting-platform__section-title {
    font-size: 2.2rem;
    color: #F2C14E;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.page-blog-how-to-choose-your-online-betting-platform__sub-title {
    font-size: 1.8rem;
    color: #F2C14E;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-choose-your-online-betting-platform__text-block {
    font-size: 1.1rem;
    color: #AFC4E8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-how-to-choose-your-online-betting-platform__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-choose-your-online-betting-platform__feature-card {
    background-color: #08162B;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-how-to-choose-your-online-betting-platform__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-your-online-betting-platform__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-how-to-choose-your-online-betting-platform__card-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-how-to-choose-your-online-betting-platform__card-text {
    font-size: 1rem;
    color: #AFC4E8;
    text-align: justify;
}

.page-blog-how-to-choose-your-online-betting-platform__image-text-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-blog-how-to-choose-your-online-betting-platform__content-image {
    width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.page-blog-how-to-choose-your-online-betting-platform__text-content {
    width: 40%;
}

.page-blog-how-to-choose-your-online-betting-platform__cta-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-how-to-choose-your-online-betting-platform__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-blog-how-to-choose-your-online-betting-platform__list-item {
    background-color: #08162B;
    border: 1px solid #1B3357;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #AFC4E8;
    display: flex;
    align-items: center;
}

.page-blog-how-to-choose-your-online-betting-platform__list-item strong {
    color: #F2C14E;
    margin-right: 10px;
}

.page-blog-how-to-choose-your-online-betting-platform__related-posts {
    padding: 60px 20px;
    text-align: center;
    background-color: #08162B;
}

.page-blog-how-to-choose-your-online-betting-platform__post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.page-blog-how-to-choose-your-online-betting-platform__post-card {
    background-color: #10233F;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #F3F8FF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-blog-how-to-choose-your-online-betting-platform__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-your-online-betting-platform__post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog-how-to-choose-your-online-betting-platform__post-title {
    font-size: 1.3rem;
    color: #F2C14E;
    margin: 20px 15px 10px 15px;
    text-align: left;
    line-height: 1.4;
}

.page-blog-how-to-choose-your-online-betting-platform__post-date {
    font-size: 0.9rem;
    color: #AFC4E8;
    margin: 0 15px 15px 15px;
    text-align: left;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-your-online-betting-platform__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-how-to-choose-your-online-betting-platform__description {
        font-size: 1.1rem;
    }
    .page-blog-how-to-choose-your-online-betting-platform__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__image-text-block {
        flex-direction: column;
        align-items: center;
    }
    .page-blog-how-to-choose-your-online-betting-platform__content-image,
    .page-blog-how-to-choose-your-online-betting-platform__text-content {
        width: 100%;
    }
    .page-blog-how-to-choose-your-online-betting-platform__content-area {
        padding: 40px 15px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__section-title {
        font-size: 2rem;
    }
    .page-blog-how-to-choose-your-online-betting-platform__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-blog-how-to-choose-your-online-betting-platform__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__hero-content {
        padding: 0 15px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* 通用图片与容器 */
    .page-blog-how-to-choose-your-online-betting-platform img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-blog-how-to-choose-your-online-betting-platform__content-area,
    .page-blog-how-to-choose-your-online-betting-platform__feature-card,
    .page-blog-how-to-choose-your-online-betting-platform__post-card,
    .page-blog-how-to-choose-your-online-betting-platform__image-text-block,
    .page-blog-how-to-choose-your-online-betting-platform__text-content,
    .page-blog-how-to-choose-your-online-betting-platform__cta-buttons,
    .page-blog-how-to-choose-your-online-betting-platform__post-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 按钮与按钮容器 */
    .page-blog-how-to-choose-your-online-betting-platform__cta-button,
    .page-blog-how-to-choose-your-online-betting-platform__btn-primary,
    .page-blog-how-to-choose-your-online-betting-platform__btn-secondary,
    .page-blog-how-to-choose-your-online-betting-platform a[class*="button"],
    .page-blog-how-to-choose-your-online-betting-platform a[class*="btn"] {
        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;
    }
    .page-blog-how-to-choose-your-online-betting-platform__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
    }

    /* 其他内容模块 */
    .page-blog-how-to-choose-your-online-betting-platform__section-title {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__sub-title {
        font-size: 1.4rem;
        margin-top: 25px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__text-block,
    .page-blog-how-to-choose-your-online-betting-platform__card-text,
    .page-blog-how-to-choose-your-online-betting-platform__list-item {
        font-size: 1rem;
    }
    .page-blog-how-to-choose-your-online-betting-platform__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__post-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__post-title {
        font-size: 1.2rem;
    }
    .page-blog-how-to-choose-your-online-betting-platform__related-posts {
        padding: 40px 15px;
    }
    .page-blog-how-to-choose-your-online-betting-platform__hero-image-wrapper {
        max-height: 400px;
    }
}