/* style/blog-cap-nhat-khuyen-mai-uw88-moi-nhat.css */

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for content area */
    background-color: #ffffff; /* Default background for main content sections */
}

/* Hero Section */
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: #f8f8f8; /* Light background for hero */
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 30px;
}

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

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #017439; /* Brand color for H1 */
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__intro-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555555;
}

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

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-secondary,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary-small {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button fits container */
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary:hover {
    background-color: #005f2e;
    border-color: #005f2e;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2e;
    border-color: #005f2e;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    background-color: #017439;
    color: #ffffff;
    border: 1px solid #017439;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary-small:hover {
    background-color: #005f2e;
    border-color: #005f2e;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-image {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: center;
}

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

/* Content Area */
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333333;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #017439;
    margin-bottom: 30px;
    text-align: center;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__content-area p {
    margin-bottom: 1em;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__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;
    padding-bottom: 20px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #017439;
    margin: 0 20px 10px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card p {
    font-size: 0.95rem;
    color: #666666;
    margin: 0 20px 20px;
    flex-grow: 1; /* Make paragraphs take available space */
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary-small {
    align-self: flex-start;
    margin-left: 20px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__guide-list,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__terms-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__guide-list li,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__terms-list li {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-left: 4px solid #017439;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #444444;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__guide-list li strong {
    color: #017439;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin: 30px auto 60px;
    display: block;
}

/* FAQ Section */
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

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

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #017439;
    background-color: #e6f3ed; /* Lighter shade of brand color */
    border-bottom: 1px solid #d0e7db;
    list-style: none; /* Hide default summary marker */
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-item[open] .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-question {
    border-bottom: 1px solid #d0e7db;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-question::-webkit-details-marker,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-question::marker {
    display: none;
    content: "";
}

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

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-answer {
    padding: 20px 25px;
    font-size: 1.05rem;
    color: #555555;
    background-color: #ffffff;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__conclusion-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    margin-top: 60px;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__conclusion-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #333333;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* General image and container responsive styles */
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__section,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__container,
.page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px !important;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-container {
        flex-direction: column;
        padding: 20px 15px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-content {
        flex: 1 1 100%;
        text-align: center;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__hero-image {
        flex: 1 1 100%;
        order: -1; /* Image above text on mobile */
        margin-bottom: 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__main-title {
        font-size: 2.2rem !important;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__intro-description {
        font-size: 1rem !important;
    }

    /* Buttons and Button Containers */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-secondary,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-primary-small,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat a[class*="button"],
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat 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;
        padding-right: 15px !important;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__cta-buttons,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__button-group,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        display: flex;
        flex-direction: column; /* Ensure vertical stacking on mobile */
    }

    /* Content Area & General Sections */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__content-area {
        padding: 40px 15px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__section-title {
        font-size: 2rem !important;
        margin-bottom: 25px;
    }

    /* Promo List (Cards) */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card-image {
        height: 180px; /* Adjust height for mobile cards */
    }

    /* Guide & Terms Lists */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__guide-list li,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__terms-list li {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    /* Images within content */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__guide-image {
        margin: 20px auto 40px;
    }

    /* FAQ Section */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__faq-answer {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    /* Conclusion Section */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__conclusion-section {
        padding: 30px 15px;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__conclusion-section p {
        font-size: 1rem;
    }

    /* Universal image responsive styles for content area */
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__section,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__card,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__container,
    .page-blog-cap-nhat-khuyen-mai-uw88-moi-nhat__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}