/* ============================================
   IMPELER MÉXICO - SITE CUSTOMIZATIONS
   ============================================ */

/* Content Card for Single Pages */
.content-card {
    background: white;
    padding: 5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

/* Upcoming / Placeholder styling */
.upcoming-notice {
    text-align: center;
    margin-bottom: 3rem;
}

.upcoming-notice h2 {
    font-size: 2.5rem;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
}

.upcoming-subtitle {
    font-size: 1.25rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* Waitlist box */
.waitlist-box {
    margin-top: 3rem;
    padding: 3rem;
    border: 2px dashed var(--orange-optimist);
    border-radius: var(--radius-xl);
    background: var(--bg-creme);
    text-align: center;
}

.waitlist-box h3 {
    margin-bottom: 1rem;
}

.waitlist-box p {
    margin-bottom: 2rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .content-card {
        padding: 2.5rem 1.5rem;
        margin-top: -40px;
    }

    .upcoming-notice h2 {
        font-size: 2rem;
    }

    .upcoming-subtitle {
        font-size: 1.1rem;
    }

    .waitlist-box {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}
