/**
 * Incomplete Page Banner Styles
 * Uses site CSS variables for consistency
 */

.incomplete-page-banner {
    background: var(--c-panel);
    border-bottom: 1px solid var(--c-border);
    padding: 14px 20px;
    position: relative;
    z-index: 100;
    margin-bottom:40px;
    margin-top: 32px; /* Clear the fixed header */
}

/* Mobile - header is shorter */
@media (max-width: 900px) {
    .incomplete-page-banner {
        margin-top: 20px;
    }
}

.incomplete-page-banner .banner-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    vertical-align: top;
}

.incomplete-page-banner .banner-icon {
    flex-shrink: 0;
    color: var(--c-accent-gold);
    font-size: 1.15rem;
    margin-top: 0px;
}

.incomplete-page-banner .banner-text {
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--c-muted);
    line-height: 1.4;
    margin-top: 2px;
    text-align: left;
}

.incomplete-page-banner .banner-text strong {
    color: var(--c-accent-gold);
    font-family: 'sofia sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-right: 2px;
}

.incomplete-page-banner .banner-text a {
    color: var(--c-accent-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.incomplete-page-banner .banner-text a:hover {
    color: var(--c-accent-gold);
}

.incomplete-page-banner .banner-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--c-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-s);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 0px;
}

.incomplete-page-banner .banner-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-accent-gold);
}

/* Hidden state */
.incomplete-page-banner.hidden {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .incomplete-page-banner {
        padding: 12px 15px;
    }

    .incomplete-page-banner .banner-inner {
        gap: 12px;
    }

    .incomplete-page-banner .banner-icon {
        font-size: 1.1rem;
    }

    .incomplete-page-banner .banner-text {
        font-size: 0.875rem;
    }

    .incomplete-page-banner .banner-text strong {
        display: block;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .incomplete-page-banner .banner-text {
        font-size: 0.8rem;
    }

    .incomplete-page-banner .banner-text strong {
        font-size: 0.85rem;
    }
}
