/* Widget: Full Viewport Banner */
.w-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--s-4);

    /* Optional: overflow handling if content is too tall */
    overflow: hidden;
}

/* Content Container for better control */
.w-banner-content {
    max-width: 800px;
    z-index: var(--z-above);
    /* Ensure it stays above background effects */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Styling */
.w-banner-logo {
    max-width: 150px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    /* Glow effect */
}