.page-blog-latest-promotions {
    padding-top: 10px; /* Small top padding to avoid double header offset */
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-blog-latest-promotions__hero-section {
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-blog-latest-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Ensures image does not exceed content width */
    margin-bottom: 20px;
}

.page-blog-latest-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-blog-latest-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-blog-latest-promotions__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E; /* Using primary color for H1 */
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-latest-promotions__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-blog-latest-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-latest-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-latest-promotions__promotions-list-section,
.page-blog-latest-promotions__how-to-claim-section,
.page-blog-latest-promotions__faq-section,
.page-blog-latest-promotions__final-cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-latest-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-blog-latest-promotions__section-intro {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-blog-latest-promotions__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-latest-promotions__promotion-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards are same height */
}

.page-blog-latest-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-blog-latest-promotions__promotion-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
}

.page-blog-latest-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-blog-latest-promotions__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-blog-latest-promotions__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-latest-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 211, 107, 0.3);
    width: fit-content; /* Adjust button width to content */
}

.page-blog-latest-promotions__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-latest-promotions__all-promotions-cta {
    text-align: center;
    margin-top: 20px;
}

.page-blog-latest-promotions__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-blog-latest-promotions__step-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions__step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(#F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-blog-latest-promotions__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-blog-latest-promotions__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-blog-latest-promotions__image-how-to-claim {
    text-align: center;
    margin-top: 40px;
}

.page-blog-latest-promotions__how-to-claim-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.2);
}

.page-blog-latest-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-blog-latest-promotions__faq-item {
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-blog-latest-promotions__faq-item:hover {
    background-color: #1a1a1a;
}

.page-blog-latest-promotions__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-blog-latest-promotions__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-blog-latest-promotions__faq-item.active .page-blog-latest-promotions__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-blog-latest-promotions__faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-top 0.4s ease-out;
}

.page-blog-latest-promotions__faq-item.active .page-blog-latest-promotions__faq-answer {
    max-height: 200px; /* Sufficient height for most answers */
    margin-top: 15px;
}

.page-blog-latest-promotions__final-cta-section {
    text-align: center;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .page-blog-latest-promotions__hero-section {
        padding: 30px 15px 40px;
    }

    .page-blog-latest-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-latest-promotions__description {
        font-size: 1rem;
    }

    .page-blog-latest-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-blog-latest-promotions__promotions-list-section,
    .page-blog-latest-promotions__how-to-claim-section,
    .page-blog-latest-promotions__faq-section,
    .page-blog-latest-promotions__final-cta-section {
        padding: 40px 15px;
    }

    .page-blog-latest-promotions__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-blog-latest-promotions__section-intro {
        font-size: 0.9rem;
    }

    .page-blog-latest-promotions__promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-latest-promotions__promotion-image {
        height: 200px; /* Adjust height for mobile */
    }

    .page-blog-latest-promotions__card-title {
        font-size: 1.2rem;
    }

    .page-blog-latest-promotions__card-description {
        font-size: 0.9rem;
    }

    .page-blog-latest-promotions__card-button {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .page-blog-latest-promotions__steps-container {
        grid-template-columns: 1fr;
    }

    .page-blog-latest-promotions__step-number {
        font-size: 2rem;
    }

    .page-blog-latest-promotions__step-title {
        font-size: 1.1rem;
    }

    .page-blog-latest-promotions__step-description {
        font-size: 0.85rem;
    }

    .page-blog-latest-promotions__how-to-claim-image {
        max-width: 100%;
        height: auto;
    }

    .page-blog-latest-promotions__faq-question {
        font-size: 1rem;
    }

    .page-blog-latest-promotions__faq-answer {
        font-size: 0.85rem;
    }

    /* Ensure all images inside content area are responsive and don't overflow */
    .page-blog-latest-promotions img {
        max-width: 100%;
        height: auto;
    }
    .page-blog-latest-promotions__promotion-image {
        max-width: 100%;
        height: auto;
        min-height: 200px; /* Ensure minimum height even on mobile */
    }
    .page-blog-latest-promotions__how-to-claim-image {
        max-width: 100%;
        height: auto;
        min-height: 200px; /* Ensure minimum height even on mobile */
    }
}

/* Ensure content area images are never smaller than 200px */
.page-blog-latest-promotions img {
    min-width: 200px;
    min-height: 200px;
}
.page-blog-latest-promotions__promotion-image {
    min-width: 200px;
    min-height: 200px;
}
.page-blog-latest-promotions__how-to-claim-image {
    min-width: 200px;
    min-height: 200px;
}