.help-widget {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    background-color: var(--clmc-bg-secondary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    min-height: 240px;
    --Paper-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    box-shadow: var(--Paper-shadow);
    overflow-x: clip;
}

.help-widget .help-widget-hero {
    width: auto;
    height: 238px;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    position: absolute;
    bottom: 24px;
    left: 700px;
    object-position: top;
}

.help-widget .help-widget-quick-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 0;
    gap: 1rem;
    padding: 1rem;
    z-index: 2;
}

.help-widget .help-widget-options {
    padding: .5rem 1rem;
    min-height: 36px;
    background-color: var(--clmc-bg-primary);
    z-index: 1;
}

.help-widget .help-widget-options .help-widget-options-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 648px;
    gap: 1rem;
}

.help-widget .help-widget-options .help-widget-options-buttons .help-button {
    max-width: 150px;
    width: 100%;
}

.help-widget .help-input {
    width: 100%;
    max-width: 648px;
}

aside.help-aside {
	width: 295px;
    height: 100svh;
	color: var(--clmc-bg-tertiary);
	background-color: var(--clmc-bg-primary);
    display: block;

    position: sticky;
    top: 92px; /* or your desired offset from the top */
    align-self: flex-start; /* if inside a flex container */
    z-index: 10;

    --Paper-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    box-shadow: var(--Paper-shadow);
}

aside.help-aside ul {
    display: flex;
    flex-direction: column;
}

aside.help-aside a {
    color: var(--clmc-bg-tertiary);
    text-decoration: none;
    padding: .5rem 0 .5rem 2.5rem;
    display: flex;
    transition: color .3s;
    position: relative;
    user-select: none;
}

aside.help-aside a:before {
    content: ' ';
    width: .5rem;
    height: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    position: absolute;
    transition: background-color .3s;
}

aside.help-aside a.clmc-active-menu-option {
    color: var(--clmc-bg-secondary);
    pointer-events: none;
}

aside.help-aside a:hover:before {
    opacity: .5;
}

aside.help-aside a:hover:before, aside.help-aside a.clmc-active-menu-option:before {
    background-color: var(--clmc-bg-secondary);
}

main.help-main {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.clmc-appBar.help-appbar > div {
    max-width: 100%;
}

.clmc-mobile-main-menu.help-mobile-menu .clmc-main-menu * {
    color: var(--clmc-bg-tertiary);
    text-decoration: none;
}

.clmc-mobile-main-menu.help-mobile-menu .clmc-main-menu a {
    transition: opacity .3s;
}

.clmc-mobile-main-menu.help-mobile-menu .clmc-main-menu a:not(.clmc-active-menu-option) {
    opacity: .7;
}

.clmc-mobile-main-menu.help-mobile-menu .clmc-main-menu a:hover {
    opacity: 1;
}

.clmc-mobile-main-menu.help-mobile-menu .clmc-main-menu a.clmc-active-menu-option {
    pointer-events: none;
}

.help-header-label {
    display: flex;
    align-items: center;
    height: 42px;
    border-left: 1px solid #ffffff80;
}

@media (max-width: 1150px) {
    aside.help-aside {
        display: none;
    }
}

@media (max-width: 730px) {
    .help-header-label {
        display: none;
    }
}