aside.aside-hero-image:has(.cb-hero-panel) {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding-left: 5;
}

.cb-hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--color-slate-800, #1e293b);
    background: var(--color-slate-950, #020618);
    width: 100%;
    height: 100%;
    min-height: 420px;
}
.cb-hero-panel canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.cb-hero-panel .cb-wordmark-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding: 24px;
}
.cb-hero-panel h2 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-slate-50, #f8fafc);
    cursor: pointer;
    user-select: none;
    max-width: 14ch;
}
.cb-hero-panel .cb-rescramble {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Space Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-slate-400, #94a3b8);
    padding: 6px 4px;
    transition: color 0.15s;
}
.cb-hero-panel .cb-rescramble:hover {
    color: var(--color-sky-300, #7dd3fc);
}
@media (max-width: 768px) {
    .cb-hero-panel { display: none; }
}