/* Min Flow — 编辑排版 + 不对称摄影网格 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.theme-min-flow {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --faint: #aaaaaa;
    --border: #eeeeee;
    --zone-muted: #f7f7f7;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font: ui-sans-serif, system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;

    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 顶部：物理气泡 — 跟随指针 / 破开 / 间歇上浮 */
.theme-min-flow .bubble-stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    pointer-events: none;
    z-index: 100;
    overflow: visible;
}

.theme-min-flow .bubble-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.theme-min-flow .shell {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(2.75rem, 6vh, 3.25rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 6vh, 4rem);
}

.theme-min-flow .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(2rem, 4vh, 2.75rem);
}

.theme-min-flow .logo {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--faint);
}

.theme-min-flow .nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 1;
    min-width: 0;
}

.theme-min-flow .nav a,
.theme-min-flow .nav button {
    font: inherit;
    font-size: 0.8125rem;
    color: var(--muted);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    transition: color 0.2s;
}

.theme-min-flow .nav a:hover,
.theme-min-flow .nav button:hover { color: var(--text); }

.theme-min-flow .page-body {
    display: flex;
    flex-direction: column;
}

.theme-min-flow .intro::after {
    content: '';
    display: table;
    clear: both;
}

.theme-min-flow .avatar-float {
    float: right;
    width: 80px;
    height: 80px;
    margin: 0 0 0.75rem 1.25rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.theme-min-flow .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-min-flow .avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: var(--faint);
    font-size: 1.25rem;
}

.theme-min-flow h1 {
    font-size: clamp(2.5rem, 7vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin-bottom: 0.45rem;
}

.theme-min-flow .sub {
    font-size: 0.875rem;
    color: var(--faint);
    margin-bottom: 1rem;
}

.theme-min-flow .bio {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 100%;
}

.theme-min-flow .bio-dream {
    white-space: nowrap;
    width: max-content;
    max-width: 100%;
    letter-spacing: -0.015em;
}

@media (max-width: 680px) {
    .theme-min-flow .bio-dream {
        white-space: normal;
        width: auto;
        font-size: 0.9375rem;
    }
}

.theme-min-flow .bio p + p { margin-top: 0.7rem; }

.theme-min-flow .section-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
    margin: 2rem 0 0.5rem;
}

.theme-min-flow .site-rows {
    display: flex;
    flex-direction: column;
}

.theme-min-flow .site-row {
    --mx: 0px;
    --my: 0px;
    display: block;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    position: relative;
    transform: translate(var(--mx), var(--my));
}

.theme-min-flow .site-row:first-child {
    border-top: 1px solid var(--border);
}

.theme-min-flow .site-row-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.theme-min-flow .site-row h3 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
    transition: letter-spacing 0.4s var(--ease);
}

.theme-min-flow .site-row:hover h3 {
    letter-spacing: 0.01em;
}

.theme-min-flow .site-row p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

.theme-min-flow .arrow-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--faint);
    transition: background 0.35s var(--ease), color 0.35s, border-color 0.35s, transform 0.45s var(--ease);
}

.theme-min-flow .site-row:hover .arrow-wrap {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: rotate(-45deg);
}

.theme-min-flow .site-row .underline-track {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    background: var(--text);
    transition: width 0.55s var(--ease);
}

.theme-min-flow .site-row:hover .underline-track {
    width: 100%;
}

/* 照片墙上方：英文慢滚 */
.theme-min-flow .marquee-wrap {
    overflow: hidden;
    margin: clamp(2rem, 4vh, 2.5rem) 0 0;
    opacity: 0.28;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.theme-min-flow .marquee {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--faint);
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* —— 摄影：不规则拼贴（固定高度，无缝隙、不溢出） —— */
.theme-min-flow .photo-gallery {
    margin-top: clamp(1.5rem, 3vh, 2rem);
    margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
    padding-top: 0;
    clear: both;
    position: relative;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
}

.theme-min-flow .gallery-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.125rem;
}

.theme-min-flow .gallery-tools {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.theme-min-flow .gallery-label,
.theme-min-flow .jottings-foot h2 {
    font-size: 0.875rem;
    font-weight: 500;
}

.theme-min-flow .gallery-label {
    letter-spacing: 0.06em;
    color: #d0d0d0;
}

.theme-min-flow .gallery-count {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: #e5e5e5;
    font-variant-numeric: tabular-nums;
}

.theme-min-flow .gallery-refresh {
    width: 28px;
    height: 28px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: #c8c8c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.35s var(--ease), background 0.25s var(--ease);
}

.theme-min-flow .gallery-refresh:hover,
.theme-min-flow .gallery-refresh:focus-visible {
    color: var(--text);
    border-color: #d8d8d8;
    background: var(--bg);
    transform: rotate(35deg);
    outline: none;
}

.theme-min-flow .gallery-refresh.is-loading {
    pointer-events: none;
    animation: gallery-refresh-spin 0.8s linear infinite;
}

@keyframes gallery-refresh-spin {
    to { transform: rotate(360deg); }
}

.theme-min-flow .gallery-loading,
.theme-min-flow .gallery-fallback {
    grid-column: 1 / -1;
    font-size: 0.8125rem;
    color: var(--faint);
    padding: 2rem 0;
    text-align: center;
}

.theme-min-flow .gallery-mosaic {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.22s var(--ease), filter 0.22s var(--ease);
}

.theme-min-flow .gallery-mosaic.is-preparing {
    filter: saturate(0.92);
}

.theme-min-flow .gallery-mosaic.is-leaving,
.theme-min-flow .gallery-mosaic.is-entering {
    opacity: 0;
}

.theme-min-flow .gallery-row {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    min-width: 0;
}

.theme-min-flow .photo-cell {
    flex: var(--photo-flex, 1) 1 0;
    aspect-ratio: var(--photo-flex, 1);
    max-height: 380px;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background: var(--placeholder-color, #f6f6f6);
    min-width: 0;
    line-height: 0;
    position: relative;
}

.theme-min-flow .photo-cell.is-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    background:
        linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 70%),
        var(--placeholder-color, #f4f4f4);
    background-size: 220% 100%, 100% 100%;
    animation: gallery-placeholder-sheen 1.25s ease-in-out infinite;
}

.theme-min-flow .photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    transition: opacity 0.35s var(--ease), transform 0.5s var(--ease);
}

.theme-min-flow .photo-cell.is-loaded img {
    opacity: 1;
}

.theme-min-flow .photo-cell.is-missing::before {
    animation: none;
    opacity: 0.72;
}

.theme-min-flow .photo-cell:hover img {
    transform: scale(1.015);
}

@keyframes gallery-placeholder-sheen {
    0% { background-position: 160% 0, 0 0; }
    100% { background-position: -60% 0, 0 0; }
}

/* 4 张 · a：左高 + 右二 + 底宽 */
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="a"] {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr 0.78fr;
}

.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="a"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="a"] .photo-cell:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="a"] .photo-cell:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="a"] .photo-cell:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }

/* 4 张 · b：顶宽 + 底三 */
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="b"] {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1.15fr 0.85fr;
}

.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="b"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 2 / 4; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="b"] .photo-cell:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="b"] .photo-cell:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="b"] .photo-cell:nth-child(4) { grid-area: 2 / 3 / 3 / 4; }

/* 4 张 · c：左二 + 右高 + 底宽 */
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="c"] {
    grid-template-columns: 0.42fr 0.58fr;
    grid-template-rows: 0.9fr 0.9fr 0.75fr;
}

.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="c"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="c"] .photo-cell:nth-child(2) { grid-area: 1 / 2 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="c"] .photo-cell:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
.theme-min-flow .gallery-mosaic[data-count="4"][data-variant="c"] .photo-cell:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }

/* 5 张 · a：左高 + 右二 + 底二 */
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="a"] {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr 0.85fr;
}

.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="a"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="a"] .photo-cell:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="a"] .photo-cell:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="a"] .photo-cell:nth-child(4) { grid-area: 3 / 1 / 4 / 2; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="a"] .photo-cell:nth-child(5) { grid-area: 3 / 2 / 4 / 3; }

/* 5 张 · b：顶宽 + 下左竖 + 下右二 */
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="b"] {
    grid-template-columns: 0.9fr 1.05fr 0.9fr;
    grid-template-rows: 1.05fr 0.95fr 0.95fr;
}

.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="b"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 2 / 4; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="b"] .photo-cell:nth-child(2) { grid-area: 2 / 1 / 4 / 2; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="b"] .photo-cell:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="b"] .photo-cell:nth-child(4) { grid-area: 2 / 3 / 3 / 4; }
.theme-min-flow .gallery-mosaic[data-count="5"][data-variant="b"] .photo-cell:nth-child(5) { grid-area: 3 / 2 / 4 / 4; }

/* 6 张 · a：左高 + 右四格 + 底宽 */
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] {
    grid-template-columns: 1.05fr 0.95fr 0.95fr;
    grid-template-rows: 1fr 1fr 0.82fr;
}

.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] .photo-cell:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] .photo-cell:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] .photo-cell:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] .photo-cell:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="a"] .photo-cell:nth-child(6) { grid-area: 3 / 1 / 4 / 4; }

/* 6 张 · b：顶三 + 中高宽 + 底二 */
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 0.95fr 1.1fr 0.85fr;
}

.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] .photo-cell:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] .photo-cell:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] .photo-cell:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] .photo-cell:nth-child(4) { grid-area: 2 / 1 / 3 / 3; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] .photo-cell:nth-child(5) { grid-area: 3 / 1 / 4 / 2; }
.theme-min-flow .gallery-mosaic[data-count="6"][data-variant="b"] .photo-cell:nth-child(6) { grid-area: 2 / 3 / 4 / 4; }

/* —— Jottings 底栏：留白加大 —— */
.theme-min-flow .page-lower {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: clamp(3.25rem, 7vh, 4.5rem) clamp(1rem, 3vw, 1.75rem) 0;
    margin-left: clamp(-1rem, -3vw, -1.75rem);
    margin-right: clamp(-1rem, -3vw, -1.75rem);
    padding-left: clamp(1rem, 3vw, 1.75rem);
    padding-right: clamp(1rem, 3vw, 1.75rem);
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--zone-muted) 0%, var(--bg) 180px);
}

.theme-min-flow .jottings-foot {
    max-width: 880px;
    margin: 0 auto;
}

.theme-min-flow .jottings-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.theme-min-flow .jottings-foot h2 {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8b8b8;
    margin: 0;
}

.theme-min-flow .jottings-refresh {
    width: 28px;
    height: 28px;
    border: 1px solid #e9e9e9;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    color: #c8c8c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.35s var(--ease), background 0.25s var(--ease);
}

.theme-min-flow .jottings-refresh:hover,
.theme-min-flow .jottings-refresh:focus-visible {
    color: var(--text);
    border-color: #d8d8d8;
    background: var(--bg);
    transform: rotate(35deg);
    outline: none;
}

.theme-min-flow .jottings-refresh.is-loading {
    pointer-events: none;
    animation: gallery-refresh-spin 0.8s linear infinite;
}

.theme-min-flow .jottings-desc {
    font-size: 0.6875rem;
    color: #c8c8c8;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 2.25rem;
}

.theme-min-flow .update-log {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.theme-min-flow .log-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.theme-min-flow .log-item {
    padding: 0 0 1.15rem;
    margin: 0 0 1.15rem;
    border-bottom: 1px solid #ebebeb;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    transition-delay: var(--log-delay, 0s);
}

.theme-min-flow .log-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.theme-min-flow .log-item:first-child {
    padding-top: 0;
}

.theme-min-flow .log-date {
    font-size: 0.6875rem;
    color: #c8c8c8;
    margin-bottom: 0.35rem;
    font-variant-numeric: tabular-nums;
}

.theme-min-flow .log-content {
    font-size: 0.8125rem;
    color: #888888;
    line-height: 1.65;
    white-space: pre-line;
}

.theme-min-flow .loading {
    color: var(--faint);
    font-size: 0.875rem;
    padding: 0.75rem 0;
}

.theme-min-flow .site-footer {
    max-width: 880px;
    margin: clamp(3rem, 6vh, 4rem) auto 0;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}

.theme-min-flow .footer-copy {
    font-size: 0.75rem;
    color: var(--faint);
    margin: 0;
}

.theme-min-flow .footer-beian {
    font-size: 0.75rem;
    color: var(--faint);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 0.5rem;
}

.theme-min-flow .footer-beian a {
    color: var(--faint);
    text-decoration: none;
    transition: color 0.2s;
}

.theme-min-flow .footer-beian a:hover { color: var(--muted); }
.theme-min-flow .footer-sep { color: #dddddd; }

.theme-min-flow .footer-gongan {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.theme-min-flow .footer-gongan img {
    display: block;
    opacity: 0.75;
}

.theme-min-flow .toast {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    padding: 0.6rem 0.95rem;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 0.8125rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.3s var(--ease);
    transform: translateY(-6px);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.theme-min-flow .toast.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.theme-min-flow .toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
}

@media (min-width: 768px) {
    .theme-min-flow .avatar-float {
        width: 88px;
        height: 88px;
    }

    .theme-min-flow .update-log {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .theme-min-flow .update-log {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .theme-min-flow .gallery-mosaic {
        height: auto;
    }
}

@media (max-width: 520px) {
    .theme-min-flow .avatar-float {
        float: none;
        margin: 0 0 1.25rem;
    }

    .theme-min-flow .site-row p {
        display: none;
    }
}

@media (hover: none), (pointer: coarse) {
    .theme-min-flow .site-row {
        transform: none !important;
        transition: background 0.2s var(--ease);
    }

    .theme-min-flow .site-row:hover h3 {
        letter-spacing: -0.03em;
    }

    .theme-min-flow .site-row:hover .arrow-wrap {
        background: transparent;
        color: var(--faint);
        border-color: var(--border);
        transform: none;
    }

    .theme-min-flow .site-row:hover .underline-track {
        width: 0;
    }

    .theme-min-flow .site-row:active {
        background: #fafafa;
    }

    .theme-min-flow .photo-cell:hover img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-min-flow .marquee {
        animation: none;
    }

    .theme-min-flow .bubble-stage {
        height: 48px;
    }

    .theme-min-flow .log-item { opacity: 1; transform: none; }
    .theme-min-flow .site-row { transform: none; }
    .theme-min-flow .photo-cell:hover img { transform: none; }
    .theme-min-flow .photo-cell.is-placeholder::before { animation: none; }
    .theme-min-flow .gallery-mosaic { transition: none; }
}

/* ---- 个人简介换行 ---- */
.theme-min-flow #heroDescription {
    white-space: pre-line;
}
