@charset "UTF-8";

body[data-page="home"] {
    --home-search-bottom: 1rem;
    --home-search-width: 52rem;
    --home-site-nav-bottom-space: 8rem;
    --home-search-line-width: 30rem;
    --home-search-pin-top: 6.15rem;
    --home-search-block-height: 4.75rem;
    --home-search-visible-height: 4.75rem;
    --home-quote-gap: clamp(2.8rem, 7vh, 5rem);
    --home-quote-reveal-y: 56px;
    --home-content-reveal-y: 72px;
    --home-reveal-progress: 0;
    --home-search-fade-progress: 0;
    --home-scroll-hint-progress: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body[data-page="home"] .Page {
    background: var(--bg);
}

body[data-page="home"] .PageMiddle {
    max-width: none;
    padding: 0;
}

.home_scroll_scene {
    position: relative;
    max-width: 100%;
    overflow-x: clip;
    background: var(--bg);
}

.home_search_pin {
    position: relative;
    z-index: 12;
    padding: var(--home-search-pin-top) 1.5rem 0;
}

.home_search_pin .search_shell {
    margin: 0 auto;
}

.home_entry {
    position: relative;
    max-width: 100%;
    min-height: calc(100dvh - var(--home-search-pin-top) - var(--home-search-block-height));
    display: flex;
    flex-direction: column;
    background: var(--bg);
}

.home_scroll_scene.is-reveal-active .home_search_pin {
    position: sticky;
    top: var(--home-search-pin-top);
    z-index: 24;
    height: 0;
    padding: 0 1.5rem;
    overflow: visible;
    pointer-events: none;
}

.home_scroll_scene.is-reveal-active .home_search_pin .search_shell {
    opacity: clamp(0, calc(1 - var(--home-search-fade-progress)), 1);
    transform: translate3d(0, calc(var(--home-search-fade-progress) * -1.8rem), 0) scale(calc(1 - (var(--home-search-fade-progress) * 0.04)));
    pointer-events: auto;
}

.home_scroll_scene.is-reveal-active .home_search_pin .search_shell.is-interaction-disabled {
    pointer-events: none;
}

.home_scroll_scene.is-reveal-active .home_entry {
    min-height: 100dvh;
}

.search_shell {
    position: relative;
    z-index: 3;
    width: min(100%, var(--home-search-width));
    display: grid;
    gap: 0.32rem;
    justify-items: center;
    transform-origin: center top;
    transition: opacity var(--ease), transform var(--ease);
    will-change: opacity, transform;
}

.search_engines {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid rgba(26, 26, 26, 0.14);
    background: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.search_engine {
    min-height: auto;
    padding: 0.45rem 1.15rem;
    border: 0;
    border-left: 1px solid rgba(26, 26, 26, 0.14);
    border-radius: 0;
    background: transparent;
    color: rgba(26, 26, 26, 0.64);
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    transition: border-color var(--ease), background var(--ease), color var(--ease);
}

.search_engine:first-child {
    border-left: 0;
}

.search_engine:hover {
    color: var(--ink);
    background: rgba(9, 176, 83, 0.06);
}

.search_engine.is-active {
    background: var(--accent);
    color: #fff;
}

.search {
    max-width: none;
    margin: 0 auto;
    padding: 0;
    width: min(100%, var(--home-search-line-width));
    background: transparent;
}

.search form {
    max-width: none;
    margin: 0;
    display: block;
    border: 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.35);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.search_text {
    display: block;
    width: 100%;
    min-height: 2.8rem;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--ink);
    font-size: 1rem;
}

.search_text:focus,
.search_text:focus-visible {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.search_text:-webkit-autofill,
.search_text:-webkit-autofill:hover,
.search_text:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--ink);
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 9999s ease-out 0s;
}

.search_text::placeholder {
    color: rgba(26, 26, 26, 0.45);
    font-size: 0.84rem;
}

.search_button {
    display: flex;
    align-items: center;
}

.search_submit {
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
}

.search_submit:hover {
    color: var(--accent);
}

.top_quot {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.8rem, 7vh, 5rem) 1.5rem 5.5rem;
    min-height: 0;
    text-align: center;
}

.home_scroll_scene.is-reveal-active .top_quot {
    padding-top: calc(var(--home-search-pin-top) + var(--home-search-visible-height) + var(--home-quote-gap));
}

.quot {
    width: min(100%, 62rem);
    display: grid;
    gap: 1.65rem;
    justify-items: center;
    transition: opacity 140ms linear, transform 140ms linear, filter 140ms linear;
    will-change: opacity, transform, filter;
}

.home_scroll_scene.is-reveal-active .quot {
    opacity: clamp(0, calc(1 - (var(--home-reveal-progress) * 1.12)), 1);
    transform: translate3d(0, calc(var(--home-reveal-progress) * var(--home-quote-reveal-y)), 0);
    filter: blur(calc(var(--home-reveal-progress) * 4px));
}

.quote-content {
    position: relative;
    width: 100%;
    max-width: 62rem;
}

.quote-content::before {
    content: none;
}

.quote-content p {
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 0.96;
    letter-spacing: -1px;
    color: var(--ink);
    text-indent: 1em;
    text-wrap: balance;
}

.quote-content[data-mode="hero"] p {
    display: block;
    text-wrap: balance;
}

.quote-initial {
    position: relative;
    display: inline-block;
}

.quote-initial::before {
    content: "\201C";
    position: absolute;
    top: -4.5rem;
    left: -1.8rem;
    font-family: var(--serif);
    font-size: clamp(7rem, 12vw, 11rem);
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.05);
    opacity: 0.5;
    pointer-events: none;
}

.quote-content[data-mode="quote"] p {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bold;
    line-height: 0.96;
    letter-spacing: -1px;
}

.quote-content[data-mode="quote"] .quote-initial::before {
    top: -3.25rem;
    left: -1.2rem;
    font-size: clamp(5.5rem, 8vw, 8rem);
}

.quote-author {
    white-space: nowrap;
}

.quote_anniu {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.refresh-button,
.quote_list_anniu {
    min-height: auto;
    padding: 0;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: rgba(26, 26, 26, 0.58);
    font-size: 0.75rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    transition: color var(--ease), border-color var(--ease);
}

.refresh-button:hover,
.quote_list_anniu:hover {
    transform: none;
    border-color: rgba(26, 26, 26, 0.18);
    background: transparent;
    color: var(--ink);
}

.refresh-button.loading,
.refresh-button:disabled {
    opacity: 0.45;
}

.middle_site {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-1rem);
    pointer-events: none;
    transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity var(--ease), transform var(--ease);
}

body.is-home-directory-open .top_quot {
    flex: 0 0 auto;
    justify-content: center;
    padding: 1.25rem 1.5rem 1.75rem;
}

body.is-home-directory-open .home_scroll_scene.is-reveal-active .top_quot {
    padding-top: calc(var(--home-search-pin-top) + var(--home-search-visible-height) + 1.2rem);
}

body.is-home-directory-open .quote-content {
    max-width: 52rem;
}

body.is-home-directory-open .quote-initial::before {
    top: -3.1rem;
    left: -1.15rem;
    font-size: clamp(4.5rem, 8vw, 6.5rem);
}

body.is-home-directory-open .middle_site {
    padding-top: clamp(1rem, 2.4vw, 1.65rem);
    padding-bottom: var(--home-site-nav-bottom-space);
    max-height: 120rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.is-home-directory-open .home_scroll_scene.is-reveal-active .middle_site {
    opacity: clamp(0, calc(1 - (var(--home-reveal-progress) * 1.08)), 1);
    transform: translate3d(0, calc(var(--home-reveal-progress) * 2.4rem), 0);
}

.site_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 auto 2rem;
    max-width: 68rem;
}

body.is-home-directory-open.is-home-directory-entering .site_nav {
    animation: siteDirectoryNavIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate {
    animation: siteDirectoryPillIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(1) { animation-delay: 20ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(2) { animation-delay: 45ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(3) { animation-delay: 70ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(4) { animation-delay: 95ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(5) { animation-delay: 120ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(6) { animation-delay: 145ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(7) { animation-delay: 170ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(8) { animation-delay: 195ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(9) { animation-delay: 220ms; }
body.is-home-directory-open.is-home-directory-entering .site_nav .site_cate:nth-child(10) { animation-delay: 245ms; }

body.is-home-directory-open.is-home-directory-entering .site_links {
    animation: siteDirectoryLinksIn 520ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

@keyframes siteDirectoryNavIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes siteDirectoryPillIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes siteDirectoryLinksIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site_cate {
    min-height: auto;
    padding: 0.6rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #e4e9ea;
    color: #5a6061;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.site_cate a {
    color: inherit;
    pointer-events: none;
}

.site_cate:hover,
.site_cate.is-active {
    transform: none;
    color: var(--ink);
    background: #dde4e5;
    border-color: transparent;
}

.site_cate.is-active {
    background: var(--accent);
    color: #fff;
}

.site_links {
    width: 100%;
    max-width: 80rem;
}

#top_links,
.site_urls {
    display: none;
}

#top_links.is-visible,
.site_urls.is-visible {
    display: block;
    animation: sitePanelFadeIn 420ms cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top center;
}

@keyframes sitePanelFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#top_links.is-visible .site_urls_title,
.site_urls.is-visible .site_urls_title {
    animation: sitePanelLabelIn 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#top_links.is-visible .site_url,
.site_urls.is-visible .site_url {
    animation: sitePanelItemIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#top_links.is-visible .site_url:nth-child(1),
.site_urls.is-visible .site_url:nth-child(1) { animation-delay: 30ms; }
#top_links.is-visible .site_url:nth-child(2),
.site_urls.is-visible .site_url:nth-child(2) { animation-delay: 60ms; }
#top_links.is-visible .site_url:nth-child(3),
.site_urls.is-visible .site_url:nth-child(3) { animation-delay: 90ms; }
#top_links.is-visible .site_url:nth-child(4),
.site_urls.is-visible .site_url:nth-child(4) { animation-delay: 120ms; }
#top_links.is-visible .site_url:nth-child(5),
.site_urls.is-visible .site_url:nth-child(5) { animation-delay: 150ms; }
#top_links.is-visible .site_url:nth-child(6),
.site_urls.is-visible .site_url:nth-child(6) { animation-delay: 180ms; }
#top_links.is-visible .site_url:nth-child(7),
.site_urls.is-visible .site_url:nth-child(7) { animation-delay: 210ms; }
#top_links.is-visible .site_url:nth-child(8),
.site_urls.is-visible .site_url:nth-child(8) { animation-delay: 240ms; }
#top_links.is-visible .site_url:nth-child(9),
.site_urls.is-visible .site_url:nth-child(9) { animation-delay: 270ms; }
#top_links.is-visible .site_url:nth-child(10),
.site_urls.is-visible .site_url:nth-child(10) { animation-delay: 300ms; }
#top_links.is-visible .site_url:nth-child(11),
.site_urls.is-visible .site_url:nth-child(11) { animation-delay: 330ms; }
#top_links.is-visible .site_url:nth-child(12),
.site_urls.is-visible .site_url:nth-child(12) { animation-delay: 360ms; }

@keyframes sitePanelLabelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sitePanelItemIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.site_urls_title {
    display: block;
    margin-bottom: 0.85rem;
    color: rgba(26, 26, 26, 0.62);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site_sub_urls {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.62rem;
}

.site_url {
    min-height: 0;
    display: flex;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.site_url_card {
    width: 100%;
    min-height: 6rem;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    padding: 0.5rem 0.82rem;
    border: 1px solid rgba(173, 179, 180, 0.14);
    background: var(--surface-strong);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: border-color var(--ease), background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.site_url:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.site_url:hover .site_url_card {
    transform: translateY(-3px);
    border-color: rgba(9, 176, 83, 0.32);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 248, 0.98));
    box-shadow: 0 12px 30px rgba(9, 176, 83, 0.12);
}

.site_url:hover .site_url_mark:not(.site_url_mark--image) {
    background: rgba(9, 176, 83, 0.12);
    color: var(--accent);
}

.site_url:hover .site_url_name {
    color: var(--accent-deep);
    font-weight: 600;
}

.site_url_card:focus-visible {
    outline: none;
    border-color: rgba(9, 176, 83, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 248, 0.98));
    box-shadow: 0 0 0 3px rgba(9, 176, 83, 0.12), 0 10px 24px rgba(9, 176, 83, 0.08);
}

.site_url_head {
    display: flex;
    align-items: center;
    gap: 0.48rem;
}

.site_url_mark {
    width: 1.68rem;
    height: 1.68rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--muted-soft);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background var(--ease), color var(--ease), transform var(--ease);
}

.site_url_mark--image {
    padding: 0.16rem;
    overflow: hidden;
    background: rgba(246, 247, 245, 0.96);
}

.site_url_icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.2rem;
}

.site_url_name {
    display: block;
    font-family: var(--serif);
    font-size: 0.74rem;
    font-weight: 400;
    line-height: 1.18;
    color: var(--ink);
    transition: color var(--ease);
}

.site_url_card:focus-visible .site_url_name {
    font-weight: 600;
}

.site_url_meta {
    margin: 0;
    color: var(--muted-soft);
    font-size: 9px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: calc(1em * 1.45 * 3);
    max-height: calc(1em * 1.45 * 3);
}

.site_url_meta.is-fallback {
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.to_wiki {
    position: absolute;
    left: 50%;
    bottom: max(1.85rem, env(safe-area-inset-bottom));
    z-index: 4;
    display: flex;
    justify-content: center;
    transform: translate(-50%, 0);
    pointer-events: none;
    user-select: none;
    transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home_scroll_scene.is-reveal-active .to_wiki {
    opacity: clamp(0, calc(1 - var(--home-scroll-hint-progress)), 1);
    transform: translate(-50%, calc(var(--home-scroll-hint-progress) * 18px));
}

.scroll_hint_preview {
    display: grid;
    justify-items: center;
    color: rgba(26, 26, 26, 0.58);
}

.scroll_hint_icon {
    display: grid;
    justify-items: center;
    align-items: center;
    color: inherit;
}

.scroll_hint_icon--arrow {
    position: relative;
    gap: 0.2rem;
    animation: scrollHintArrowFloat 2.8s ease-in-out infinite;
    filter: drop-shadow(0 0 0.35rem rgba(9, 176, 83, 0.12));
}

.scroll_hint_arrow_stem {
    position: relative;
    width: 2px;
    height: 1.18rem;
    background: currentColor;
    border-radius: 999px;
    opacity: 0.82;
}

.scroll_hint_arrow_tip {
    position: relative;
    width: 0.72rem;
    height: 0.72rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.96;
}

.scroll_hint_arrow_stem::after,
.scroll_hint_arrow_tip::after {
    content: "";
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.scroll_hint_arrow_stem::after {
    inset: 0;
    background: linear-gradient(180deg, rgba(132, 255, 184, 0.76) 0%, rgba(27, 223, 110, 1) 48%, rgba(7, 142, 67, 0.92) 100%);
    box-shadow: 0 0 0.6rem rgba(9, 176, 83, 0.58);
    clip-path: inset(0 0 100% 0);
    animation: scrollHintArrowSweep 2.8s ease-in-out infinite;
}

.scroll_hint_arrow_tip::after {
    inset: -2px;
    border-right: 2px solid rgba(132, 255, 184, 1);
    border-bottom: 2px solid rgba(132, 255, 184, 1);
    box-shadow: 0 0 0.65rem rgba(9, 176, 83, 0.5);
    clip-path: inset(0 0 100% 0);
    animation: scrollHintArrowSweep 2.8s ease-in-out infinite;
}

@keyframes scrollHintArrowFloat {
    0%,
    100% {
        opacity: 0.46;
        transform: translateY(0);
    }

    45% {
        opacity: 0.84;
        transform: translateY(0.45rem);
    }

    65% {
        opacity: 0.62;
        transform: translateY(0.22rem);
    }
}

@keyframes scrollHintArrowSweep {
    0%,
    18%,
    100% {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
    }

    34% {
        opacity: 0.72;
        clip-path: inset(0 0 68% 0);
    }

    47% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }

    62% {
        opacity: 0.92;
        clip-path: inset(42% 0 0 0);
    }

    78% {
        opacity: 0;
        clip-path: inset(100% 0 0 0);
    }
}

body.is-home-directory-open .to_wiki {
    opacity: 0;
    transform: translate(-50%, 0.9rem);
}

.tags {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw) 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.9rem 2.25rem;
    padding: 0 3rem 1.1rem;
    box-sizing: border-box;
    background: var(--bg-soft);
    border-top: 0;
    border-bottom: 1px solid rgba(173, 179, 180, 0.28);
}

.tags_column {
    display: contents;
}

.tags_column--left {
    display: contents;
}

.tags_divider {
    display: none;
}

.tag {
    display: inline-flex;
    align-items: center;
    color: #5a6061;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.2em;
    list-style: none;
}

.tag a {
    color: inherit;
    transition: color var(--ease);
}

.tag:hover a {
    color: var(--accent);
}

.wiki_content {
    background: var(--bg-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 3rem 6rem;
}

.home_scroll_scene.is-reveal-active .wiki_content {
    padding-top: calc(var(--home-search-visible-height) + 1.5rem);
}

.home_reveal_target {
    position: relative;
    transition: opacity 160ms linear, transform 180ms linear;
    will-change: opacity, transform;
}

.home_scroll_scene.is-reveal-active .home_reveal_target {
    opacity: clamp(0.12, calc(0.12 + (var(--home-reveal-progress) * 0.88)), 1);
    transform: translate3d(0, calc((1 - var(--home-reveal-progress)) * var(--home-content-reveal-y)), 0);
}

.archive_intro {
    max-width: 80rem;
    margin: 0 auto 6rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-end;
    gap: 2rem;
}

.archive_title_group {
    grid-column: 2;
    text-align: center;
}

.archive_eyebrow {
    display: block;
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.articles_title {
    display: block;
    margin-top: 0.45rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.875rem;
    letter-spacing: -0.04em;
}

.archive_count {
    grid-column: 3;
    justify-self: end;
    color: var(--muted-soft);
    font-size: 0.875rem;
    letter-spacing: -0.02em;
}

.top_articles {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(4rem, 6vw, 5.5rem);
    row-gap: 0;
}

.archive_column {
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 6vw, 5.75rem);
    min-width: 0;
}

.archive_column--right {
    padding-top: clamp(5.5rem, 7vw, 8rem);
    align-items: flex-end;
    text-align: right;
}

.archive_story {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(117, 124, 125, 0.35);
}

.archive_column--left .archive_story:nth-child(3n + 2) {
    margin-top: 2.1rem;
}

.archive_column--left .archive_story:nth-child(3n) {
    margin-top: 0.65rem;
}

.archive_column--right .archive_story:nth-child(3n + 1) {
    margin-top: 1.35rem;
}

.archive_column--right .archive_story:nth-child(3n + 2) {
    margin-top: 3rem;
}

.archive_column--right .archive_story:nth-child(3n) {
    margin-top: 0.35rem;
}

.archive_column--right .archive_story:first-child {
    margin-top: 0;
}

.archive_story_inner {
    display: block;
    min-width: 0;
    max-width: 100%;
}

.archive_story.has-visual .archive_story_inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.archive_column--right .archive_story.has-visual .archive_story_inner {
    flex-direction: row-reverse;
}

.archive_thumb {
    position: relative;
    width: 10rem;
    height: 8rem;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    padding: 0.8rem;
    overflow: hidden;
    background: #dde4e5;
}

.archive_thumb_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive_thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(9, 176, 83, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.04), rgba(26, 26, 26, 0.18));
}

.archive_thumb.has-image::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 18, 15, 0.02) 0%, rgba(10, 18, 15, 0.52) 100%),
        linear-gradient(135deg, rgba(9, 176, 83, 0.16), transparent 58%);
}

.archive_thumb.tone-1::before {
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.12), transparent 60%),
        linear-gradient(180deg, rgba(9, 176, 83, 0.08), rgba(9, 176, 83, 0.24));
}

.archive_thumb.tone-2::before {
    background:
        linear-gradient(135deg, rgba(9, 176, 83, 0.24), transparent 55%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.12));
}

.archive_thumb.tone-3::before {
    background:
        linear-gradient(135deg, rgba(66, 66, 66, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(9, 176, 83, 0.12), rgba(9, 176, 83, 0.2));
}

.archive_thumb_label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow: 0 1px 0.45rem rgba(0, 0, 0, 0.28);
}

.archive_story_body {
    flex: 1;
    min-width: 0;
}

.archive_story_meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.archive_column--right .archive_story_meta {
    flex-direction: row-reverse;
}

.article_kicker {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.article_meta {
    display: flex;
    gap: 1rem;
    color: var(--muted-soft);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.article_link {
    display: block;
    max-width: 100%;
    margin-bottom: 1rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.375;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: color var(--ease);
}

.archive_story:hover .article_link {
    color: var(--accent);
}

.article_excerpt {
    margin: 0;
    max-width: 100%;
    color: #5a6061;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.625;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-height: calc(0.875rem * 1.625 * 2);
    overflow: hidden;
}

@media (max-width: 1280px) {
    .site_sub_urls {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    body[data-page="home"] {
        --home-search-pin-top: 5.45rem;
    }

    .search_shell {
        width: min(100%, var(--home-search-width));
    }

    .top_quot {
        padding-bottom: 4.5rem;
    }

    body.is-home-directory-open .top_quot {
        padding-bottom: 2rem;
    }

    .site_sub_urls {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .top_articles {
        gap: 2.5rem;
    }

    .archive_story.has-visual .archive_story_inner,
    .archive_column--right .archive_story.has-visual .archive_story_inner {
        gap: 1.5rem;
    }
}

@media (max-width: 960px) {
    .tags {
        justify-content: center;
        gap: 0.9rem 1.35rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tags_column,
    .tags_column--left {
        display: contents;
    }

    .tags_divider {
        display: none;
    }

    .archive_intro {
        margin-bottom: 4rem;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        gap: 0.9rem;
    }

    .archive_title_group,
    .archive_count {
        grid-column: 1;
    }

    .archive_count {
        justify-self: center;
    }

    .top_articles {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .archive_column {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .archive_column .archive_story {
        margin-top: 0;
    }

    .archive_column--right {
        padding-top: 0;
        align-items: stretch;
        text-align: left;
    }

    .archive_column--right .archive_story_meta {
        flex-direction: row;
    }
}

@media (max-width: 720px) {
    body[data-page="home"] {
        --home-search-pin-top: 5.05rem;
        overflow-x: hidden;
    }

    .home_search_pin,
    .home_scroll_scene.is-reveal-active .home_search_pin {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tags {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .search_shell {
        gap: 0.28rem;
        max-width: 100%;
        min-width: 0;
    }

    .search_engines {
        width: 100%;
        max-width: 100%;
    }

    .search_engine {
        flex: 1 1 0;
        min-width: 0;
        padding-left: 0.72rem;
        padding-right: 0.72rem;
    }

    .search form {
        max-width: none;
        min-width: 0;
    }

    .search_submit {
        padding-left: 0.5rem;
        letter-spacing: 0.12em;
    }

    .top_quot {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        padding-bottom: 4rem;
    }

    body.is-home-directory-open .top_quot {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .to_wiki {
        bottom: max(1.25rem, env(safe-area-inset-bottom));
    }

    .scroll_hint_icon--arrow {
        gap: 0.14rem;
    }

    .scroll_hint_arrow_stem {
        height: 0.96rem;
    }

    .scroll_hint_arrow_tip {
        width: 0.62rem;
        height: 0.62rem;
    }

    .quote-content {
        max-width: min(100%, calc(100vw - 0.7rem));
    }

    .quote-content p {
        text-indent: 0;
        text-wrap: wrap;
        overflow-wrap: anywhere;
    }

    .quote-initial::before {
        top: -2.35rem;
        left: -0.8rem;
        font-size: clamp(5rem, 20vw, 7rem);
    }

    .quote_anniu {
        gap: 0.9rem;
    }

    .refresh-button,
    .quote_list_anniu {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    .middle_site {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 3rem;
    }

    .wiki_content {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: clip;
    }

    .site_nav {
        justify-content: flex-start;
    }

    .site_sub_urls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site_url_card {
        min-height: 5.9rem;
        padding: 0.5rem 0.75rem;
    }

    .article_link {
        font-size: 1.5rem;
        letter-spacing: 0;
        line-height: 1.34;
    }

    .archive_story,
    .archive_story_body,
    .article_link,
    .article_excerpt {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .archive_story.has-visual .archive_story_inner,
    .archive_column--right .archive_story.has-visual .archive_story_inner {
        flex-direction: column;
        max-width: 100%;
    }

    .archive_thumb {
        width: 100%;
        max-width: 100%;
        height: 9rem;
    }

    .article_meta {
        gap: 0.6rem;
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll_hint_icon--arrow {
        animation: none;
    }

    .scroll_hint_arrow_stem::after,
    .scroll_hint_arrow_tip::after {
        animation: none;
        opacity: 0;
    }

    .home_scroll_scene.is-reveal-active .home_search_pin .search_shell {
        transform: none;
    }

    .home_scroll_scene.is-reveal-active .quot,
    .home_scroll_scene.is-reveal-active .home_reveal_target,
    body.is-home-directory-open .home_scroll_scene.is-reveal-active .middle_site {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .home_scroll_scene.is-reveal-active .to_wiki {
        opacity: 0;
        transform: translate(-50%, 0.65rem);
    }

    .scroll_hint_preview {
        color: rgba(26, 26, 26, 0.34);
    }
}
