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

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

.page-blog-nn8-latest-promotions-analysis {
    background-color: var(--nn8-background);
    color: var(--nn8-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-nn8-latest-promotions-analysis__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px 20px;
    box-sizing: border-box;
}

.page-blog-nn8-latest-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-nn8-latest-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-blog-nn8-latest-promotions-analysis__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-nn8-latest-promotions-analysis__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--nn8-text-main);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

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

.page-blog-nn8-latest-promotions-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-nn8-latest-promotions-analysis__btn-primary,
.page-blog-nn8-latest-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-nn8-latest-promotions-analysis__btn-primary {
    background: var(--nn8-button-gradient);
    color: var(--nn8-light-text);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-nn8-latest-promotions-analysis__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-nn8-latest-promotions-analysis__btn-secondary {
    background: transparent;
    color: var(--nn8-primary-color);
    border: 2px solid var(--nn8-primary-color);
}

.page-blog-nn8-latest-promotions-analysis__btn-secondary:hover {
    background: var(--nn8-primary-color);
    color: var(--nn8-light-text);
}

.page-blog-nn8-latest-promotions-analysis__section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--nn8-divider-color);
}

.page-blog-nn8-latest-promotions-analysis__section:last-of-type {
    border-bottom: none;
}

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

.page-blog-nn8-latest-promotions-analysis__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--nn8-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-nn8-latest-promotions-analysis p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--nn8-text-secondary);
}

.page-blog-nn8-latest-promotions-analysis strong {
    color: var(--nn8-text-main);
}

.page-blog-nn8-latest-promotions-analysis__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-nn8-latest-promotions-analysis__promotion-card {
    background-color: var(--nn8-card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--nn8-border-color);
}

.page-blog-nn8-latest-promotions-analysis__promotion-card:hover {
    transform: translateY(-5px);
}

.page-blog-nn8-latest-promotions-analysis__promotion-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-nn8-latest-promotions-analysis__card-title {
    font-size: 1.4rem;
    color: var(--nn8-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-nn8-latest-promotions-analysis__btn-text {
    display: inline-block;
    margin-top: auto; /* Pushes the button to the bottom */
    padding: 10px 20px;
    background: var(--nn8-primary-color);
    color: var(--nn8-light-text);
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-nn8-latest-promotions-analysis__btn-text:hover {
    background-color: var(--nn8-secondary-color);
}

.page-blog-nn8-latest-promotions-analysis__terms-list,
.page-blog-nn8-latest-promotions-analysis__guide-list,
.page-blog-nn8-latest-promotions-analysis__benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-blog-nn8-latest-promotions-analysis__terms-list li,
.page-blog-nn8-latest-promotions-analysis__guide-list li,
.page-blog-nn8-latest-promotions-analysis__benefits-list li {
    background-color: var(--nn8-card-bg);
    border-left: 4px solid var(--nn8-primary-color);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--nn8-text-secondary);
    font-size: 1rem;
}

.page-blog-nn8-latest-promotions-analysis__terms-list li strong,
.page-blog-nn8-latest-promotions-analysis__guide-list li strong,
.page-blog-nn8-latest-promotions-analysis__benefits-list li strong {
    color: var(--nn8-text-main);
    display: block;
    margin-bottom: 5px;
}

.page-blog-nn8-latest-promotions-analysis__faq-list {
    margin-top: 30px;
}

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

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

.page-blog-nn8-latest-promotions-analysis__faq-question:hover {
    background-color: var(--nn8-primary-color);
}

.page-blog-nn8-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--nn8-text-main);
}

.page-blog-nn8-latest-promotions-analysis__faq-item[open] .page-blog-nn8-latest-promotions-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-nn8-latest-promotions-analysis__faq-answer {
    padding: 0 25px 15px 25px;
    color: var(--nn8-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.page-blog-nn8-latest-promotions-analysis__cta-buttons--bottom {
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-nn8-latest-promotions-analysis__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-nn8-latest-promotions-analysis__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-nn8-latest-promotions-analysis__description {
        font-size: 1rem;
    }
    .page-blog-nn8-latest-promotions-analysis__section {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .page-blog-nn8-latest-promotions-analysis__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }
    .page-blog-nn8-latest-promotions-analysis__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-nn8-latest-promotions-analysis__description {
        font-size: 0.95rem;
    }
    .page-blog-nn8-latest-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-nn8-latest-promotions-analysis__btn-primary,
    .page-blog-nn8-latest-promotions-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-nn8-latest-promotions-analysis__section {
        padding: 40px 15px;
    }
    .page-blog-nn8-latest-promotions-analysis__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-blog-nn8-latest-promotions-analysis__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-nn8-latest-promotions-analysis p,
    .page-blog-nn8-latest-promotions-analysis li {
        font-size: 0.9rem;
    }
    /* Mobile image responsiveness */
    .page-blog-nn8-latest-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-nn8-latest-promotions-analysis__hero-image-wrapper,
    .page-blog-nn8-latest-promotions-analysis__promotion-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-nn8-latest-promotions-analysis__promotion-image {
        max-height: 180px;
    }
    .page-blog-nn8-latest-promotions-analysis__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-nn8-latest-promotions-analysis__faq-answer {
        padding: 0 20px 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-nn8-latest-promotions-analysis__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }
    .page-blog-nn8-latest-promotions-analysis__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-blog-nn8-latest-promotions-analysis__description {
        font-size: 0.85rem;
    }
    .page-blog-nn8-latest-promotions-analysis__section {
        padding: 30px 10px;
    }
    .page-blog-nn8-latest-promotions-analysis__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 20px;
    }
    .page-blog-nn8-latest-promotions-analysis__promotion-grid {
        gap: 20px;
    }
    .page-blog-nn8-latest-promotions-analysis__card-title {
        font-size: 1.2rem;
    }
    .page-blog-nn8-latest-promotions-analysis__btn-primary,
    .page-blog-nn8-latest-promotions-analysis__btn-secondary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .page-blog-nn8-latest-promotions-analysis__terms-list li,
    .page-blog-nn8-latest-promotions-analysis__guide-list li,
    .page-blog-nn8-latest-promotions-analysis__benefits-list li {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    .page-blog-nn8-latest-promotions-analysis__faq-question {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    .page-blog-nn8-latest-promotions-analysis__faq-answer {
        padding: 0 15px 8px 15px;
    }
}