/* style/blog-ht368-sports-betting-tips.css */

/* Custom Colors */
:root {
    --ht368-primary-color: #11A84E;
    --ht368-secondary-color: #22C768;
    --ht368-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --ht368-card-bg: #11271B;
    --ht368-background-main: #08160F;
    --ht368-text-main: #F2FFF6;
    --ht368-text-secondary: #A7D9B8;
    --ht368-border-color: #2E7A4E;
    --ht368-glow-color: #57E38D;
    --ht368-gold-color: #F2C14E;
    --ht368-divider-color: #1E3A2A;
    --ht368-deep-green: #0A4B2C;
}

.page-blog-ht368-sports-betting-tips {
    font-family: Arial, sans-serif;
    color: var(--ht368-text-main); /* Default text color for the page content */
    background-color: var(--ht368-background-main); /* Default background color for the page */
}

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

.page-blog-ht368-sports-betting-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--ht368-deep-green);
    overflow: hidden;
}

.page-blog-ht368-sports-betting-tips__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.page-blog-ht368-sports-betting-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure image is not too small */
}

.page-blog-ht368-sports-betting-tips__hero-content-wrapper {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background-color: var(--ht368-deep-green); /* Ensure content area has a background */
    z-index: 1;
}

.page-blog-ht368-sports-betting-tips__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    color: var(--ht368-text-main);
    margin-bottom: 15px;
}

.page-blog-ht368-sports-betting-tips__subtitle {
    font-size: clamp(1em, 1.5vw, 1.3em);
    color: var(--ht368-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-ht368-sports-betting-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-ht368-sports-betting-tips__btn-primary,
.page-blog-ht368-sports-betting-tips__btn-secondary {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-ht368-sports-betting-tips__btn-primary {
    background: var(--ht368-button-gradient);
    color: #ffffff; /* Always white text on primary button */
    border: 2px solid transparent;
}

.page-blog-ht368-sports-betting-tips__btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px var(--ht368-glow-color);
}

.page-blog-ht368-sports-betting-tips__btn-secondary {
    background: transparent;
    color: var(--ht368-primary-color); /* Use primary color for text */
    border: 2px solid var(--ht368-primary-color);
}

.page-blog-ht368-sports-betting-tips__btn-secondary:hover {
    background: var(--ht368-primary-color);
    color: #ffffff;
}

.page-blog-ht368-sports-betting-tips__content-area {
    padding: 60px 0;
    background-color: var(--ht368-background-main); /* Main content background */
    color: var(--ht368-text-main);
}

.page-blog-ht368-sports-betting-tips__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--ht368-gold-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.page-blog-ht368-sports-betting-tips__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--ht368-text-secondary);
    text-align: justify;
}

.page-blog-ht368-sports-betting-tips__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-blog-ht368-sports-betting-tips__faq-list {
    margin-top: 40px;
    border-top: 1px solid var(--ht368-divider-color);
}

.page-blog-ht368-sports-betting-tips__faq-item {
    border-bottom: 1px solid var(--ht368-divider-color);
    padding: 15px 0;
    color: var(--ht368-text-main);
}

.page-blog-ht368-sports-betting-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15em;
    padding: 10px 0;
    list-style: none; /* For details/summary */
}

.page-blog-ht368-sports-betting-tips__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-ht368-sports-betting-tips__faq-qtext {
    flex-grow: 1;
    color: var(--ht368-text-main);
}

.page-blog-ht368-sports-betting-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--ht368-gold-color);
}

.page-blog-ht368-sports-betting-tips__faq-answer {
    padding: 10px 0 0 0;
    font-size: 1em;
    line-height: 1.7;
    color: var(--ht368-text-secondary);
}

.page-blog-ht368-sports-betting-tips__cta-buttons--bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--ht368-divider-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-ht368-sports-betting-tips {
        font-size: 15px;
        line-height: 1.6;
    }

    .page-blog-ht368-sports-betting-tips__container {
        padding: 0 15px !important;
    }

    .page-blog-ht368-sports-betting-tips__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-blog-ht368-sports-betting-tips__hero-content-wrapper {
        padding: 30px 0;
    }

    .page-blog-ht368-sports-betting-tips__main-title {
        font-size: 2.2em;
    }

    .page-blog-ht368-sports-betting-tips__subtitle {
        font-size: 1em;
    }

    .page-blog-ht368-sports-betting-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-ht368-sports-betting-tips__btn-primary,
    .page-blog-ht368-sports-betting-tips__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-ht368-sports-betting-tips__content-area {
        padding: 40px 0;
    }

    .page-blog-ht368-sports-betting-tips__section-title {
        font-size: 2em;
    }

    /* Mobile image responsiveness */
    .page-blog-ht368-sports-betting-tips img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Mobile video responsiveness */
    .page-blog-ht368-sports-betting-tips video,
    .page-blog-ht368-sports-betting-tips__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-ht368-sports-betting-tips__video-section,
    .page-blog-ht368-sports-betting-tips__video-container,
    .page-blog-ht368-sports-betting-tips__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-ht368-sports-betting-tips__faq-question {
        font-size: 1em;
    }

    .page-blog-ht368-sports-betting-tips__faq-answer {
        font-size: 0.95em;
    }
}