body {
    .sidebar-container {
        width: 20em;
    }
}

.content {
    width: calc(46em + 150px);
}

section.docs-tile {
    border: 1px solid var(--color-background-border);
    border-radius: 8px;
    background: var(--color-background-secondary);
    padding: 1.25rem 1.75rem;
    margin: 0;
    box-shadow: 0 0.1rem 0.35rem rgba(0, 0, 0, 0.06);
}

section.docs-tile h1 {
    margin-top: 0;
    font-size: 1.25rem;
}

article[role="main"]:has(.docs-tile) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

article[role="main"]:has(.docs-tile) > :not(.docs-tile) {
    grid-column: 1 / -1;
}

@media (max-width: 700px) {
    article[role="main"]:has(.docs-tile) {
        grid-template-columns: 1fr;
    }
}

.indented-bullets {
    margin-left: 1rem;
}

section.docs-tile .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

p {
    text-align: justify !important;
}

.api-ref p {
  text-align: left !important;
}

table {
    width: 100%;
}

button {
    background-color: #09487e;
    border: none;
    border-radius: 0.5em;
    color: white;
    padding: 0.5em 1em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.3em;
    margin: 0.5em 0.5em;
    cursor: pointer;
    width: 95%;
}

.video-center {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}
.video-center video {
    width: 100%;
    height: auto;
    display: block;
}
