/* style/blog-88ck-latest-promotions.css */

/* Custom Color Variables */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F; /* This page's specific background color */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-blog-88ck-latest-promotions {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Section common styles */
.page-blog-88ck-latest-promotions__section {
    padding: 60px 20px;
    text-align: center;
}

.page-blog-88ck-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Ensure content doesn't touch edges */
    box-sizing: border-box;
}

.page-blog-88ck-latest-promotions__section-title {
    font-size: 2.8em;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-88ck-latest-promotions__section-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-blog-88ck-latest-promotions__hero-section {
    position: relative;
    padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
    background-color: var(--deep-green); /* A darker green for hero section background */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.page-blog-88ck-latest-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.page-blog-88ck-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-88ck-latest-promotions__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-blog-88ck-latest-promotions__main-title {
    font-size: clamp(2.2em, 5vw, 3.5em); /* Responsive font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-blog-88ck-latest-promotions__intro-text {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-88ck-latest-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-88ck-latest-promotions__btn-primary,
.page-blog-88ck-latest-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-blog-88ck-latest-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text on dark green gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-88ck-latest-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-88ck-latest-promotions__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-88ck-latest-promotions__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Grid layout for "Why Choose" section */
.page-blog-88ck-latest-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-blog-88ck-latest-promotions__grid-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.page-blog-88ck-latest-promotions__grid-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-88ck-latest-promotions__grid-text {
    color: var(--text-secondary);
    font-size: 1em;
}

/* Promotion Types Section */
.page-blog-88ck-latest-promotions__promotion-types {
    background-color: var(--deep-green); /* Another deep green section */
}

.page-blog-88ck-latest-promotions__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-blog-88ck-latest-promotions__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-blog-88ck-latest-promotions__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-main); /* Ensure light text on dark card */
}

.page-blog-88ck-latest-promotions__card-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-88ck-latest-promotions__card-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-blog-88ck-latest-promotions__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-88ck-latest-promotions__list-title {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.page-blog-88ck-latest-promotions__list-title::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How to Claim Section */
.page-blog-88ck-latest-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-blog-88ck-latest-promotions__step-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.page-blog-88ck-latest-promotions__step-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-88ck-latest-promotions__step-text {
    color: var(--text-secondary);
    font-size: 1em;
}

.page-blog-88ck-latest-promotions__step-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-blog-88ck-latest-promotions__step-text a:hover {
    color: var(--glow-color);
}

/* Terms and Conditions Section */
.page-blog-88ck-latest-promotions__terms {
    background-color: var(--deep-green); /* Another deep green section */
}

/* FAQ Section */
.page-blog-88ck-latest-promotions__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-blog-88ck-latest-promotions__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.page-blog-88ck-latest-promotions__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-blog-88ck-latest-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-blog-88ck-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-88ck-latest-promotions__faq-question:hover {
    background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-88ck-latest-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--secondary-color);
}

.page-blog-88ck-latest-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Conclusion Section */
.page-blog-88ck-latest-promotions__conclusion {
    padding-bottom: 80px;
}

.page-blog-88ck-latest-promotions__text-block {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-blog-88ck-latest-promotions__text-block a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-blog-88ck-latest-promotions__text-block a:hover {
    color: var(--glow-color);
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-blog-88ck-latest-promotions__section-title {
        font-size: 2.5em;
    }
    .page-blog-88ck-latest-promotions__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-blog-88ck-latest-promotions__section {
        padding: 40px 15px;
    }
    .page-blog-88ck-latest-promotions__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-88ck-latest-promotions__section-title {
        font-size: 2em;
        margin-bottom: 25px;
    }
    .page-blog-88ck-latest-promotions__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-blog-88ck-latest-promotions__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-blog-88ck-latest-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px; /* Add padding to button container */
    }
    .page-blog-88ck-latest-promotions__btn-primary,
    .page-blog-88ck-latest-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Images responsiveness */
    .page-blog-88ck-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-height: 200px !important; /* Ensure minimum size */
    }
    .page-blog-88ck-latest-promotions__hero-image-wrapper,
    .page-blog-88ck-latest-promotions__container,
    .page-blog-88ck-latest-promotions__grid,
    .page-blog-88ck-latest-promotions__cards-grid,
    .page-blog-88ck-latest-promotions__steps-list,
    .page-blog-88ck-latest-promotions__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-88ck-latest-promotions__hero-section {
        padding-top: 10px !important;
    }
    .page-blog-88ck-latest-promotions__grid {
        grid-template-columns: 1fr; /* Stack grid items */
    }
    .page-blog-88ck-latest-promotions__cards-grid {
        grid-template-columns: 1fr; /* Stack cards */
    }
    .page-blog-88ck-latest-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-blog-88ck-latest-promotions__faq-answer {
        padding: 0 20px 15px;
    }
    .page-blog-88ck-latest-promotions__card-title,
    .page-blog-88ck-latest-promotions__grid-title {
        font-size: 1.4em;
    }
    .page-blog-88ck-latest-promotions__step-title {
        font-size: 1.3em;
    }
}