/* style/blog-meo-ca-cuoc-the-thao-hieu-qua.css */

/* Base styles for the page */
.page-blog-meo-ca-cuoc-the-thao-hieu-qua {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #1F2D3D); /* Default text color, assuming light body background */
    background-color: var(--background-color, #F4F7FB); /* Ensure consistency with body background */
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-section {
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    padding-bottom: 60px;
    background: var(--background-color, #F4F7FB); /* Use background color from custom palette */
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--custom-color-1776249996415, #000000); /* Use specific text color */
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-primary,
.page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-secondary,
.page-blog-meo-ca-cuoc-the-thao-hieu-qua__text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-secondary {
    background: #ffffff;
    color: var(--primary-color, #2F6BFF);
    border: 2px solid var(--primary-color, #2F6BFF);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-secondary:hover {
    background: var(--primary-color, #2F6BFF);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.2);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-image {
    flex: 1 1 40%;
    text-align: center;
    min-width: 300px;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-side-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content Area */
.page-blog-meo-ca-cuoc-the-thao-hieu-qua__content-area {
    padding: 60px 0;
    background-color: var(--card-bg, #FFFFFF); /* Use Card BG for content area */
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--custom-color-1776249996415, #000000);
    margin-bottom: 30px;
    text-align: center;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--card-bg, #FFFFFF);
    border: 1px solid var(--border-color, #D6E2FF);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color, #2F6BFF);
    margin-bottom: 15px;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-section p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__error-list {
    list-style: disc inside;
    margin-bottom: 40px;
    padding-left: 20px;
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__error-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__error-list strong {
    color: var(--custom-color-1776249996415, #000000);
}

/* FAQ Section */
.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-list {
    margin-top: 30px;
    margin-bottom: 60px;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-item {
    background-color: var(--card-bg, #FFFFFF);
    border: 1px solid var(--border-color, #D6E2FF);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--custom-color-1776249996415, #000000);
    cursor: pointer;
    list-style: none; /* For <details> summary */
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-color, #2F6BFF);
    transition: transform 0.3s ease;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-item[open] .page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-answer p {
    margin-bottom: 0;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-answer a {
    color: var(--primary-color, #2F6BFF);
    text-decoration: underline;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__text-link {
    color: var(--primary-color, #2F6BFF);
    text-decoration: underline;
    font-weight: 600;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__text-link:hover {
    color: var(--secondary-color, #6FA3FF);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #D6E2FF);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-footer .page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua__light-bg {
    background-color: var(--background-color, #F4F7FB);
    color: var(--text-main, #1F2D3D);
}

.page-blog-meo-ca-cuoc-the-thao-hieu-qua .keyword {
    color: var(--primary-color, #2F6BFF);
    font-weight: 600;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 0;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-content {
        flex: 1 1 100%;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-image {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-group {
        justify-content: center;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__section-title {
        font-size: 2rem;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-section {
        padding-top: 10px !important; /* Small top padding, assuming body handles --header-offset */
        padding-bottom: 40px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-container {
        padding: 30px 15px;
        gap: 20px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 15px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-primary,
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Content Area */
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__content-area {
        padding: 40px 0;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-section {
        padding: 15px;
        margin-bottom: 30px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-subtitle {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-section p {
        font-size: 0.95rem;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__article-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 15px auto;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__error-list {
        padding-left: 15px;
        font-size: 0.95rem;
    }

    /* FAQ Section */
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-list {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-footer {
        margin-top: 30px;
    }

    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-footer .page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* General image and container rules for mobile */
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__section,
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__card,
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Button container for multiple buttons (if any) */
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__cta-buttons,
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__button-group,
    .page-blog-meo-ca-cuoc-the-thao-hieu-qua__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
      display: flex; /* Ensure flex is set for wrapping */
      flex-direction: column; /* Stack buttons vertically on mobile */
    }
}