/* style/blog-v7club-promotions-guide.css */

:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --body-bg: #F4F7FB;
    --text-main: #1F2D3D;
    --text-dark: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-blog-v7club-promotions-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--body-bg);
    line-height: 1.6;
}

.page-blog-v7club-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

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

.page-blog-v7club-promotions-guide__hero-content {
    max-width: 900px;
    margin: 30px auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-blog-v7club-promotions-guide__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-blog-v7club-promotions-guide__description {
    font-size: clamp(1em, 1.5vw, 1.25em);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-v7club-promotions-guide__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-blog-v7club-promotions-guide__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.page-blog-v7club-promotions-guide__section:first-of-type {
    margin-top: 40px;
}

.page-blog-v7club-promotions-guide__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-v7club-promotions-guide__sub-title {
    font-size: clamp(1.5em, 2.5vw, 2em);
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-v7club-promotions-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.7;
}

.page-blog-v7club-promotions-guide__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-blog-v7club-promotions-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

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

.page-blog-v7club-promotions-guide__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-blog-v7club-promotions-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.page-blog-v7club-promotions-guide__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-v7club-promotions-guide__card-text {
    font-size: 1em;
    color: var(--text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-v7club-promotions-guide__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-v7club-promotions-guide__list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-blog-v7club-promotions-guide__btn-primary,
.page-blog-v7club-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-v7club-promotions-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-blog-v7club-promotions-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-blog-v7club-promotions-guide__btn-secondary {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-blog-v7club-promotions-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.2);
}

.page-blog-v7club-promotions-guide__cta-button {
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-blog-v7club-promotions-guide__view-all-promos {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
}

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

.page-blog-v7club-promotions-guide__step-item {
    background-color: var(--body-bg);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-blog-v7club-promotions-guide__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-blog-v7club-promotions-guide__step-title {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-v7club-promotions-guide__step-text {
    font-size: 0.95em;
    color: var(--text-main);
}

.page-blog-v7club-promotions-guide__why-choose-us {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-blog-v7club-promotions-guide__why-choose-us .page-blog-v7club-promotions-guide__section-title {
    color: #ffffff;
}

.page-blog-v7club-promotions-guide__why-choose-us .page-blog-v7club-promotions-guide__text-block {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-v7club-promotions-guide__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.page-blog-v7club-promotions-guide__feature-card:hover {
    transform: translateY(-5px);
}

.page-blog-v7club-promotions-guide__feature-title {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-v7club-promotions-guide__feature-text {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-blog-v7club-promotions-guide__faq-list {
    margin-top: 30px;
}

.page-blog-v7club-promotions-guide__faq-item {
    background-color: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-v7club-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    position: relative;
    user-select: none;
}

.page-blog-v7club-promotions-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-v7club-promotions-guide__faq-item[open] .page-blog-v7club-promotions-guide__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-blog-v7club-promotions-guide__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-blog-v7club-promotions-guide__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.page-blog-v7club-promotions-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--body-bg);
}

.page-blog-v7club-promotions-guide__conclusion-section {
    text-align: center;
}

.page-blog-v7club-promotions-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-blog-v7club-promotions-guide__hero-content {
        margin-bottom: 40px;
    }

    .page-blog-v7club-promotions-guide__section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .page-blog-v7club-promotions-guide__grid {
        gap: 20px;
    }

    .page-blog-v7club-promotions-guide__faq-question,
    .page-blog-v7club-promotions-guide__faq-answer {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .page-blog-v7club-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-v7club-promotions-guide__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-blog-v7club-promotions-guide__hero-content {
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .page-blog-v7club-promotions-guide__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px;
    }

    .page-blog-v7club-promotions-guide__description {
        font-size: 1em !important;
        margin-bottom: 25px;
    }

    /* General images and containers */
    .page-blog-v7club-promotions-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-v7club-promotions-guide__section,
    .page-blog-v7club-promotions-guide__card,
    .page-blog-v7club-promotions-guide__container,
    .page-blog-v7club-promotions-guide__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-v7club-promotions-guide__section {
        padding: 30px 15px;
        margin-bottom: 25px;
    }

    .page-blog-v7club-promotions-guide__section-title {
        font-size: 2em !important;
        margin-bottom: 30px;
    }

    .page-blog-v7club-promotions-guide__sub-title {
        font-size: 1.4em !important;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-v7club-promotions-guide__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-v7club-promotions-guide__card {
        padding: 25px;
    }

    .page-blog-v7club-promotions-guide__card-title {
        font-size: 1.3em;
    }

    /* Buttons and button containers */
    .page-blog-v7club-promotions-guide__btn-primary,
    .page-blog-v7club-promotions-guide__btn-secondary,
    .page-blog-v7club-promotions-guide a[class*="button"],
    .page-blog-v7club-promotions-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .page-blog-v7club-promotions-guide__cta-buttons,
    .page-blog-v7club-promotions-guide__button-group,
    .page-blog-v7club-promotions-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .page-blog-v7club-promotions-guide__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-v7club-promotions-guide__faq-question,
    .page-blog-v7club-promotions-guide__faq-answer {
        padding: 15px 18px;
        font-size: 1em;
    }
    .page-blog-v7club-promotions-guide__faq-qtext {
        padding-right: 10px;
    }
    .page-blog-v7club-promotions-guide__why-choose-us {
        padding: 60px 15px;
    }
    .page-blog-v7club-promotions-guide__feature-card {
        padding: 20px;
    }
}