.layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-top: 18px;
}

.content {
    padding: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 8px 0 22px;
}

.section h2 {
    font-family: 'Outfit';
    font-size: 28px;
    margin: 6px 0 10px;
    letter-spacing: -.2px;
    color: pink;
}

.section h3 {
    font-family: 'Outfit';
    font-size: 20px;
    margin: 18px 0 8px;
    padding: 20px 0 20px 0;
}

.section p,
.section li {
    font-family: 'Outfit';
    font-size: 18px;
}

.callout {
    margin: 14px 0;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.callout.note {
    border-left: 4px solid rgba(100, 160, 255, 0.9);
}

.callout.warn {
    border-left: 4px solid rgba(255, 140, 90, 0.95);
}

.callout strong {
    display: inline-block;
    margin-bottom: 6px;
}

pre {
    margin: 12px 0 0;
    padding: 14px;
    border-radius: 14px;
    overflow: auto;
}

code {
    font-family: JetBrainsMono, ui-monospace, monospace;
}

code.inline {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 95%;
}

.table {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-collapse: collapse;
}

.table th + th,
.table td + td {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.table th,
.table td {
    padding: 12px 12px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table th {
    font-family: 'Outfit';
    text-align: left;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.18);
    font-weight: 700;
}

.table td {
    font-family: 'Outfit';
    font-size: 17px;
}

.table tr:last-child td {
    border-bottom: 0;
}

.table tbody tr:last-child {
    border-bottom: 0;
}

details.details {
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
}

details.details summary {
    cursor: pointer;
    font-family: 'Outfit';
    color: var(--text);
}

hr.sep {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin: 22px 0;
}

@media (max-width: 980px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .toc {
        position: relative;
        top: 0;
    }
}

.heading {
    color: pink;
    text-align: center;
}
