/* style/blog-f186-latest-promotions.css */
.page-blog-f186-latest-promotions {
    font-family: Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-blog-f186-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-f186-latest-promotions__hero-section {
    position: relative;
    background-color: #f0f8ff; /* Light background for the hero section */
    padding-top: 10px; /* Small top padding as body should handle header offset */
    padding-bottom: 40px;
    text-align: center;
}

.page-blog-f186-latest-promotions__hero-image-wrapper {
    margin-bottom: 20px;
}

.page-blog-f186-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Example max height */
    object-fit: cover; /* Cover for desktop */
    border-radius: 8px;
}

.page-blog-f186-latest-promotions__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-f186-latest-promotions__subtitle {
    font-size: clamp(1em, 2vw, 1.2em);
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-f186-latest-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-f186-latest-promotions__btn-primary,
.page-blog-f186-latest-promotions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-blog-f186-latest-promotions__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #FFFFFF;
    border: 2px solid transparent;
}

.page-blog-f186-latest-promotions__btn-primary:hover {
    background-color: #d46c00;
}

.page-blog-f186-latest-promotions__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-f186-latest-promotions__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

/* General Content Sections */
.page-blog-f186-latest-promotions__introduction-section,
.page-blog-f186-latest-promotions__promotions-analysis,
.page-blog-f186-latest-promotions__participation-guide,
.page-blog-f186-latest-promotions__benefits-section,
.page-blog-f186-latest-promotions__faq-section,
.page-blog-f186-latest-promotions__conclusion-section {
    padding: 40px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eeeeee;
}

.page-blog-f186-latest-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: #26A9E0;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.page-blog-f186-latest-promotions__content-area p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Promotion Grid */
.page-blog-f186-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-f186-latest-promotions__promo-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-f186-latest-promotions__promo-card:hover {
    transform: translateY(-5px);
}

.page-blog-f186-latest-promotions__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-blog-f186-latest-promotions__promo-card-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-f186-latest-promotions__promo-card p {
    font-size: 0.95em;
    color: #555555;
    flex-grow: 1; /* Allow paragraph to take available space */
}

.page-blog-f186-latest-promotions__btn-small {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    background-color: #26A9E0;
    color: #FFFFFF;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-f186-latest-promotions__btn-small:hover {
    background-color: #1e87b9;
}

/* Guide Steps */
.page-blog-f186-latest-promotions__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-f186-latest-promotions__step-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-f186-latest-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    min-width: 60px; /* Enforce min size */
    min-height: 60px; /* Enforce min size */
}

.page-blog-f186-latest-promotions__step-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-f186-latest-promotions__btn-text {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-blog-f186-latest-promotions__btn-text:hover {
    color: #1e87b9;
}

/* Benefits Section */
.page-blog-f186-latest-promotions__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-f186-latest-promotions__benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333333;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-blog-f186-latest-promotions__benefit-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    min-width: 50px; /* Enforce min size */
    min-height: 50px; /* Enforce min size */
    object-fit: contain;
}

/* FAQ Section */
.page-blog-f186-latest-promotions__faq-list {
    margin-top: 30px;
}

.page-blog-f186-latest-promotions__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-blog-f186-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    list-style: none; /* For details/summary */
}

.page-blog-f186-latest-promotions__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker */
}

.page-blog-f186-latest-promotions__faq-question::marker {
    display: none; /* Hide default marker */
}

.page-blog-f186-latest-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-f186-latest-promotions__faq-item[open] .page-blog-f186-latest-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-blog-f186-latest-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #555555;
}

/* Conclusion Section */
.page-blog-f186-latest-promotions__cta-final {
    text-align: center;
    margin-top: 40px;
}

/* Image global styling */
.page-blog-f186-latest-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-f186-latest-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-f186-latest-promotions__container {
        padding: 0 15px !important; /* Ensure padding on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero Section */
    .page-blog-f186-latest-promotions__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }
    
    .page-blog-f186-latest-promotions__hero-image {
        object-fit: contain !important; /* Contain for mobile hero image */
        max-height: none !important; /* Remove max-height constraint */
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-f186-latest-promotions__main-title {
        font-size: 2em;
        line-height: 1.3;
    }

    .page-blog-f186-latest-promotions__subtitle {
        font-size: 0.95em;
    }

    .page-blog-f186-latest-promotions__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-f186-latest-promotions__btn-primary,
    .page-blog-f186-latest-promotions__btn-secondary,
    .page-blog-f186-latest-promotions__btn-small,
    .page-blog-f186-latest-promotions a[class*="button"],
    .page-blog-f186-latest-promotions 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;
        padding-right: 15px;
    }

    /* General Content Sections */
    .page-blog-f186-latest-promotions__introduction-section,
    .page-blog-f186-latest-promotions__promotions-analysis,
    .page-blog-f186-latest-promotions__participation-guide,
    .page-blog-f186-latest-promotions__benefits-section,
    .page-blog-f186-latest-promotions__faq-section,
    .page-blog-f186-latest-promotions__conclusion-section {
        padding: 30px 0;
    }

    .page-blog-f186-latest-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    /* Promo Grid */
    .page-blog-f186-latest-promotions__promo-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-blog-f186-latest-promotions__promo-card-image {
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Guide Steps */
    .page-blog-f186-latest-promotions__guide-steps {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    /* Benefits List */
    .page-blog-f186-latest-promotions__benefits-list li {
        flex-direction: row; /* Keep row for icon + text */
        align-items: flex-start;
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-blog-f186-latest-promotions__benefit-icon {
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
    }

    /* FAQ Section */
    .page-blog-f186-latest-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }

    .page-blog-f186-latest-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    /* Ensure all images within content area are responsive */
    .page-blog-f186-latest-promotions img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important; /* Added for explicit width */
        box-sizing: border-box !important;
    }

    /* Content area containers to prevent overflow */
    .page-blog-f186-latest-promotions__content-area,
    .page-blog-f186-latest-promotions__promo-card,
    .page-blog-f186-latest-promotions__step-item,
    .page-blog-f186-latest-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Color Contrast Fixes (as per instructions) */
.page-blog-f186-latest-promotions {
    color: #333333; /* Default text color for light background */
}
.page-blog-f186-latest-promotions__dark-section {
    background: #26A9E0;
    color: #ffffff; /* Forced white text on brand primary background */
}
.page-blog-f186-latest-promotions__btn-primary {
    background: #EA7C07;
    color: #ffffff; /* Button text always white */
}
.page-blog-f186-latest-promotions__btn-secondary {
    background: #ffffff;
    color: #26A9E0; /* Use brand color for text on white background */
    border: 2px solid #26A9E0;
}
.page-blog-f186-latest-promotions__btn-small {
    background-color: #26A9E0;
    color: #FFFFFF;
}
.page-blog-f186-latest-promotions__btn-text {
    color: #26A9E0;
}