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

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #26A9E0;
    --button-login: #EA7C07;
    --color-black: #000000;
}

.page-blog-latest-nohu-28-promotions-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-blog-latest-nohu-28-promotions-analysis__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
    text-align: center;
    background-color: var(--bg-dark);
}

.page-blog-latest-nohu-28-promotions-analysis__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.page-blog-latest-nohu-28-promotions-analysis__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-blog-latest-nohu-28-promotions-analysis__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-latest-nohu-28-promotions-analysis__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-blog-latest-nohu-28-promotions-analysis__intro-text {
    font-size: clamp(1em, 1.5vw, 1.25em);
    margin-bottom: 30px;
    max-width: 800px;
    color: var(--text-light);
}

.page-blog-latest-nohu-28-promotions-analysis__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.page-blog-latest-nohu-28-promotions-analysis__cta-buttons--center {
    margin-top: 40px;
}

.page-blog-latest-nohu-28-promotions-analysis__btn-primary,
.page-blog-latest-nohu-28-promotions-analysis__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

.page-blog-latest-nohu-28-promotions-analysis__btn-primary {
    background-color: var(--button-login);
    color: var(--text-light);
    border: 2px solid var(--button-login);
}

.page-blog-latest-nohu-28-promotions-analysis__btn-primary:hover {
    background-color: darken(var(--button-login), 10%);
    border-color: darken(var(--button-login), 10%);
}

.page-blog-latest-nohu-28-promotions-analysis__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.page-blog-latest-nohu-28-promotions-analysis__content-area,
.page-blog-latest-nohu-28-promotions-analysis__guide-section,
.page-blog-latest-nohu-28-promotions-analysis__conclusion-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-blog-latest-nohu-28-promotions-analysis__promotions-section,
.page-blog-latest-nohu-28-promotions-analysis__faq-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px;
}

.page-blog-latest-nohu-28-promotions-analysis__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-blog-latest-nohu-28-promotions-analysis__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: inherit;
}

.page-blog-latest-nohu-28-promotions-analysis__sub-title {
    font-size: clamp(1.3em, 2vw, 1.8em);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: inherit;
}

.page-blog-latest-nohu-28-promotions-analysis__text-block p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-blog-latest-nohu-28-promotions-analysis__ordered-list,
.page-blog-latest-nohu-28-promotions-analysis__unordered-list {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-blog-latest-nohu-28-promotions-analysis__ordered-list li,
.page-blog-latest-nohu-28-promotions-analysis__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-blog-latest-nohu-28-promotions-analysis__promotion-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    color: var(--text-light);
}

.page-blog-latest-nohu-28-promotions-analysis__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-blog-latest-nohu-28-promotions-analysis__card-content {
    padding: 25px;
    flex-grow: 1;
}

.page-blog-latest-nohu-28-promotions-analysis__card-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-blog-latest-nohu-28-promotions-analysis__card-sub-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

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

.page-blog-latest-nohu-28-promotions-analysis__faq-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-latest-nohu-28-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-blog-latest-nohu-28-promotions-analysis__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-blog-latest-nohu-28-promotions-analysis__faq-item[open] > .page-blog-latest-nohu-28-promotions-analysis__faq-question {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-blog-latest-nohu-28-promotions-analysis__faq-qtext {
    flex-grow: 1;
}

.page-blog-latest-nohu-28-promotions-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    user-select: none;
}

.page-blog-latest-nohu-28-promotions-analysis__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-light);
}

/* Details element specific styling */
.page-blog-latest-nohu-28-promotions-analysis__faq-item summary {
    list-style: none;
}

.page-blog-latest-nohu-28-promotions-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-latest-nohu-28-promotions-analysis__hero-content {
        padding: 15px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }

    .page-blog-latest-nohu-28-promotions-analysis__intro-text {
        font-size: clamp(0.9em, 1.8vw, 1.1em);
    }

    .page-blog-latest-nohu-28-promotions-analysis__content-area,
    .page-blog-latest-nohu-28-promotions-analysis__promotions-section,
    .page-blog-latest-nohu-28-promotions-analysis__guide-section,
    .page-blog-latest-nohu-28-promotions-analysis__faq-section,
    .page-blog-latest-nohu-28-promotions-analysis__conclusion-section {
        padding: 40px 15px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__promotion-card {
        height: auto; /* Allow height to adjust */
    }
}

@media (max-width: 768px) {
    .page-blog-latest-nohu-28-promotions-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-latest-nohu-28-promotions-analysis__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__hero-content {
        position: static;
        transform: none;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6); /* Add background for readability on small screens */
        margin-top: -100px; /* Pull content up slightly over image */
    }

    .page-blog-latest-nohu-28-promotions-analysis__hero-image-wrapper {
        max-height: 300px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__main-title {
        font-size: 1.8em !important;
        margin-top: 0; /* Remove top margin */
    }

    .page-blog-latest-nohu-28-promotions-analysis__intro-text {
        font-size: 1em !important;
    }

    .page-blog-latest-nohu-28-promotions-analysis__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__btn-primary,
    .page-blog-latest-nohu-28-promotions-analysis__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__section-title {
        font-size: 1.5em !important;
        margin-bottom: 25px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__sub-title {
        font-size: 1.2em !important;
        margin-top: 25px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__promotion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile image responsiveness */
    .page-blog-latest-nohu-28-promotions-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-latest-nohu-28-promotions-analysis__section,
    .page-blog-latest-nohu-28-promotions-analysis__card,
    .page-blog-latest-nohu-28-promotions-analysis__container,
    .page-blog-latest-nohu-28-promotions-analysis__promotion-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-latest-nohu-28-promotions-analysis__hero-section,
    .page-blog-latest-nohu-28-promotions-analysis__promotions-section,
    .page-blog-latest-nohu-28-promotions-analysis__guide-section,
    .page-blog-latest-nohu-28-promotions-analysis__faq-section,
    .page-blog-latest-nohu-28-promotions-analysis__conclusion-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-blog-latest-nohu-28-promotions-analysis__hero-section {
        padding-top: 10px !important;
    }
}

/* Color contrast specific styles */
.page-blog-latest-nohu-28-promotions-analysis__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-blog-latest-nohu-28-promotions-analysis__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-blog-latest-nohu-28-promotions-analysis__promotion-card p {
    color: var(--text-light);
}

.page-blog-latest-nohu-28-promotions-analysis__faq-answer p {
    color: var(--text-light);
}

/* Ensure content images are not too small in content areas */
.page-blog-latest-nohu-28-promotions-analysis__content-area img,
.page-blog-latest-nohu-28-promotions-analysis__promotions-section img,
.page-blog-latest-nohu-28-promotions-analysis__guide-section img,
.page-blog-latest-nohu-28-promotions-analysis__conclusion-section img {
    min-width: 200px;
    min-height: 200px;
}