/* style/blog-cap-nhat-khuyen-mai-sunwin20.css */

/* Base styles for the page content */
.page-blog-cap-nhat-khuyen-mai-sunwin20 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #FFFFFF; /* Explicitly set for clarity, as body is default light */
}

/* Container for consistent content width */
.page-blog-cap-nhat-khuyen-mai-sunwin20__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__container--center {
    text-align: center;
}

/* Section padding */
.page-blog-cap-nhat-khuyen-mai-sunwin20__section {
    padding: 60px 0;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__section-description {
    font-size: 18px;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image base styles */
.page-blog-cap-nhat-khuyen-mai-sunwin20 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button base styles */
.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-primary,
.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-secondary,
.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow word breaking */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0; /* Brand primary color for text */
    border: 2px solid #26A9E0;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-secondary:hover {
    background-color: #f0f8ff;
    color: #1e87b7;
    border-color: #1e87b7;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-link {
    background: none;
    color: #26A9E0;
    border: none;
    padding: 0;
    text-decoration: underline;
    font-size: 16px;
    font-weight: normal;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-link:hover {
    color: #1e87b7;
}

/* Hero Section */
.page-blog-cap-nhat-khuyen-mai-sunwin20__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    padding-bottom: 60px;
    background-color: #f0f8ff; /* Light background for hero */
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #333333;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
    font-weight: 800;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555555;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Latest Promos Section */
.page-blog-cap-nhat-khuyen-mai-sunwin20__latest-promos {
    background-color: #FFFFFF;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for consistent card images */
    overflow: hidden;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-title a:hover {
    color: #1e87b7;
    text-decoration: underline;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
    display: block;
}

/* How to Claim Section */
.page-blog-cap-nhat-khuyen-mai-sunwin20__how-to-claim {
    background-color: #f0f8ff;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__guide-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__guide-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__guide-title {
    font-size: 22px;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__guide-text {
    font-size: 16px;
    color: #666666;
}

/* FAQ Section */
.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-section {
    background-color: #FFFFFF;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #FFFFFF;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* For details summary */
}

/* Hide default details marker */
.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-item summary::-webkit-details-marker,
.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-item summary::marker {
    display: none;
    content: "";
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-qtext {
    flex-grow: 1;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-item[open] .page-blog-cap-nhat-khuyen-mai-sunwin20__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__faq-answer {
    padding: 15px 25px 25px;
    font-size: 16px;
    color: #555555;
    background-color: #f9f9f9;
}

/* Final CTA Section */
.page-blog-cap-nhat-khuyen-mai-sunwin20__final-cta {
    background-color: #26A9E0; /* Brand primary color background */
    color: #FFFFFF;
    text-align: center;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__final-cta .page-blog-cap-nhat-khuyen-mai-sunwin20__section-title {
    color: #FFFFFF;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__final-cta .page-blog-cap-nhat-khuyen-mai-sunwin20__section-description {
    color: #FFFFFF;
    margin-bottom: 30px;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-large {
    padding: 15px 35px;
    font-size: 20px;
    background-color: #EA7C07; /* Login color for prominent CTA */
    border-color: #EA7C07;
}

.page-blog-cap-nhat-khuyen-mai-sunwin20__btn-large:hover {
    background-color: #c96806;
    border-color: #c96806;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-cap-nhat-khuyen-mai-sunwin20__main-title {
        font-size: clamp(24px, 5vw, 40px);
    }
    .page-blog-cap-nhat-khuyen-mai-sunwin20__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    /* General mobile adaptations */
    .page-blog-cap-nhat-khuyen-mai-sunwin20 {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden; /* Prevent horizontal scroll */
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__section {
        padding: 40px 0;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* HERO Section - Checklist item 1 */
    .page-blog-cap-nhat-khuyen-mai-sunwin20__hero-section {
        padding-top: 10px !important; /* As per rule, small top padding */
        padding-bottom: 40px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__hero-content,
    .page-blog-cap-nhat-khuyen-mai-sunwin20__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__main-title {
        font-size: 32px;
        text-align: center;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__hero-description {
        font-size: 16px;
        text-align: center;
    }

    /* Buttons and button containers - Checklist item 6 */
    .page-blog-cap-nhat-khuyen-mai-sunwin20__cta-buttons {
        flex-direction: column !important; /* Mobile vertical stacking */
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to container to prevent edge overflow */
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__btn-primary,
    .page-blog-cap-nhat-khuyen-mai-sunwin20__btn-secondary,
    .page-blog-cap-nhat-khuyen-mai-sunwin20__btn-link,
    .page-blog-cap-nhat-khuyen-mai-sunwin20 a[class*="button"],
    .page-blog-cap-nhat-khuyen-mai-sunwin20 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 !important; /* Ensure button content has padding */
        padding-right: 15px !important;
    }

    /* Images - Checklist item 5 */
    .page-blog-cap-nhat-khuyen-mai-sunwin20 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__promo-grid,
    .page-blog-cap-nhat-khuyen-mai-sunwin20__guide-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__promo-image-wrapper {
        height: 180px; /* Adjust height for mobile */
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__promo-card-title {
        font-size: 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__guide-title {
        font-size: 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__faq-answer {
        padding: 10px 20px 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-sunwin20__btn-large {
        font-size: 18px;
        padding: 12px 25px;
    }
    /* No __icon-box-media, game-tabs for this page. Other content modules are covered by general section/container rules. */
}