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

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

.page-blog-latest-promotions-analysis {
    background-color: var(--f66-background); /* Dark background */
    color: var(--f66-text-main); /* Light text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-blog-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    box-sizing: border-box;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Adjust based on typical screen size */
    margin-bottom: 30px; /* Space between image and text */
    text-align: center;
}

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

.page-blog-latest-promotions-analysis__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    color: var(--f66-text-main);
}

.page-blog-latest-promotions-analysis__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: var(--f66-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

/* General Section Styling */
.page-blog-latest-promotions-analysis__section {
    padding: 60px 20px;
    box-sizing: border-box;
    width: 100%;
}

.page-blog-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Inner padding for content */
    box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__section-title {
    font-size: 2.5rem;
    color: var(--f66-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-latest-promotions-analysis__text-block {
    font-size: 1.1rem;
    color: var(--f66-text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-latest-promotions-analysis__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
}

/* CTA Button Styling */
.page-blog-latest-promotions-analysis__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-analysis__btn-primary {
    background: var(--f66-button-gradient);
    color: var(--f66-text-main);
    border: 2px solid transparent;
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-analysis__btn-secondary {
    background: var(--f66-card-bg);
    color: var(--f66-primary-color);
    border: 2px solid var(--f66-primary-color);
    margin-left: 15px;
}

.page-blog-latest-promotions-analysis__btn-secondary:hover {
    background: var(--f66-primary-color);
    color: var(--f66-text-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

/* Card Styling */
.page-blog-latest-promotions-analysis__card {
    background-color: var(--f66-card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--f66-border-color);
    color: var(--f66-text-main);
}

.page-blog-latest-promotions-analysis__card-title {
    font-size: 1.8rem;
    color: var(--f66-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-latest-promotions-analysis__card-text {
    font-size: 1rem;
    color: var(--f66-text-secondary);
    margin-bottom: 20px;
}

/* List Styling (Ordered List) */
.page-blog-latest-promotions-analysis__guide-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    color: var(--f66-text-main);
}

.page-blog-latest-promotions-analysis__list-item {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--f66-text-secondary);
}

.page-blog-latest-promotions-analysis__list-item strong {
    color: var(--f66-text-main);
}

/* Button Group */
.page-blog-latest-promotions-analysis__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Dark Section */
.page-blog-latest-promotions-analysis__dark-section {
    background-color: var(--f66-deep-green); /* A slightly different dark green for emphasis */
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions-analysis__dark-section .page-blog-latest-promotions-analysis__section-title {
    color: var(--f66-gold);
}

.page-blog-latest-promotions-analysis__dark-section .page-blog-latest-promotions-analysis__text-block {
    color: var(--f66-text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-blog-latest-promotions-analysis__faq-item {
    background-color: var(--f66-card-bg);
    border: 1px solid var(--f66-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--f66-text-main);
    cursor: pointer;
    background-color: var(--f66-card-bg);
    transition: background-color 0.3s ease;
}

.page-blog-latest-promotions-analysis__faq-question:hover {
    background-color: var(--f66-deep-green);
}

.page-blog-latest-promotions-analysis__faq-item[open] .page-blog-latest-promotions-analysis__faq-question {
    background-color: var(--f66-deep-green);
}

.page-blog-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    color: var(--f66-text-main);
}

.page-blog-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 20px;
    color: var(--f66-gold);
}

/* Hide default details marker */
.page-blog-latest-promotions-analysis__faq-item summary {
    list-style: none;
}
.page-blog-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-latest-promotions-analysis__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--f66-text-secondary);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-latest-promotions-analysis__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-latest-promotions-analysis__description {
        font-size: 1.1rem;
    }
    .page-blog-latest-promotions-analysis__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-promotions-analysis__hero-section {
        padding: 10px 15px 40px;
    }
    .page-blog-latest-promotions-analysis__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-blog-latest-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-latest-promotions-analysis__description {
        font-size: 1rem;
    }
    .page-blog-latest-promotions-analysis__section {
        padding: 40px 15px;
    }
    .page-blog-latest-promotions-analysis__container {
        padding: 0; /* Remove inner padding as section already has it */
    }
    .page-blog-latest-promotions-analysis__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-latest-promotions-analysis__text-block,
    .page-blog-latest-promotions-analysis__card-text,
    .page-blog-latest-promotions-analysis__list-item,
    .page-blog-latest-promotions-analysis__faq-answer p {
        font-size: 16px !important; /* Mobile font size for readability */
        line-height: 1.6 !important;
    }

    /* Images responsiveness */
    .page-blog-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    /* Image/Video/Button containers responsiveness */
    .page-blog-latest-promotions-analysis__section,
    .page-blog-latest-promotions-analysis__card,
    .page-blog-latest-promotions-analysis__container,
    .page-blog-latest-promotions-analysis__hero-image-wrapper,
    .page-blog-latest-promotions-analysis__dark-section,
    .page-blog-latest-promotions-analysis__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Buttons responsiveness */
    .page-blog-latest-promotions-analysis__cta-button,
    .page-blog-latest-promotions-analysis__btn-primary,
    .page-blog-latest-promotions-analysis__btn-secondary,
    .page-blog-latest-promotions-analysis a[class*="button"],
    .page-blog-latest-promotions-analysis a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important; /* Allow text wrapping */
        word-wrap: break-word !important;
        margin-left: 0 !important; /* Reset margin for stacking */
        margin-bottom: 15px; /* Add space between stacked buttons */
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-latest-promotions-analysis__button-group {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 0 !important; /* Remove gap between stacked buttons */
    }

    .page-blog-latest-promotions-analysis__cta-button:last-child {
        margin-bottom: 0;
    }

    .page-blog-latest-promotions-analysis__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-latest-promotions-analysis__faq-toggle {
        font-size: 1.2rem;
    }
    .page-blog-latest-promotions-analysis__faq-answer {
        padding: 0 20px 15px;
    }
}

/* Ensure content area images maintain min size but are responsive */
.page-blog-latest-promotions-analysis__content-area img,
.page-blog-latest-promotions-analysis__detailed-promotions img,
.page-blog-latest-promotions-analysis__benefits-section img,
.page-blog-latest-promotions-analysis__guide-section img,
.page-blog-latest-promotions-analysis__call-to-action-section img {
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
    /* On mobile, max-width: 100% !important ensures they scale down */
}