@import url("https://fonts.googleapis.com/css2?display=block&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,600,0,0");

:root {
    --theme-color: #1d70b8;
    --theme-color-dark: #003078;
}

html {
    scroll-behavior: smooth;
    line-height: 1.5;
    font-family: system-ui;
    font-size: 17px;
}

body {
    margin: 0;
}

main {
    max-width: 800px;
    margin: 0 auto 8px;
    padding: 0 16px;
}

.tips {
    font-size: 14px;
    box-sizing: border-box;
    background-color: #d23636;
    display: block;
    line-height: 24.8px;
    padding: 8px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.tips:hover {
    color: white;
    text-decoration: none;
    text-underline-offset: .3em;
    filter: brightness(0.95);
}

.tips::after {
    content: 'arrow_outward';
    font-size: 20px;
    font-family: 'Material Symbols Outlined';
    vertical-align: bottom;
    line-height: 24.8px;
    display: inline-block;
}

* {
    overflow-wrap: break-word;
}

a {
    text-decoration: underline 1px;
    text-underline-offset: .3em;
    color: var(--theme-color);
}

a:hover {
    text-decoration-thickness: 3px;
    color: var(--theme-color-dark);
}

strong {
    font-weight: 600;
}

h1,
h2,
h3 {
    font-weight: 600;
}

blockquote {
    border-left: 0.25em solid #d2d2d7;
    color: #6E6E73;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    font-size: .875em;
}

blockquote a {
    font-weight: 600;
    font-size: 1rem;
}

summary {
    cursor: pointer;
    font-size: 20px;
    border-bottom: 1px solid #d2d2d7;
    margin: 0 0 8px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
}

summary:active {
    background-color: #f5f5f7;
}

details summary::-webkit-details-marker,
details summary::marker {
    content: '';
    display: none;
    color: white;
}

summary::after {
    color: #86868b;
    content: 'expand_more';
    transition: transform 300ms ease;
    font-size: 32px;
    font-family: 'Material Symbols Outlined';
    font-feature-settings: 'liga';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

details[open] summary::after {
    transform: rotateX(180deg) translateY(50%);
}

.expand_all {
    background-color: transparent;
    color: var(--theme-color);
    border: 0;
    line-height: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
}

.expand_all:hover {
    color: var(--theme-color-dark);
}

.expand_all>* {
    vertical-align: bottom;
    line-height: 42px;
}

#learn-more h2 {
    margin-bottom: 0;
}

#learn-more ul {
    padding-left: 0;
    list-style: none;
}

.buttons {
    margin-top: 8px;
    font-size: 0;
}

.buttons a {
    box-sizing: border-box;
    margin: 6px;
    width: calc(50% - 6px);
    font-size: 1rem;
    border-radius: 8px;
    display: inline-block;
    padding: 0 1rem;
    background-color: #f5f5f7;
    line-height: 50px;
    text-decoration: none;
    color: black;
    overflow: hidden;
    font-weight: 600;
}

.buttons a:active {
    background-color: #d7d7d9;
}

.buttons a span {
    vertical-align: middle;
}

.buttons a span:first-child {
    margin-right: 8px;
    max-width: 24px;
}

.buttons a:nth-child(odd) {
    margin-left: 0;
}

.buttons a:nth-child(even) {
    margin-right: 0;
}

.tk-footer {
    display: none;
}

.tk-submit-action-icon.__markdown {
    display: none;
}