@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../font/outfit.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --brand: #05B98E;
    --brand-sec: #02fb8726;
    --bg: #ffff;
    --bg-sec: #f5f5f5;
    --text: #333;
    --text-sec: #666;
    --header-bg: #f5f5f5e6;
    --footer-bg: #f5f5f5;
    --trans: #0000000d;
    --trans-sec: #0000001a;
    --border: #ddd;
    --invert: none;
    --invert-color: var(--brand);
    --gap: 40px;
}

:root[dark] {
    --bg: #000;
    --bg-sec: #0e0e0e;
    --text: #ccc;
    --text-sec: #999;
    --header-bg: #0e0e0ecc;
    --footer-bg: #0e0e0e;
    --trans: #ffffff0d;
    --trans-sec: #ffffff1a;
    --border: #222;
    --invert: invert(100%);
    --invert-color: #FA4671;
}

::selection {
    color: #fff;
    background-color: var(--brand);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
    font-family: 'Outfit', "Pingfang SC", "Microsoft JhengHei", sans-serif;
}

html, body {
    height: 100%;
}

body {
    color: var(--text);
    background-color: var(--bg-sec);
    font-size: 16px;
}

li {
    list-style: none;
}

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    color: var(--brand);
}

img, svg {
    vertical-align: middle;
}

svg {
    width: 1em;
    height: 1em;
    min-width: 24px;
    min-height: 24px;
    fill: var(--text);
}

.btn {
    background: var(--text);
    color: var(--bg);
    padding: 0 0.8em;
    line-height: 40px;
    font-size: 16px;
    border: none;
}

.btn:hover {
    background: var(--brand);
}

#__nuxt {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

main.wrapper {
    background: var(--bg);
    padding: 50px;
    box-shadow: 0 2px 10px #0000000d;
}

main h1, main a.title {
    width: 100%;
    font-size: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main h1 svg:hover {
    fill: var(--brand);
}

main.error {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main.error .logo svg {
    width: 128px;
    height: 128px;
}

main.error .info {
    font-size: 36px;
    font-weight: bold;
}

main section:last-child, main .column:last-child {
    padding-bottom: 0;
    border: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1200px;
    gap: var(--gap);
}

.logo svg {
    width: 72px;
    height: 72px;
    fill: var(--brand);
    flex-shrink: 0;
}

.logo svg .dot {
    fill: var(--text);
}

.list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.list li > * {
    display: flex;
    gap: 20px;
    flex-direction: column;
}


.list li .cover {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background: var(--bg-sec);
    height: 260px;
}

.list li .cover img {
    object-fit: contain;
    max-width: 100%;
}


.list li .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.list li h2 {
    font-size: 24px;
    font-weight: 600;
}

.list li p {
    color: var(--text-sec);
    line-height: 1.6em;
}

.list li span {
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 5px;
}

.list li span svg {
    fill: var(--brand);
}

.list-networks {
    display: flex;
    gap: var(--gap);

}

.list-networks li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-networks img {
    max-width: 100%;
    filter: var(--invert);
    transition: filter 0.2s, background-color 0.2s;
}

.list-networks img::selection {
    background-color: var(--invert-color);
}

.column {
    display: flex;
    align-items: start;
    gap: var(--gap);
    border-bottom: 1px solid var(--border);
    padding-bottom: 50px;
    width: 100%;
}

.column > *:first-child {
    width: 260px;
    flex-shrink: 0;
}

.column h2 {
    font-weight: 600;
    font-size: 26px;
}

.column .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    line-height: 1.6em;
}

.column a {
    color: var(--brand);
    text-decoration: underline;
}

.column a:hover {
    color: var(--text);
}

.column .info strong {
    color: var(--brand);
}

.column .info h2 {
    font-size: 20px;
    font-weight: 500;
}

.column .info p {
    color: var(--text-sec);
}

.users {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: var(--gap);
}

.users li {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.users .title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.users .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--bg-sec);
    display: flex;
    align-items: center;
    justify-content: center;
}

.users .avatar svg {
    width: 96px;
    height: 96px;
    fill: var(--trans);
}

.users .avatar img {
    max-width: 100%;
    object-fit: cover;
}

.users span {
    color: var(--brand);
}

.users p {
    color: var(--text-sec);
    line-height: 1.6em;
}

.content {
    display: flex;
    gap: var(--gap);
    width: 100%;
}

.content aside {
    width: 260px;
    flex-shrink: 0;
}

article {
    line-height: 1.6em;
    flex: 1;
}

article h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: var(--gap);
    line-height: 1.4em;
}

article hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid var(--border);
}

article p {
    color: var(--text-sec);
    padding-bottom: 1.4em;
}

@media screen and (max-width: 1280px) {
    :root {
        --gap: 20px;
    }

    #__nuxt {
        padding-top: 80px;
    }

    main h1, main a.title {
        font-size: 30px;
    }

    .wrapper {
        width: 100%;
    }

    main.wrapper {
        padding: 20px;
    }

    .list {
        grid-template-columns: repeat(1, 1fr);
    }

    .column {
        flex-direction: column;
    }

    .list li h2 {
        font-size: 20px;
    }

    .cover img {
        width: 100%;
    }

    .content {
        flex-direction: column;
    }
}