/* style/blog-m788-latest-promotions-analysis.css */

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

/* Base styles for the page */
.page-blog-m788-latest-promotions-analysis {
    color: var(--text-main-color); /* Default text color for dark body background */
    background-color: var(--background-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-blog-m788-latest-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-green-color);
    overflow: hidden;
}

.page-blog-m788-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-m788-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-m788-latest-promotions-analysis__hero-content {
    position: relative; /* Ensure content is above image but not overlapping */
    z-index: 10;
    max-width: 900px;
    margin-top: 40px;
}

.page-blog-m788-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-m788-latest-promotions-analysis__description {
    font-size: 1.2em;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-blog-m788-latest-promotions-analysis__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-blog-m788-latest-promotions-analysis__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Section common styles */
.page-blog-m788-latest-promotions-analysis__intro-section,
.page-blog-m788-latest-promotions-analysis__promotions-overview,
.page-blog-m788-latest-promotions-analysis__how-to-claim,
.page-blog-m788-latest-promotions-analysis__important-notes,
.page-blog-m788-latest-promotions-analysis__comparison-section,
.page-blog-m788-latest-promotions-analysis__faq-section,
.page-blog-m788-latest-promotions-analysis__conclusion-section {
    padding: 80px 0;
}

.page-blog-m788-latest-promotions-analysis__light-bg {
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-blog-m788-latest-promotions-analysis__dark-bg {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
}

.page-blog-m788-latest-promotions-analysis__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-m788-latest-promotions-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--glow-color);
    border-radius: 2px;
}

.page-blog-m788-latest-promotions-analysis__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary-color);
}

/* Promotions Grid */
.page-blog-m788-latest-promotions-analysis__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-m788-latest-promotions-analysis__promo-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-main-color);
    border: 1px solid var(--border-color);
}

.page-blog-m788-latest-promotions-analysis__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-m788-latest-promotions-analysis__promo-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog-m788-latest-promotions-analysis__card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin: 20px 20px 10px 20px;
}

.page-blog-m788-latest-promotions-analysis__card-description {
    font-size: 1em;
    color: var(--text-secondary-color);
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-blog-m788-latest-promotions-analysis__card-button {
    display: block;
    text-align: center;
    background: var(--button-gradient);
    color: var(--text-main-color);
    padding: 12px 20px;
    margin: 0 20px 20px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
}

.page-blog-m788-latest-promotions-analysis__card-button:hover {
    opacity: 0.9;
}

/* Step List */
.page-blog-m788-latest-promotions-analysis__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-m788-latest-promotions-analysis__step-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-color);
}

.page-blog-m788-latest-promotions-analysis__step-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-blog-m788-latest-promotions-analysis__step-item p {
    color: var(--text-secondary-color);
    font-size: 1.05em;
}

/* Important Notes */
.page-blog-m788-latest-promotions-analysis__notes-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-m788-latest-promotions-analysis__notes-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-right: 5px solid var(--secondary-color);
}

.page-blog-m788-latest-promotions-analysis__notes-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-blog-m788-latest-promotions-analysis__notes-item p {
    color: var(--text-secondary-color);
    font-size: 1em;
}

.page-blog-m788-latest-promotions-analysis__image-text-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-m788-latest-promotions-analysis__inline-image {
    width: 40%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure image is not too small */
}

.page-blog-m788-latest-promotions-analysis__image-text-block .page-blog-m788-latest-promotions-analysis__text-block {
    flex: 1;
    margin-bottom: 0;
}

/* Comparison Section */
.page-blog-m788-latest-promotions-analysis__comparison-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-m788-latest-promotions-analysis__comparison-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-secondary-color);
    font-size: 1.05em;
    border: 1px solid var(--divider-color);
}

.page-blog-m788-latest-promotions-analysis__comparison-item strong {
    color: var(--text-main-color);
    font-size: 1.1em;
}

/* FAQ Section */
.page-blog-m788-latest-promotions-analysis__faq-list {
    margin-top: 40px;
}

.page-blog-m788-latest-promotions-analysis__faq-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.page-blog-m788-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--text-main-color);
    font-weight: bold;
    background-color: var(--card-bg-color);
    position: relative;
    list-style: none; /* For details/summary */
}

.page-blog-m788-latest-promotions-analysis__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-m788-latest-promotions-analysis__faq-question::marker {
    display: none;
}

.page-blog-m788-latest-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    color: var(--glow-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-m788-latest-promotions-analysis__faq-item[open] .page-blog-m788-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-m788-latest-promotions-analysis__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: var(--text-secondary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-m788-latest-promotions-analysis__faq-item[open] .page-blog-m788-latest-promotions-analysis__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding-top: 10px;
}

.page-blog-m788-latest-promotions-analysis__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* CTA Wrapper */
.page-blog-m788-latest-promotions-analysis__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-m788-latest-promotions-analysis__section-title {
        font-size: 2em;
    }
    .page-blog-m788-latest-promotions-analysis__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-blog-m788-latest-promotions-analysis__image-text-block {
        flex-direction: column;
    }
    .page-blog-m788-latest-promotions-analysis__inline-image {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .page-blog-m788-latest-promotions-analysis__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }
    .page-blog-m788-latest-promotions-analysis__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }
    .page-blog-m788-latest-promotions-analysis__description {
        font-size: 1em;
    }
    .page-blog-m788-latest-promotions-analysis__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-m788-latest-promotions-analysis__cta-wrapper {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-blog-m788-latest-promotions-analysis__intro-section,
    .page-blog-m788-latest-promotions-analysis__promotions-overview,
    .page-blog-m788-latest-promotions-analysis__how-to-claim,
    .page-blog-m788-latest-promotions-analysis__important-notes,
    .page-blog-m788-latest-promotions-analysis__comparison-section,
    .page-blog-m788-latest-promotions-analysis__faq-section,
    .page-blog-m788-latest-promotions-analysis__conclusion-section {
        padding: 40px 0;
    }
    .page-blog-m788-latest-promotions-analysis__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-m788-latest-promotions-analysis__section-title {
        font-size: 1.8em;
    }
    .page-blog-m788-latest-promotions-analysis__text-block {
        font-size: 0.95em;
    }
    .page-blog-m788-latest-promotions-analysis__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-m788-latest-promotions-analysis__promo-card {
        margin-bottom: 20px;
    }
    .page-blog-m788-latest-promotions-analysis__promo-thumbnail {
        height: 180px;
    }
    .page-blog-m788-latest-promotions-analysis__card-title {
        font-size: 1.3em;
    }
    .page-blog-m788-latest-promotions-analysis__step-item,
    .page-blog-m788-latest-promotions-analysis__notes-item,
    .page-blog-m788-latest-promotions-analysis__comparison-item,
    .page-blog-m788-latest-promotions-analysis__faq-item {
        padding: 20px;
    }
    .page-blog-m788-latest-promotions-analysis__step-title {
        font-size: 1.4em;
    }
    .page-blog-m788-latest-promotions-analysis__notes-title {
        font-size: 1.2em;
    }
    .page-blog-m788-latest-promotions-analysis__image-text-block {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .page-blog-m788-latest-promotions-analysis__inline-image {
        width: 100%;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-m788-latest-promotions-analysis__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-blog-m788-latest-promotions-analysis__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-blog-m788-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-m788-latest-promotions-analysis__promo-card img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-blog-m788-latest-promotions-analysis__main-title {
        font-size: clamp(1.5em, 9vw, 2em);
    }
    .page-blog-m788-latest-promotions-analysis__section-title {
        font-size: 1.5em;
    }
}