/* style/blog-kinh79-access-features-advantages.css */

/* Variables */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #26A9E0; /* Using primary color for dark background sections */
    --login-button-color: #EA7C07;
}

/* Base styles for the page content, assuming a light body background from shared.css */
.page-blog-kinh79-access-features-advantages {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--bg-light); /* Ensure content area uses light background */
}

.page-blog-kinh79-access-features-advantages__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--bg-light);
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-kinh79-access-features-advantages__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: linear-gradient(135deg, #26A9E0, #4CAF50); /* Example gradient, can be single color */
    color: var(--text-light);
    text-align: center;
    box-sizing: border-box;
}

.page-blog-kinh79-access-features-advantages__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Adjust based on desired hero image width */
    margin-bottom: 20px;
}

.page-blog-kinh79-access-features-advantages__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-blog-kinh79-access-features-advantages__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-kinh79-access-features-advantages__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light); /* H1 on dark hero background */
}

.page-blog-kinh79-access-features-advantages__intro-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Section titles */
.page-blog-kinh79-access-features-advantages__section-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Paragraphs and lists */
.page-blog-kinh79-access-features-advantages p {
    margin-bottom: 15px;
    color: var(--text-dark); /* Ensure contrast on light background */
}

.page-blog-kinh79-access-features-advantages__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-blog-kinh79-access-features-advantages__list-ordered {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-blog-kinh79-access-features-advantages__list li,
.page-blog-kinh79-access-features-advantages__list-ordered li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* Images within content */
.page-blog-kinh79-access-features-advantages__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Call to action buttons */
.page-blog-kinh79-access-features-advantages__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container takes full width for responsive padding */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding to prevent buttons from touching edges */
}

.page-blog-kinh79-access-features-advantages__cta-buttons--bottom {
    margin-top: 40px;
}

.page-blog-kinh79-access-features-advantages__btn-primary,
.page-blog-kinh79-access-features-advantages__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button adapts to container */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-blog-kinh79-access-features-advantages__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-blog-kinh79-access-features-advantages__btn-primary:hover {
    background-color: #1f8ac0; /* Darken primary color */
    border-color: #1f8ac0;
}

.page-blog-kinh79-access-features-advantages__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-kinh79-access-features-advantages__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Login specific button color */
.page-blog-kinh79-access-features-advantages a[href="login.html"].page-blog-kinh79-access-features-advantages__btn-primary,
.page-blog-kinh79-access-features-advantages a[href^="https://ads.win2026vn.com"].page-blog-kinh79-access-features-advantages__btn-primary {
    background-color: var(--login-button-color); /* Apply login specific color */
    border-color: var(--login-button-color);
}
.page-blog-kinh79-access-features-advantages a[href="login.html"].page-blog-kinh79-access-features-advantages__btn-primary:hover,
.page-blog-kinh79-access-features-advantages a[href^="https://ads.win2026vn.com"].page-blog-kinh79-access-features-advantages__btn-primary:hover {
    background-color: #c26706; /* Darken login button color */
    border-color: #c26706;
}


/* FAQ Section */
.page-blog-kinh79-access-features-advantages__faq-list {
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.page-blog-kinh79-access-features-advantages__faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.page-blog-kinh79-access-features-advantages__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none; /* Hide default marker for details summary */
}

.page-blog-kinh79-access-features-advantages__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-kinh79-access-features-advantages__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-kinh79-access-features-advantages__faq-item[open] .page-blog-kinh79-access-features-advantages__faq-toggle {
    transform: rotate(45deg); /* Rotate to form an 'X' or similar */
}

.page-blog-kinh79-access-features-advantages__faq-answer {
    padding-top: 10px;
    color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-kinh79-access-features-advantages__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-blog-kinh79-access-features-advantages__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-blog-kinh79-access-features-advantages__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    }

    .page-blog-kinh79-access-features-advantages__main-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
    }

    .page-blog-kinh79-access-features-advantages__intro-description {
        font-size: 1em;
    }

    .page-blog-kinh79-access-features-advantages__section {
        padding: 30px 15px;
    }

    .page-blog-kinh79-access-features-advantages__section-title {
        font-size: 1.6em;
    }

    /* Mobile image adaptation */
    .page-blog-kinh79-access-features-advantages img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile video adaptation (if any) */
    .page-blog-kinh79-access-features-advantages video,
    .page-blog-kinh79-access-features-advantages__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-blog-kinh79-access-features-advantages__video-section,
    .page-blog-kinh79-access-features-advantages__video-container,
    .page-blog-kinh79-access-features-advantages__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }

    /* Mobile button adaptation */
    .page-blog-kinh79-access-features-advantages__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding: 0 15px;
    }
    .page-blog-kinh79-access-features-advantages__btn-primary,
    .page-blog-kinh79-access-features-advantages__btn-secondary {
        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-kinh79-access-features-advantages__section,
    .page-blog-kinh79-access-features-advantages__card,
    .page-blog-kinh79-access-features-advantages__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-blog-kinh79-access-features-advantages__content-area img {
    min-width: 200px;
    min-height: 200px;
}
/* Ensure no filter is used on images */
.page-blog-kinh79-access-features-advantages img {
    filter: none;
}