


html {
    --navigation-width: 265px;
    --color-primary: #2a6e99;
    --color-highlight: #d57a1f;
    --color-text: #403f57;

    --docsearch-searchbox-background: #eee !important;
    --docsearch-searchbox-shadow: inset 0 0 0 1px #ccc !important;
    --docsearch-primary-color: #403f57 !important;
    --docsearch-logo-color: #444 !important;
    --docsearch-footer-shadow: 0 -1px 0 #ccc !important;
    --docsearch-key-shadow: 0 0 0 1px rgba(0, 0, 0, .1) !important;
    --docsearch-key-gradient: linear-gradient(-35deg, #edf0f5, #f8f8f8) !important;

    --font-sans-serif: "Inter", sans-serif;

    scrollbar-gutter: stable;
}

.DocSearch-Modal .DocSearch-SearchBar {
    --docsearch-searchbox-shadow: none !important;
    border-bottom: 1px solid #ccc;
}

.DocSearch-Modal .DocSearch-Form {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.DocSearch-SearchBar {
    padding: 0 !important;
}

.DocSearch-Button {
    --docsearch-text-color: #aab;
}

.DocSearch-Button {
    width: 100%;
    margin-left: 0 !important;
    border-radius: 2px !important;
}

.DocSearch-MagnifierLabel {
    color: #aab !important;
}

body {
    margin: 0;
    font-family: var(--font-sans-serif);
    font-feature-settings: "case", "ccmp", "ss01", "ss02", "ss03";
    letter-spacing: -0.011em; /* https://rsms.me/inter/ */
    line-height: 1.55;
    background: linear-gradient(to bottom, #fff 0, #fff 220px, #f9f8f7 300px);
    overflow-y: scroll; /* prevent jumping on too short pages */
    color: var(--color-text);
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between;
}

.small-hint {
    font-size: 0.8125rem;
    letter-spacing: -0.003em;
    color: rgba(64, 62, 87, 0.8);
    margin: 0.5rem 0;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

code {
    font-family: "Source Code Pro", monospace;
    font-size: .875em; /* font is very large, this makes it about the size of the other texts */
    background-color: rgba(255, 255, 255, .3);
    padding: 3px 4px;
    margin: -3px 1px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, .1);
}

a code {
    color: rgba(17, 104, 191, 0.9);
    background-color: rgba(179, 222, 255, 0.2);
    border-color: rgba(19, 119, 222, .2);
}

pre {
    padding: 16px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    background: #fff;
    line-height: 1.45; /* prevent jumping before highlight */
    font-size: 14px;
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-wrap: break-word;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* because firefox requires it ... */
    white-space: pre-wrap;
}

pre > code {
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: inherit;
    line-height: 1.45;
    font-size: 14px;
}

a {
    color: #1376dd;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 10px 0;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

.logo, h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans-serif);
    font-weight: 800;
}

h1 {
    font-size: 2rem;
    padding: 0;
    margin: 0 0 4px 0;
    line-height: 1.25;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.375rem;
    padding: 0;
    margin: 32px 0 16px 0;
    line-height: 1.25;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    padding: 0;
    margin: 25px 0 16px 0;
}

h2 code, h3 code, h4 code, h5 code, h6 code {
    font-family: var(--font-sans-serif);
    font-size: inherit;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
}

.intro-start {
    display: flex;
    margin: 24px 0 32px 0;
    gap: 16px;
    max-width: 400px;
    align-items: center;
    justify-content: start;
}

body {
    background-image: radial-gradient(50% 50% at 25% 75%, #2a6e9911 0, hsla(0,0%,100%,0) 100%), radial-gradient(50% 50% at 75% 25%, #d57a1f11 0, hsla(0,0%,100%,0) 100%);
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: luminosity;
    overflow-x: hidden;
}

.radial {
    background-image: url("/National_Library/20161130034600oe_/https://amphp.org/asset/img/gear.svg");
    background-size: cover;
    opacity: 0.15;
    width: 300px;
    height: 300px;
    position: absolute;
    right: -120px;
    bottom: -180px;
    animation: 10s radial linear infinite;
    z-index: -1;
}

@keyframes radial {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.highlight-area-cta {
    flex: 0 0 auto;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    display: inline-block;
    background: var(--color-highlight);
    box-shadow: 0 0 0 3px rgba(214, 123, 32, 0.3);
    color: #fff;
    padding: 8px 24px;
    border-radius: 2px;
}

.highlight-area-cta .fa {
    margin-left: 4px;
    transition: 200ms transform;
    will-change: transform;
}

.highlight-area-cta:hover {
    text-decoration: none;
}

.highlight-area-cta:hover .fa {
    transform: translateX(4px);
}

#docsearch .DocSearch-Button {
    --docsearch-searchbox-background: #fff;
    height: 42px !important;
}

#docsearch .DocSearch-Button:hover,
#docsearch .DocSearch-Button:focus {
    box-shadow: none;
}

.DocSearch-Button-Key,
.DocSearch-Commands-Key {
    padding: 0 !important;
}

.DocSearch-Hit-source {
    color: var(--color-text) !important;
}

#top {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 199; /* below docsearch: 200 */
}

.search {
    padding: 0 1rem;
}

.navigation {
    position: fixed;
    left: 0;
    top: 81px;
    bottom: 0;
    width: var(--navigation-width);
    background: #fff;
    box-shadow: 1px 0 0 rgba(0, 0, 0, .1);
    z-index: 5;
    padding: 0;
    overflow-y: hidden;
    overflow-x: hidden;
}

/* Firefox */
.navigation {
    scrollbar-color: #aab;
    scrollbar-width: thin;
}

/* Chrome */
.navigation::-webkit-scrollbar {
    width: 2px;
}

.navigation::-webkit-scrollbar-track {
    background: #fff;
}

.navigation::-webkit-scrollbar-thumb {
    background: #aab;
    border-radius: 1px;
}

.navigation:hover {
    overflow-y: auto;
}

.navigation-scroll {
    width: var(--navigation-width);
}

.navigation a code {
    color: inherit;
    background: transparent;
}

#logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--color-text);
    letter-spacing: -0.025em;
    font-weight: 700;
    vertical-align: top;
    height: 60px;
    line-height: 60px;
    display: flex;
    gap: 16px;
    text-decoration: none;
    position: relative;
    padding: 0 1rem;
    justify-content: flex-start;
    margin-right: 4px;
}

.logo:hover {
    text-decoration: none;
}

.logo-img-container {
    width: 200px;
    height: 60px;
    padding: 0;
    margin: 0;
    position: relative;
    flex-shrink: 0;
}

.logo-img-container::before {
    position: absolute;
    left: -4px;
    top: -4px;
    border-radius: 50%;
    display: block;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 0 30px rgba(0, 0, 0, .05);
    content: '';
    z-index: -1;
    opacity: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    border: 0;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.logo-text {
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-self: center;
}

.logo-spacer {
    height: 8px;
}

.logo-description {
    font-size: 13.5px;
    color: var(--color-highlight);
}

#top-menu {
    padding: 8px;
}

.site-header {
    padding: 0.5rem 1rem;
}

.site-header .content {
    display: flex;
    justify-content: center;
}

#docsearch {
    min-height: 42px;
}

.site-wrapper {
    margin-left: var(--navigation-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-width {
    max-width: 950px;
    margin: 0 auto;
}

.content {
    padding: 32px;
    overflow-wrap: break-word;
}

.content em {
    font-style: italic;
}

.content img {
    max-width: 100%;
    margin: 16px 0;
}

.content .image-100 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content .image-80 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.content .image-60 {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.content-with-sidebar {
    display: flex;
    flex-direction: row-reverse;
}

.content-sidebar {
    width: 200px;
    flex-shrink: 0;
    margin-left: 32px;
    margin-top: 16px;
}

.content-main {
    flex-grow: 1;
}

.content-actions {
    font-size: 14px;
    margin-top: 8px;
}

.content-actions a {
    padding: 3px 0;
    margin: 0 4px;
    text-decoration: none;
    color: #789;
}

.content-actions a:last-child {
    margin-right: 0;
}

.content-actions a:hover {
    text-decoration: underline;
    border-color: rgba(0, 0, 0, .1);
    box-shadow: 0 0 4px rgba(0, 0, 0, .05);
    background-color: rgba(0, 0, 0, .02);
}

.content-actions a:focus {
    background-color: rgba(0, 0, 0, .02);
    border-color: rgba(0, 0, 0, .2);
}

.content-actions .fa {
    font-size: 14px;
    margin-right: 8px;
}

.article-content {
    padding-top: 16px;
    line-height: 1.625;
}

.sidebar-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-level-2 {
    padding-left: 16px;
}

.sidebar-menu a {
    font-weight: normal;
    color: #111;
}

.sidebar-level-2 a {
    color: #333;
}

.content table {
    border-collapse: collapse;
}

.content td,
.content th {
    border: 1px solid #ccc;
    padding: 8px;
}

.content td {
    vertical-align: top;
}

.block h2 {
    margin-top: 10px;
    padding-top: 0;
}

.mark {
    border: 2px solid #d00;
    border-radius: 4px;
    padding: 2px 6px;
    margin: -2px -6px;
}

.content .cols {
    margin: 20px 0;
}

.cols {
    display: flex;
}

.cols {
    align-items: flex-start;
}

.cols h3 {
    margin-top: 4px;
}

.cols > div {
    margin: 0 16px;
    flex: 1 1 0;
    max-width: 50%;
}

.cols > div:first-child {
    margin-left: 0;
}

.cols > div:last-child {
    margin-right: 0;
}

@media (max-width: 960px) {
    .cols:not(.cols-no-wrap) {
        display: block;
    }

    .cols:not(.cols-no-wrap) > div {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .cols:not(.cols-no-wrap) > div:first-child {
        margin-bottom: 20px;
    }

    .cols:not(.cols-no-wrap) > div:last-child {
        margin-top: 20px;
    }
}

.section-intro {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

#top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 8px;
    display: grid;
    gap: 8px;
}

#top-menu ul ul {
    gap: 0;
    padding: 0;
    border-left: 1px solid #ccc;
    display: none;
}

#top-menu ul ul.open {
    display: block;
}

.menu-section {
    font-family: var(--font-sans-serif);
    font-weight: bold;
    display: block;
    padding: 4px 12px;
    margin: 0 1px;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.menu-section::before {
    content: "\f105";
    position: absolute;
    display: block;
    left: 0;
    top: 7px;
    font: normal normal normal 14px/1 FontAwesome;
    text-align: center;
    transition: transform 200ms;
}

.menu-section.open::before {
    transform: rotate(90deg) translateY(2px);
}

.menu-item {
    display: block;
    padding: 4px 12px;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-decoration: none;
    font-weight: normal;
    align-items: center;
    color: #555;
    position: relative;
}

a.menu-item:hover {
    text-decoration: none;
    color: black;
}

a.menu-item:hover::before, a.menu-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 0 0 6px #fff;
    background: #d57a1f;
    transform: translate(-50%, -50%);
}

.menu-item-inactive:hover {
    border-color: transparent;
}

.menu-item code {
    box-shadow: none;
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 12px;
}

span.menu-item {
    opacity: 0.5;
}

.menu-item-version {
    color: #aaa !important;
}

.highlight-area .cols > div:first-child {
    max-width: 55%;
}

.highlight-area .cols > div:last-child {
    max-width: 45%;
}

.highlight-area .cols > div {
    align-self: center;
}

.highlight-area pre {
    margin: 0;
    background: transparent;
    border-color: transparent;
}

.highlight-area pre > code {
    padding: 0;
    font-size: 15px;
    background: transparent;
}

.help-bubble, .help-bubble::after {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color-highlight);
    position: relative;
    cursor: help;
}

.help-bubble::after {
    content: "";
    animation: help-bubble 1.5s infinite;
    position: absolute;
}

@keyframes help-bubble {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}

.card {
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    padding: 16px;
    margin: 32px 0;
}

.card:first-child {
    margin-top: 0;
}

.card:last-child {
    margin-bottom: 0;
}

.card h3 {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin: -16px -16px 10px -16px;
    padding: 10px 15px;
    font-family: var(--font-sans-serif);
    font-weight: normal;
}

.intro-button-area {
    text-align: right;
    margin-top: -25px;
    margin-right: 250px;
    height: 25px;
}

.intro-button-area > a {
    color: white;
    display: inline-block;
    padding: 10px 15px;
    border: 1px dashed rgba(255, 255, 255, .5);
    background-color: rgba(255, 255, 255, .05);
    border-radius: 4px;
    font-weight: normal;
}

.headline-link,
.headline-link a {
    font-weight: normal;
}

.headline-link .fa {
    margin-left: 8px;
    transition: 200ms transform;
    will-change: transform;
}

.headline-link:hover {
    text-decoration: none;
}

.headline-link:hover .fa {
    transform: translateX(4px);
}

.section-separator {
    border: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, .2);
    margin: 50px -32px;
}

.get-started-container {
    padding: 20px;
    text-align: center;
}

.get-started {
    font-size: 18px;
    font-weight: normal;
    padding: 10px 40px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, .1);
    display: inline-block;
    border-radius: 3px;
    background: #1376dd;
    color: white;
}

.get-started:hover {
    text-decoration: none;
    box-shadow: 0 0 100px rgba(0, 0, 0, .2) inset;
}

#footer {
    border-top: 2px solid rgba(0, 0, 0, .05);
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.footer-list, .footer-networking-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list-item {
    display: block;
    margin: 0;
}

#footer .fa {
    margin-right: 8px;
    opacity: .75;
}

#footer a {
    color: #555;
    font-weight: normal;
}

#footer a:hover {
    color: #1376dd;
    text-decoration: none;
}

.footer-columns, .footer-networking-list {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
}

.footer-columns + .footer-columns {
    margin-top: 24px;
}

.text-uppercase {
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .footer-columns {
        grid-auto-flow: row;
    }

    .footer-columns > div + div {
        margin-top: 24px;
    }

    .footer-networking-list {
        display: grid;
        grid-auto-flow: row;
        grid-auto-rows: 1fr;
    }
}

.note, .warning, .todo {
    margin: 16px 0;
    padding: 16px 16px 16px 60px;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, .1);
    position: relative;
    font-size: 0.8125rem;
    letter-spacing: -0.003em;
}

.note::before, .warning::before, .todo::before {
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    width: 47px;
    height: 100%;
    background-color: white;
    font: normal normal normal 14px/1 FontAwesome;
    text-align: center;
    line-height: 55px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-right: 0;
    box-shadow: 1px 0 3px -1px rgba(0, 0, 0, .1);
    border-radius: 3px 0 0 3px;
}

.note::before {
    color: #1376dd;
    content: "\f129";
}

.note, .note::before {
    border-color: #85b1de;
}

.warning::before {
    color: #de3614;
    content: "\f12a";
}

.warning, .warning::before {
    border-color: #de8f85;
}

.todo::before {
    color: #12c450;
    content: "\f11c";
}

.todo, .todo::before {
    border-color: #76c491;
}

.table-full-width {
    width: 100%;
}

.table-no-border, .table-no-border th, .table-no-border td {
    border: 0;
}

.table-text-center td, .table-text-center th {
    text-align: center;
}

.anchorjs-link {
    color: #1376dd;
    transition: all .25s linear;
}

.anchorjs-link:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, .6);
}

#search-box {
    padding-right: 0;
    position: relative;
    vertical-align: top;
}

#search {
    vertical-align: top;
    padding: 0 10px 0 30px;
    line-height: 30px;
    background: white;
    border: 0;
    margin: 0 3px 0 0;
    font-family: var(--font-sans-serif);
    font-size: 16px;
    font-weight: normal;
    width: 100%;
}

#search:hover {
    outline: 0;
}

#search:focus {
    outline: 0;
}

#search::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

*:hover > .anchorjs-link {
    margin-left: -1.125em !important;
}

#menu {
    display: none;
}

#sidebar-menu {
    display: none;
}

@media (min-width: 1025px) {
    .mobile-only {
        display: none;
    }
}

@media (max-width: 1024px) {
    html {
        --navigation-width: 100%;
    }

    .no-mobile {
        display: none;
    }

    .navigation {
        top: -1px;
        width: 100%;
        height: auto;
        position: relative;
        border-bottom: 0;
    }

    .site-wrapper {
        margin: 0;
    }

    .logo {
        height: 40px;
        padding-left: 0;
    }

    .logo-img-container {
        width: 133px;
        height: 40px;
    }

    .content {
        padding-left: 0;
        padding-right: 0;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    #menu-switch {
        text-align: center;
        width: 80px;
        height: 80px;
        justify-self: stretch;
        align-self: stretch;
        display: flex;
    }

    #menu-switch > label {
        justify-self: stretch;
        align-self: stretch;
        display: flex;
        cursor: pointer;
        padding: 0 24px;
    }

    #menu-switch > label > .fa {
        justify-self: stretch;
        align-self: center;
    }

    #top-menu {
        display: none;
        top: calc(40px + 2rem);
        left: 0;
        right: 0;
        bottom: 0;
        border-top: 1px solid rgba(0, 0, 0, .1);
    }

    #menu:checked ~ aside #top-menu {
        display: block;
    }

    #docsearch {
        max-width: none;
    }

    .content-with-sidebar {
        display: block;
    }

    .content-sidebar {
        width: 100%;
        margin: 30px 0;
    }

    .sidebar-menu-switch {
        border: 2px solid #def;
        border-radius: 4px;
        padding: 8px;
        display: block;
        text-align: center;
    }

    .sidebar-menu {
        display: none;
    }

    #sidebar-menu:checked ~ .sidebar-menu {
        display: block;
    }

    #sidebar-menu:checked ~ .sidebar-menu-switch {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sidebar-menu-switch-close {
        display: none;
    }

    #sidebar-menu:checked ~ .sidebar-menu-switch .sidebar-menu-switch-close {
        display: block;
    }

    #sidebar-menu:checked ~ .sidebar-menu-switch .sidebar-menu-switch-open {
        display: none;
    }

    .sidebar-menu li {
        border: 2px solid #def;
        border-top: 0;
    }

    .sidebar-menu a {
        padding: 8px;
        display: block;
    }

    .sidebar-menu li:last-child {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    #footer {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 1rem;
    }

    pre,
    pre > code {
        font-size: 0.75rem;
    }
}

h1:target, h2:target, h3:target, h4:target, h5:target, h6:target {
    animation: target-highlight 5s ease;
    -webkit-animation: target-highlight 5s ease;
}

@keyframes target-highlight {
    0% {
        color: var(--color-highlight);
    }
    50% {
        color: var(--color-highlight);
    }
    100% {
        color: black;
    }
}

@-webkit-keyframes target-highlight {
    0% {
        color: var(--color-highlight);
    }
    50% {
        color: var(--color-highlight);
    }
    100% {
        color: black;
    }
}

.business-sponsors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    justify-content: left;
}

.business-sponsors > div {
    margin: 0 20px 20px;
}

.business-sponsor {
    text-align: center;
}

.business-sponsor > h3 {
    margin-top: 0;
}

.business-sponsor > p {
    margin-bottom: 0;
}

img.sponsor-logo {
    max-width: 200px;
}

.other-sponsors a {
    font-weight: normal;
}

.sponsor-highlight > a {
    font-weight: bold;
}

.sponsor-button {
    margin: 16px 10px !important;
    text-align: left;
    max-width: none !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-both {
    clear: both;
}

.github-releases {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.github-release {
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15), 0 2px 8px rgba(0, 0, 0, .05);
    background: #ffffff;
}

.github-release-preview:hover {
    opacity: 1;
}

.github-release > h3 {
    display: flex;
    align-items: center;
    gap: 24px;
    line-height: 1;
    margin: 16px 0 8px 0;
}

.github-release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 0 12px 0;
    color: #555;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
}

.github-release-meta a {
    color: inherit;
    font-weight: normal;
}

.github-release-meta .fa {
    opacity: 0.65;
}

.github-release-body ul {
    list-style-type: disc;
    padding: 0 0 0 24px;
}

.github-release-revolt {
    margin: 0 !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #fdd837;
    cursor: help;
}

.github-release-v3 {
    margin: 0 !important;
    cursor: help;
}

.github-release-v2 {
    margin: 0 !important;
    cursor: help;
}

.badge {
    display: inline-block;
    border: 1px solid #ccc;
    font-size: 12px;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 100vw; /* https://stackoverflow.com/a/29966500/2373138 */
    font-family: var(--font-sans-serif);
}

.badge-preview {
    border-color: var(--color-highlight);
    background: #fafafa;
    color: var(--color-highlight);
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.article-intro {
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(64, 62, 87, 0.8);
    position: relative;
}

.article-intro p {
    margin: 0;
}

.article-header-image-container {
    max-width: 20% !important;
    padding: 0;
    margin: 0 2.5rem 0 5rem;
    align-self: center;
}


@media (max-width: 1024px) {
    .article-header {
        flex-direction: column;
    }

    .article-header-image-container {
        order: -1;
        margin: 16px 0;
        max-width: 80% !important;
    }

    .content {
        padding-top: 0;
    }
}

.shell {
    position: relative;
    margin-top: 16px;
}

.shell::before {
    content: "Shell";
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-highlight);
    font-weight: 800;
    font-size: smaller;
    padding: 2px 8px;
    top: -1px;
    left: 16px;
    position: absolute;
    border-radius: 100vh;
    transform: translateY(-50%);
}
