/* ==========================================================================
   Work-in-Progress Banner
   Dismissible site-wide notice that the site is under active development.
   ========================================================================== */

.wip-banner {
    background: linear-gradient(90deg, #fff3cd 0%, #ffe8a1 100%);
    border-bottom: 2px solid #f0c040;
    color: #6b4c00;
    font-size: 0.9rem;
    width: 100%;
    /* No z-index elevation — banners live in normal page flow inside
       .app-layout so the sidebar (z-index: --z-fixed / 300) overlays them */
}

.wip-banner__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.wip-banner__inner i {
    color: #c07800;
    flex-shrink: 0;
}

.wip-banner__inner span {
    flex: 1;
}

.wip-banner__dismiss {
    background: none;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    color: #6b4c00;
    cursor: pointer;
    padding: 0 4px;
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.wip-banner__dismiss:hover {
    opacity: 1;
}
