html {
    --wk-dark-matter: #232323;
    --wk-link-blue: #0074e8;
    --wk-foggy: #c5e2ff;
}

[data-theme="dark"] body {
    background-color: var(--wk-dark-matter);
}

[data-theme="dark"] a:hover {
    color: var(--wk-foggy);
}

[data-theme="dark"] a:active {
    color: var(--wk-link-blue);
}

[data-theme="dark"] .bd-sidebar-primary,
[data-theme="dark"] .bd-sidebar-secondary {
    background-color: var(--wk-dark-matter);
}

[data-theme="dark"] .bd-header-article {
    background-color: var(--wk-dark-matter);
}

main footer.bd-footer-content {
    display: none;
}

footer .column svg {
    color: #333333;
}

html[data-theme="dark"] footer .column svg {
    color: #66cc66;
}

footer.wk-footer {
    border-radius: 50px;
    padding: 100px;
    font-size: 14px;
}

footer.wk-footer h2 {
    font-size: 28px;
    white-space: nowrap;
}

footer.wk-footer h3 {
    font-size: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

footer.wk-footer .container {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
}

footer.wk-footer .wk-link-farm.container {
    gap: 32px;
}

footer.wk-footer .column:first-child {
    flex-shrink: 20;
}

footer.wk-footer .column h3:first-child {
    margin-top: 0;
}

footer.wk-footer p {
    margin-bottom: 0;
}

footer.wk-footer .wk-real-footer.container {
    justify-content: space-between;
    margin-top: 16px;
}

footer .social-wrapper {
    margin-top: 40px;
}

footer.wk-footer .wk-real-footer p {
    display: inline-block;
    /* Design has right padding of copyright being 16px and the rest being 23px */
    margin: 0 16px 0 7px;
}

footer.wk-footer .wk-real-footer img {
    position: relative;
    top: -10px;
}

footer.wk-footer .request-demo-button {
    color: white;
    background-color: var(--wk-link-blue);
    border-radius: 16px;
    border: none;
    padding: 16px 24px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

footer .social-icons a {
    text-decoration: none;
    margin-right: 12px;
}

footer .social-icons svg {
    color: #0e0e0e;
}

html[data-theme="dark"] footer .social-icons svg {
    color: #ffffff;
}

footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

footer a {
    color: inherit;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Hide hamburger menu when navigation is expanded */
@media (min-width: 960px) {
    .header-article-items__start {
        display: none;
    }
}

input.form-control {
    padding-left: 36px;
}

/* RSS subscribe banner */
.changelog-rss-banner {
    margin-bottom: 1.5rem;
}
.changelog-rss-banner .rss-subscribe-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #f26522;
    border-radius: 0.4rem;
    color: #f26522;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition:
        background-color 0.15s,
        color 0.15s;
}
.changelog-rss-banner .rss-subscribe-link:hover {
    background-color: #f26522;
    color: #fff;
    text-decoration: none;
}
.changelog-rss-banner .rss-subscribe-link .material-icons-round {
    font-size: 1.1rem;
}

/* edge case for changelog */
#changelog ul > li > p {
    margin-bottom: 0.5rem;
}
#changelog section > ul > li {
    margin-bottom: 2rem;
}

/* changelog categories tags */
#changelog ul.changelog-categories {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}
#changelog ul.changelog-categories li {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 0.3rem;
    margin-right: 0.3rem;
    color: var(--pst-color-primary);
    border: 1px solid currentColor;
}
