/* style/resources-23wim-vip-latest-promotions.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #000000; /* Assuming --black-color from shared.css is dark */
    --login-color: #EA7C07;
}

.page-resources-23wim-vip-latest-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-resources-23wim-vip-latest-promotions__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
}

.page-resources-23wim-vip-latest-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-23wim-vip-latest-promotions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-23wim-vip-latest-promotions__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 900px;
    padding: 20px;
}

.page-resources-23wim-vip-latest-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-23wim-vip-latest-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-23wim-vip-latest-promotions__hero-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-23wim-vip-latest-promotions__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-23wim-vip-latest-promotions__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-23wim-vip-latest-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-23wim-vip-latest-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-resources-23wim-vip-latest-promotions__card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
}

.page-resources-23wim-vip-latest-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-23wim-vip-latest-promotions__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.page-resources-23wim-vip-latest-promotions__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    padding: 20px 20px 10px;
    margin: 0;
}

.page-resources-23wim-vip-latest-promotions__card-text {
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-resources-23wim-vip-latest-promotions__btn-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.page-resources-23wim-vip-latest-promotions__btn-link:hover {
    background-color: darken(var(--primary-color), 10%);
}

.page-resources-23wim-vip-latest-promotions__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-resources-23wim-vip-latest-promotions__step-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-23wim-vip-latest-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-resources-23wim-vip-latest-promotions__step-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-23wim-vip-latest-promotions__step-text {
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources-23wim-vip-latest-promotions__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-23wim-vip-latest-promotions__list-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.page-resources-23wim-vip-latest-promotions__list-item::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-resources-23wim-vip-latest-promotions__faq-container {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-resources-23wim-vip-latest-promotions__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-23wim-vip-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-resources-23wim-vip-latest-promotions__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-23wim-vip-latest-promotions__faq-title {
    font-size: 1.2em;
    color: var(--primary-color);
    margin: 0;
}

.page-resources-23wim-vip-latest-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-resources-23wim-vip-latest-promotions__faq-item.active .page-resources-23wim-vip-latest-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-23wim-vip-latest-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
}

.page-resources-23wim-vip-latest-promotions__faq-item.active .page-resources-23wim-vip-latest-promotions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

.page-resources-23wim-vip-latest-promotions__faq-text {
    margin-bottom: 0;
}

.page-resources-23wim-vip-latest-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* Buttons */
.page-resources-23wim-vip-latest-promotions__btn-primary,
.page-resources-23wim-vip-latest-promotions__btn-secondary,
.page-resources-23wim-vip-latest-promotions__btn-small,
.page-resources-23wim-vip-latest-promotions__btn-large {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    text-align: center;
}

.page-resources-23wim-vip-latest-promotions__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-resources-23wim-vip-latest-promotions__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-resources-23wim-vip-latest-promotions__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-23wim-vip-latest-promotions__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-23wim-vip-latest-promotions__btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-resources-23wim-vip-latest-promotions__btn-large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-23wim-vip-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-resources-23wim-vip-latest-promotions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-23wim-vip-latest-promotions__hero-section {
        min-height: 400px;
    }
    .page-resources-23wim-vip-latest-promotions__hero-title {
        font-size: 2em;
        line-height: 1.3;
    }
    .page-resources-23wim-vip-latest-promotions__hero-description {
        font-size: 1em;
    }
    .page-resources-23wim-vip-latest-promotions__hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-23wim-vip-latest-promotions__btn-primary,
    .page-resources-23wim-vip-latest-promotions__btn-secondary,
    .page-resources-23wim-vip-latest-promotions a[class*="button"],
    .page-resources-23wim-vip-latest-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-23wim-vip-latest-promotions__hero-cta-buttons {
        gap: 10px;
        padding: 0 15px;
    }

    .page-resources-23wim-vip-latest-promotions__content-area,
    .page-resources-23wim-vip-latest-promotions__promo-grid,
    .page-resources-23wim-vip-latest-promotions__steps-container,
    .page-resources-23wim-vip-latest-promotions__faq-container,
    .page-resources-23wim-vip-latest-promotions__cta-bottom {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-23wim-vip-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-23wim-vip-latest-promotions__card-image {
        height: 200px; /* Adjust height for mobile cards */
    }

    .page-resources-23wim-vip-latest-promotions__list-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .page-resources-23wim-vip-latest-promotions__list-item::before {
        margin-bottom: 5px;
    }

    .page-resources-23wim-vip-latest-promotions__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
}

@media (max-width: 480px) {
    .page-resources-23wim-vip-latest-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-resources-23wim-vip-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-resources-23wim-vip-latest-promotions__card-title {
        font-size: 1.3em;
    }
    .page-resources-23wim-vip-latest-promotions__step-title {
        font-size: 1.4em;
    }
}