aside.sidebar {
    top: 0;
    height: 100dvh;
    padding: 10px;
    overflow: auto;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
}

.sidebar .logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

nav ul {
    list-style: none;
    margin-top: 20px;
    padding: 10px;
    display: grid;
    gap: 10px;
}

nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 15px;
    transition: .15s;
    color: inherit;
}

nav a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--point);
    box-shadow: 0 0 0 3px rgba(122, 128, 154, .18);
    flex-shrink: 0;
}

nav a:hover {
    color: var(--pink);
}

nav a.active {
    background: var(--pink);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 77, 109, .25);
}

nav a.active::before {
    background: white;
}

.sidebar .bottom-section {
    margin-top: auto;
    padding: 10px;
    overflow: auto;
    display: grid;
    gap: 10px;
    color: white;
    border-top: 1px solid #444;
    margin-bottom: 50px;
    text-align: center;
}

.sidebar .bottom-section p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 20px;
}