/*
 * Theme Name: Simple
 * Theme URI: https://lhcy.org/archives/174.html
 * Author: Lin Hai
 * Author URI: https://lhcy.org
 * Description: A simplest blog & diary theme.
 * Version: 1.0.0
 *
 * Write is based on ydmini zblogphp theme.
 */

@charset "utf-8";

:root {
    --color-bg: #fcfcfb;
    --color-text: #444;
    --color-text-soft: #6b7280;
    --color-meta: #7c8798;
    --color-accent: #153279;
    --color-accent-soft: #2f4f6f;
    --color-border: #d9e1ee;
    --color-border-soft: #e8edf5;
    --color-surface: #ffffff;
    --color-surface-soft: #f7f9fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

::selection {
    background: var(--color-accent-soft);
    color: #fff;
}

::-moz-selection {
    background: var(--color-accent-soft);
    color: #fff;
}

body,
button,
input,
select,
textarea {
    font-family: "LXGW WenKai Screen", "LXGW WenKai", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.95;
}

article,
aside,
footer,
header,
main,
nav,
section {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, transform 0.28s ease;
}

a:hover {
    color: var(--color-accent-soft);
}

p,
ul,
ol,
dl,
table,
blockquote,
pre {
    margin: 0 0 1.15rem;
}

ul,
ol {
    padding-left: 1.35rem;
}

li + li {
    margin-top: 0.4rem;
}

blockquote {
    padding: 0.2rem 0 0.2rem 1rem;
    border-left: 2px solid var(--color-border);
    color: var(--color-text-soft);
}

code,
kbd,
pre,
samp {
    font-family: "SFMono-Regular", Consolas, Monaco, "Courier New", monospace;
}

code {
    padding: 0.12rem 0.35rem;
    border-radius: 4px;
    background: var(--color-surface-soft);
    font-size: 0.92em;
    color: var(--color-accent);
}

pre {
    overflow-x: auto;
    padding: 1rem 1.1rem;
    border: 1px solid var(--color-border-soft);
    border-radius: 10px;
    background: var(--color-surface-soft);
    line-height: 1.7;
}

pre code {
    padding: 0;
    background: transparent;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th,
td {
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid var(--color-border-soft);
    text-align: left;
}

hr {
    border: 0;
    border-top: 1px solid var(--color-border-soft);
    margin: 2rem 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 28px;
}

.site-header {
    padding: 2.4rem 0 0;
}

.site-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.site-header-side {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding-top: 0.2rem;
}

.site-branding {
    min-width: 0;
}

.site-title {
    display: inline-block;
    color: var(--color-text);
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: 0.06em;
}

.site-title:hover {
    color: var(--color-text);
    transform: translateY(-1px);
}

.site-description {
    margin-top: 0.45rem;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.85;
    letter-spacing: 0.03em;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.toggle-menu,
.toggle-search,
.site-search button,
button.button {
    appearance: none;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-accent);
    font-size: 0.92rem;
    line-height: 1;
}

.toggle-menu,
.toggle-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.8rem;
}

.toggle-menu {
    display: none;
}

.site-nav-wrap {
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.site-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav-list li {
    margin: 0;
    display: flex;
    align-items: center;
}

.site-nav-list a,
.toggle-search {
    color: var(--color-text);
    font-size: 0.98rem;
    letter-spacing: 0.04em;
}

.site-nav-list a {
    position: relative;
    padding: 0.15rem 0;
}

.site-nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 1px;
    background: rgba(21, 50, 121, 0.42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.site-nav-list a.current,
.site-nav-list a:hover,
.toggle-search:hover {
    color: var(--color-accent);
}

.site-nav-list a.current::after,
.site-nav-list a:hover::after {
    transform: scaleX(1);
}

.site-search-panel {
    display: none;
    padding: 0.9rem 0 0.3rem;
}

.site-search {
    display: flex;
    gap: 0.7rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-border-soft);
}

.site-search input {
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.95rem;
    outline: none;
}

.site-search input:focus,
#comment-form input:focus,
#comment-form textarea:focus {
    border-color: rgba(21, 50, 121, 0.34);
    box-shadow: 0 0 0 3px rgba(21, 50, 121, 0.08);
}

.site-search button,
button.button {
    padding: 0 1rem;
    background: var(--color-surface);
}

.site-search button:hover,
button.button:hover,
.toggle-menu:hover,
.toggle-search:hover {
    border-color: rgba(21, 50, 121, 0.24);
    color: var(--color-accent);
}

.site-main {
    padding: 1.6rem 0 3.4rem;
}

.main-body {
    min-height: 40vh;
}

.post-stream {
    display: block;
}

.post-card {
    position: relative;
    padding: 1.5rem 0 1.7rem;
    border-bottom: 1px solid var(--color-border-soft);
    opacity: 0;
    transform: translateY(18px);
    animation: cardFadeIn 0.7s ease forwards;
}

.post-card:nth-child(2) { animation-delay: 0.08s; }
.post-card:nth-child(3) { animation-delay: 0.16s; }
.post-card:nth-child(4) { animation-delay: 0.24s; }
.post-card:nth-child(5) { animation-delay: 0.32s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card:first-child {
    padding-top: 0;
}

.post-card-title {
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 1.42rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.post-card-title a {
    color: #153279;
    flex: 1 1 auto;
    min-width: 0;
}

.post-card-title a:hover {
    color: var(--color-accent-soft);
    transform: translateX(4px);
}

.post-card-meta-inline {
    flex: 0 0 auto;
    margin-left: 0.2rem;
    color: #b6bfcc;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-align: right;
}

.post-card-meta,
.entry-meta,
.archive-label,
.entry-label {
    color: var(--color-meta);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.post-card-meta {
    margin-top: 0;
    margin-bottom: 0.45rem;
}

.post-card-excerpt {
    margin-top: 0.75rem;
    color: #6b7280;
    font-size: 1rem;
}

.post-card-excerpt p:last-child {
    margin-bottom: 0;
}

.archive-header {
    margin-bottom: 1.8rem;
}

.archive-label,
.entry-label {
    margin-bottom: 0.5rem;
}

.archive-title,
.entry-title {
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 400;
    word-break: break-word;
    letter-spacing: 0.04em;
}

.archive-title {
    font-size: 1.85rem;
}

.entry {
    padding-bottom: 2.8rem;
}

.entry-header {
    max-width: 720px;
    margin: 0 auto 2.7rem;
    padding: 1rem 0 1.7rem;
    border-bottom: 1px solid var(--color-border-soft);
    text-align: center;
}

.entry-label {
    color: #9aa4b3;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
}

.entry-title {
    font-size: 2.15rem;
    line-height: 1.65;
    letter-spacing: 0.08em;
}

.entry-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
    color: #a5afbd;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
}

.entry-meta-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.9rem;
    border: 1px solid var(--color-border-soft);
    border-radius: 999px;
    background: var(--color-surface-soft);
}

.entry-meta-dot {
    color: #c1c8d3;
}

.entry-content {
    max-width: 720px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 17px;
    line-height: 2.05;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 2.5rem 0 1rem;
    color: var(--color-text);
    line-height: 1.55;
    font-weight: 500;
}

.entry-content h1 {
    font-size: 1.75rem;
}

.entry-content h2 {
    font-size: 1.45rem;
}

.entry-content h3 {
    font-size: 1.2rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content pre,
.entry-content table {
    margin-bottom: 1.35rem;
}

.entry-content a {
    border-bottom: 1px solid rgba(21, 50, 121, 0.24);
}

.entry-content a:hover {
    border-bottom-color: rgba(21, 50, 121, 0.46);
}

.entry-content img {
    margin: 1.8rem auto;
    border-radius: 14px;
}

.entry-content strong {
    color: #222;
}

.pagebar,
.comment-nav {
    padding-top: 1.3rem;
}

.page-navigator {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0;
    list-style: none;
}

.page-navigator li {
    margin: 0;
}

.page-navigator a,
.page-navigator span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    min-height: 2.4rem;
    padding: 0 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-meta);
    background: var(--color-surface);
    font-size: 0.92rem;
}

.page-navigator a:hover {
    color: var(--color-accent);
    border-color: rgba(21, 50, 121, 0.24);
}

.page-navigator .current a,
.page-navigator .current span,
span.now-page {
    color: var(--color-accent);
    border-color: rgba(21, 50, 121, 0.22);
    background: rgba(21, 50, 121, 0.06);
}

.comments-section {
    max-width: 720px;
    margin: 3.6rem auto 0;
    padding-top: 2.4rem;
    border-top: 1px solid var(--color-border-soft);
}

.comments-header,
.respond-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.comments-label {
    margin: 0 0 0.4rem;
    color: #9aa4b3;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
}

.comments-title,
.respond-title {
    margin: 0;
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 500;
}

.comment-list-wrap {
    margin-bottom: 2rem;
}

ol.comment-list,
ol.comment-list ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol.comment-list ol {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.comment-list .comment-body {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-border-soft);
}

.comment-author {
    color: var(--color-text);
}

.comment-author .avatar {
    float: left;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0.1rem 0.95rem 0 0;
    border-radius: 50%;
}

.comment-author cite,
.comment-author .fn {
    font-style: normal;
    font-weight: 500;
}

.comment-meta {
    margin-top: 0.28rem;
}

.comment-meta a {
    color: var(--color-meta);
    font-size: 0.84rem;
}

.comment-content {
    margin-top: 0.95rem;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.95;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.respond {
    margin-top: 2.6rem;
    padding-top: 0.2rem;
}

.cancel-reply {
    font-size: 0.88rem;
}

.comment-form-main {
    margin-bottom: 0.9rem;
}

#comment-form input,
#comment-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: var(--color-surface);
    color: var(--color-text);
    outline: none;
}

#comment-form input {
    min-height: 3rem;
    padding: 0 1rem;
}

#comment-form textarea {
    min-height: 10rem;
    padding: 1rem 1.05rem;
    resize: vertical;
    line-height: 1.85;
}

.comment-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.comment-user-state {
    margin-bottom: 1rem;
    color: var(--color-meta);
    font-size: 0.94rem;
}

.comment-form-actions {
    margin-top: 1.1rem;
}

.empty-state {
    padding: 1.5rem 0 0.5rem;
}

.empty-state h2 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text);
}

.empty-state p {
    color: var(--color-text-soft);
}

.site-footer {
    padding: 2.8rem 0 2.9rem;
    border-top: 1px solid #f1f3f5;
}

.footer-panel {
    max-width: 760px;
    margin: 0 auto;
}

.footer-panel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0 1.5rem;
}

.footer-pagination-placeholder {
    display: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    color: #555;
    font-size: 0.92rem;
    line-height: 2;
    text-align: center;
    letter-spacing: 0.01em;
}

.footer-links a {
    color: #4a4a4a;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.footer-links a:hover {
    color: #222;
    opacity: 0.88;
}

.footer-link-gap {
    display: inline-block;
    width: 1rem;
}

.footer-description,
.footer-meta p {
    margin: 0;
}

.footer-meta {
    text-align: center;
}

.footer-meta-centered {
    color: #7a7a7a;
    line-height: 1.9;
    font-size: 0.88rem;
}

.footer-meta-centered p + p {
    margin-top: 0.08rem;
}

.footer-meta-centered a {
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.footer-meta-centered a:hover {
    color: #555;
    border-bottom-color: rgba(85, 85, 85, 0.22);
}

.footer-meta p:last-child,
.footer-description:last-child {
    margin-bottom: 0;
}

.about-page {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 2.8rem;
}

.about-page-header {
    margin: 0 auto 1.4rem;
    text-align: center;
}

.about-page-title {
    margin: 0;
    color: #444;
    font-size: 1.42rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.about-avatar-line {
    margin: 0 auto 0.95rem;
}

.about-avatar-line .about-avatar {
    width: 128px;
    height: 128px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.about-page-content {
    max-width: 540px;
    margin: 0 auto;
    color: #666;
    text-align: center;
    font-size: 14px;
    line-height: 2.28;
}

.about-page-content p {
    margin-bottom: 0.3rem;
}

.about-page-content blockquote {
    margin: 1.2rem auto;
    padding: 0.1rem 0 0.1rem 0.9rem;
    text-align: left;
    color: #666;
}

.about-page-content h2,
.about-page-content h3,
.about-page-content h4 {
    margin: 1.65rem 0 0.7rem;
    color: #444;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.about-page-content ul,
.about-page-content ol {
    text-align: left;
}

.about-page-content > *:last-child {
    margin-bottom: 0;
}

.comments-section {
    max-width: 720px;
    margin: 3.2rem auto 0;
    padding-top: 1.9rem;
    border-top: 1px solid #ececec;
}

.comments-header,
.respond-header {
    display: block;
    margin-bottom: 1rem;
}

.comments-label {
    margin: 0 0 0.3rem;
    color: #a0a0a0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.comments-title,
.respond-title {
    margin: 0;
    color: #444;
    font-size: 1rem;
    font-weight: 400;
}

.cancel-reply {
    margin-top: 0.45rem;
    font-size: 0.82rem;
}

.comment-list-wrap {
    margin-bottom: 1.4rem;
}

.comment-list .comment-body {
    padding: 0.95rem 0;
    border-bottom: 1px solid #efefef;
}

.comment-author .avatar {
    width: 2.2rem;
    height: 2.2rem;
    margin: 0.08rem 0.8rem 0 0;
}

.comment-author cite,
.comment-author .fn {
    font-weight: 400;
}

.comment-meta a {
    color: #9a9a9a;
    font-size: 0.78rem;
}

.comment-content {
    margin-top: 0.65rem;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.95;
}

.respond {
    margin-top: 1.9rem;
}

.comment-form-main {
    margin-bottom: 0.7rem;
}

#comment-form textarea {
    min-height: 8.8rem;
    border-radius: 6px;
}

#comment-form input,
#comment-form textarea {
    border-color: #e8e8e8;
}

.comment-form-grid {
    gap: 0.6rem;
}

#comment-form input {
    min-height: 2.8rem;
    border-radius: 6px;
}

.comment-form-actions {
    margin-top: 0.95rem;
}

.comment-form-actions .button {
    min-height: 2.5rem;
    padding: 0 1.2rem;
    border-radius: 4px;
}

@media screen and (max-width: 520px) {
    .about-page-title {
        font-size: 1.28rem;
    }

    .about-avatar-line .about-avatar {
        width: 112px;
        height: 112px;
    }

    .about-page-content {
        max-width: 100%;
        font-size: 13px;
        line-height: 2.15;
    }

    .comments-section {
        margin-top: 2.6rem;
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        padding-top: 1.9rem;
    }

    .site-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-header-side {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 0;
    }

    .site-title {
        font-size: 1.7rem;
    }

    .toggle-menu {
        display: inline-flex;
    }

    .site-nav-wrap {
        width: 100%;
    }

    .site-nav-list {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 0.6rem 0 0;
        border-top: 1px solid var(--color-border-soft);
    }

    .site-nav-search-item {
        margin-left: 0;
    }

    .toggle-search {
        padding: 0.7rem 0 0.4rem;
    }

    .site-nav-list a {
        display: block;
        padding: 0.7rem 0;
    }

    .site-main {
        padding-top: 1.5rem;
        padding-bottom: 3.2rem;
    }

    .post-card {
        padding: 1.35rem 0 1.45rem;
    }

    .post-card-title {
        font-size: 1.22rem;
        gap: 0.6rem;
    }

    .post-card-meta-inline {
        display: inline-block;
        margin-left: 0;
        font-size: 0.68rem;
        color: #bcc4d0;
    }

    .archive-title,
    .entry-title {
        font-size: 1.65rem;
    }

    .entry-header {
        margin-bottom: 2.2rem;
        padding-bottom: 1.35rem;
    }

    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .footer-panel-container {
        padding: 0 1.2rem;
        gap: 0.62rem;
    }

    .footer-links {
        font-size: 0.9rem;
        line-height: 1.95;
    }

    .footer-link-gap {
        width: 0.8rem;
    }

    .footer-meta,
    .footer-meta-centered {
        text-align: center;
    }
}

@media screen and (max-width: 520px) {
    .container {
        padding: 0 18px;
    }

    body {
        font-size: 15px;
    }

    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-actions {
        width: 100%;
    }

    .site-search {
        flex-direction: column;
    }

    .site-search button,
    button.button {
        min-height: 2.9rem;
        justify-content: center;
    }

    .post-card-title {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.45rem;
        font-size: 1.18rem;
    }

    .post-card-meta-inline {
        display: inline-block;
        margin-top: 0;
        margin-left: 0;
        font-size: 0.66rem;
        color: #c3cad5;
    }

    .archive-title,
    .entry-title,
    .about-page-title,
    .recoro-page-title {
        font-size: 1.45rem;
    }

    .entry-header,
    .about-page-header,
    .recoro-page-header {
        margin-bottom: 1.9rem;
        padding-top: 0.2rem;
        padding-bottom: 1.2rem;
    }

    .footer-panel-container {
        padding: 0 0.9rem;
        gap: 0.55rem;
    }

    .footer-links {
        font-size: 0.86rem;
        line-height: 1.9;
    }

    .footer-meta-centered {
        font-size: 0.84rem;
        line-height: 1.85;
    }

    .entry-meta {
        gap: 0.4rem;
        font-size: 0.8rem;
    }

    .entry-meta-item {
        min-height: 1.9rem;
        padding: 0 0.75rem;
    }

    .entry-content {
        font-size: 16px;
    }

    .recoro-page-label {
        font-size: 0.72rem;
    }

    ol.comment-list ol {
        padding-left: 0.85rem;
    }
}

.recoro-page {
    padding-bottom: 2.8rem;
}

.recoro-page-header {
    max-width: 560px;
    margin: 0 auto 2.4rem;
    padding: 0.7rem 0 1.45rem;
    border-bottom: 1px solid rgba(217, 225, 238, 0.72);
    text-align: center;
}

.recoro-page-label {
    margin-bottom: 0.6rem;
    color: #a6afbc;
    font-size: 0.76rem;
    letter-spacing: 0.22em;
}

.recoro-page-title {
    margin: 0;
    color: #3f4652;
    font-size: 1.9rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.08em;
    word-break: break-word;
}

.recoro-page-description {
    max-width: 460px;
    margin: 0.95rem auto 0;
    color: #8b94a3;
    font-size: 0.96rem;
    line-height: 1.95;
}

.recoro-feed {
    max-width: 640px;
    margin: 0 auto;
}

.recoro-item {
    display: flex;
    gap: 1rem;
    padding: 1.35rem 0 1.55rem;
    border-bottom: 1px solid rgba(217, 225, 238, 0.66);
}

.recoro-item:first-child {
    padding-top: 0.15rem;
}

.recoro-item-avatar-wrap {
    flex: 0 0 3rem;
}

.recoro-item-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(247, 249, 252, 0.82);
}

.recoro-item-main {
    flex: 1 1 auto;
    min-width: 0;
}

.recoro-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.recoro-item-heading {
    min-width: 0;
}

.recoro-item-title {
    margin: 0;
    color: #3f4652;
    font-size: 1.08rem;
    line-height: 1.75;
    font-weight: 400;
    word-break: break-word;
}

.recoro-item-title a {
    color: inherit;
}

.recoro-item-title a:hover {
    color: var(--color-accent-soft);
}

.recoro-item-time {
    display: inline-block;
    margin-top: 0.16rem;
    color: #a4adba;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.recoro-like-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    min-width: 4.2rem;
    min-height: 2.2rem;
    padding: 0 0.8rem;
    border: 1px solid rgba(217, 225, 238, 0.88);
    border-radius: 999px;
    background: #fff;
    color: #a6afbc;
    font-size: 0.84rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.recoro-like-button:hover {
    color: #d0667a;
    border-color: rgba(208, 102, 122, 0.22);
    background: rgba(255, 246, 248, 0.92);
    transform: translateY(-1px);
}

.recoro-like-button.is-loading,
.recoro-like-button:disabled {
    cursor: default;
}

.recoro-like-button.is-liked {
    color: #d0667a;
    border-color: rgba(208, 102, 122, 0.22);
    background: rgba(255, 246, 248, 0.92);
}

.recoro-like-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.recoro-like-count {
    min-width: 1ch;
}

.recoro-item-content {
    max-width: none;
    margin: 0;
    color: #626b78;
    font-size: 16px;
    line-height: 2;
}

.recoro-item-content > *:last-child {
    margin-bottom: 0;
}

.recoro-item-content img {
    margin-left: 0;
    margin-right: 0;
}

.recoro-empty-state {
    max-width: 640px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .recoro-page-header {
        max-width: 100%;
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }

    .recoro-page-title {
        font-size: 1.62rem;
    }

    .recoro-feed {
        max-width: 100%;
    }

    .recoro-item {
        gap: 0.85rem;
    }

    .recoro-item-avatar-wrap {
        flex-basis: 2.7rem;
    }

    .recoro-item-avatar {
        width: 2.7rem;
        height: 2.7rem;
    }
}

@media screen and (max-width: 520px) {
    .recoro-page-title {
        font-size: 1.45rem;
    }

    .recoro-page-description {
        font-size: 0.9rem;
    }

    .recoro-item {
        gap: 0.7rem;
        padding: 1.15rem 0 1.35rem;
    }

    .recoro-item-header {
        align-items: stretch;
        flex-direction: column;
        gap: 0.55rem;
    }

    .recoro-like-button {
        align-self: flex-start;
        min-height: 2.05rem;
        padding: 0 0.72rem;
    }

    .recoro-item-content {
        font-size: 15.5px;
        line-height: 1.95;
    }
}
