:root {
    --weibo-ink: var(--color-ink);
    --weibo-muted: var(--color-muted);
    --weibo-line: var(--color-line);
    --weibo-paper: var(--color-surface);
    --weibo-accent: var(--color-primary);
    --weibo-accent-soft: var(--color-primary-soft);
    --weibo-warm: var(--color-primary-tint);
    --weibo-shadow: var(--shadow-card);
    --weibo-shadow-hover: var(--shadow-card-hover);
}

.weibo-page {
    min-height: calc(100vh - var(--site-header-h, 64px));
    background: var(--color-page);
    color: var(--weibo-ink);
    padding-bottom: 64px;
    font-family: var(--font-sans);
}

/* ---------- 页头 ---------- */
.weibo-hero {
    padding: 16px 0 4px;
    text-align: left;
}

.weibo-hero-compact {
    padding: 16px 0 4px;
}

.weibo-hero-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.weibo-hero-copy {
    min-width: 0;
}

.weibo-brand {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: var(--fs-tiny);
    line-height: var(--lh-tiny);
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--weibo-accent);
    font-weight: 600;
}

.weibo-hero-title {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    font-weight: 700;
    letter-spacing: 0;
    color: var(--weibo-ink);
}

.weibo-hero-desc {
    margin: 0;
    max-width: none;
    color: var(--weibo-muted);
    font-size: var(--fs-aux);
    line-height: var(--lh-aux);
}

.weibo-search {
    display: inline-flex;
    width: min(100%, 420px);
    background: var(--weibo-paper);
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--weibo-shadow);
}

.weibo-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 12px 18px;
    background: transparent;
    font-size: var(--fs-aux);
}

.weibo-search button {
    border: 0;
    background: var(--weibo-accent);
    color: #fff;
    padding: 0 22px;
    font-size: var(--fs-aux);
    cursor: pointer;
    transition: background-color var(--duration) var(--ease);
}

.weibo-search button:hover {
    background: var(--color-primary-hover);
}

.weibo-hero-action {
    margin: 0;
    flex-shrink: 0;
}

.weibo-write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: var(--weibo-accent);
    color: #fff !important;
    text-decoration: none !important;
    font-size: var(--fs-aux);
    font-weight: 600;
    border: 1px solid transparent;
    transition: background-color var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.weibo-write-btn:hover {
    background: var(--color-primary-hover);
    transform: none;
}

.weibo-write-btn-ghost {
    background: transparent;
    color: var(--weibo-ink) !important;
    border: 1px solid var(--weibo-line);
}

.weibo-write-btn-ghost:hover {
    background: var(--weibo-accent-soft);
    color: var(--weibo-accent) !important;
    border-color: var(--weibo-accent);
}

/* ---------- 发布区 ---------- */
.weibo-compose {
    background: var(--weibo-paper);
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    margin-bottom: var(--list-gap);
    box-shadow: var(--weibo-shadow);
    transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.weibo-compose:focus-within {
    border-color: rgba(195, 122, 103, 0.45);
    box-shadow: var(--weibo-shadow-hover);
}

.weibo-compose-guest {
    text-align: center;
    padding: 32px 20px;
}

.weibo-compose-guest p {
    margin: 0 0 14px;
    color: var(--weibo-muted);
    font-size: var(--fs-aux);
}

.weibo-compose-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.weibo-compose-editor-wrap {
    flex: 1;
    position: relative;
    min-width: 0;
}

.weibo-compose-input {
    width: 100%;
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    resize: vertical;
    min-height: 96px;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--weibo-ink);
    background: var(--color-page);
    outline: none;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background-color var(--duration) var(--ease);
}

.weibo-compose-input:focus {
    border-color: var(--weibo-accent);
    background: #fff;
    box-shadow: 0 0 0 3px var(--weibo-accent-soft);
}

.weibo-compose-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.weibo-compose-upload {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.weibo-tool-btn,
.weibo-compose-upload .btn {
    margin: 0 !important;
    border-radius: var(--radius-md) !important;
    border-color: var(--weibo-line) !important;
    color: var(--weibo-muted) !important;
    background: transparent !important;
    transition: color var(--duration) var(--ease), background-color var(--duration) var(--ease), border-color var(--duration) var(--ease) !important;
}

.weibo-tool-btn:hover,
.weibo-compose-upload .btn:hover {
    color: var(--weibo-accent) !important;
    background: var(--weibo-accent-soft) !important;
    border-color: rgba(195, 122, 103, 0.35) !important;
}

.weibo-compose-submit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weibo-count {
    font-size: var(--fs-tiny);
    color: var(--weibo-muted);
    font-variant-numeric: tabular-nums;
}

.weibo-publish-btn,
.weibo-comment-submit {
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    min-width: 72px;
}

.weibo-compose-preview {
    margin: 12px 0 0;
}

.weibo-compose-poll {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--weibo-line);
}

.weibo-poll-toggle {
    margin-bottom: 0;
}

.weibo-poll-fields.poll-form-panel,
.weibo-poll-fields {
    margin-top: 12px;
}

.weibo-poll-fields .form-control {
    margin-bottom: 0;
}

.weibo-compose-tip {
    margin: 12px 0 0;
    font-size: var(--fs-tiny);
    line-height: var(--lh-tiny);
    color: var(--weibo-muted);
}

.weibo-compose-tip code {
    background: var(--weibo-accent-soft);
    padding: 1px 6px;
    border-radius: var(--radius-sm);
    color: var(--weibo-accent);
    font-size: 11px;
}

.weibo-at-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
    margin-top: 4px;
    background: var(--weibo-paper);
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-md);
    box-shadow: var(--weibo-shadow-hover);
    max-height: 240px;
    overflow: auto;
}

.weibo-at-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background var(--duration) var(--ease);
}

.weibo-at-item:hover {
    background: var(--weibo-accent-soft);
}

.weibo-at-item img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.weibo-filter-bar {
    margin-bottom: 14px;
    padding: 10px 14px;
    background: var(--weibo-accent-soft);
    border-radius: var(--radius-md);
    color: var(--weibo-accent);
    font-size: var(--fs-aux);
    font-weight: 500;
}

.weibo-topic,
.weibo-mention {
    display: inline;
    color: var(--weibo-accent);
    text-decoration: none !important;
    font-weight: 500;
}

.weibo-topic {
    display: inline-block;
    padding: 1px 8px;
    margin: 0 2px;
    border-radius: var(--radius-sm);
    background: var(--weibo-accent-soft);
    font-size: var(--fs-tiny);
    line-height: var(--lh-tiny);
    vertical-align: 1px;
}

.weibo-topic:hover,
.weibo-mention:hover {
    text-decoration: underline !important;
}

/* ---------- 个人主页 ---------- */
.weibo-profile-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
}

.weibo-profile-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--weibo-shadow);
    flex-shrink: 0;
}

.profile-page .profile-hero {
    padding-bottom: 8px;
}

.profile-hero-inner {
    max-width: 720px;
}

.profile-avatar {
    width: 96px;
    height: 96px;
}

.profile-brand {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--weibo-accent);
    font-weight: 600;
}

.profile-hero-text .weibo-hero-desc {
    margin-left: 0;
    margin-right: 0;
    max-width: 32em;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    margin: 0 0 4px;
    color: var(--weibo-muted);
    font-size: 13px;
}

.profile-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 14px;
    color: var(--weibo-line);
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin: 28px auto 0;
    padding: 4px;
}

.profile-stat {
    background: rgba(255, 252, 248, 0.85);
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-lg);
    padding: 14px 8px;
    text-align: center;
    box-shadow: var(--weibo-shadow);
    backdrop-filter: blur(6px);
    animation: weibo-fade-up 0.5s ease both;
}

.profile-stat:nth-child(1) { animation-delay: 0.05s; }
.profile-stat:nth-child(2) { animation-delay: 0.08s; }
.profile-stat:nth-child(3) { animation-delay: 0.11s; }
.profile-stat:nth-child(4) { animation-delay: 0.14s; }
.profile-stat:nth-child(5) { animation-delay: 0.17s; }
.profile-stat:nth-child(6) { animation-delay: 0.2s; }

.profile-stat strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--weibo-ink);
    letter-spacing: 0.02em;
}

.profile-stat span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--weibo-muted);
    letter-spacing: 0.06em;
}

.profile-body {
    max-width: 760px;
    margin: 0 auto;
}

.profile-tabs {
    display: flex;
    gap: 6px;
    margin: 8px 0 22px;
    padding: 6px;
    background: rgba(255, 252, 248, 0.75);
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-md);
    box-shadow: var(--weibo-shadow);
}

.profile-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--weibo-muted) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.profile-tab em {
    font-style: normal;
    font-size: 12px;
    opacity: 0.75;
}

.profile-tab:hover {
    color: var(--weibo-ink) !important;
    background: rgba(44, 36, 28, 0.04);
}

.profile-tab.is-active {
    background: var(--weibo-ink);
    color: #fff !important;
    transform: translateY(-1px);
}

.profile-tab.is-active em {
    opacity: 0.7;
}

.profile-panel {
    animation: weibo-fade-up 0.4s ease both;
}

.profile-page .blog-main,
.profile-page .blog-list,
.profile-page .album-grid {
    max-width: none;
}

.profile-page .blog-item,
.profile-page .album-card {
    animation: weibo-fade-up 0.45s ease both;
}

/* ---------- 信息流 ---------- */
.weibo-feed {
    max-width: 680px;
    margin: 0 auto;
}

.weibo-card {
    background: var(--weibo-paper);
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    margin-bottom: var(--list-gap);
    box-shadow: var(--weibo-shadow);
    animation: weibo-fade-up 0.45s ease both;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.weibo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--weibo-shadow-hover);
    border-color: rgba(195, 122, 103, 0.28);
}

.weibo-card:nth-child(2) { animation-delay: 0.05s; }
.weibo-card:nth-child(3) { animation-delay: 0.1s; }
.weibo-card:nth-child(4) { animation-delay: 0.15s; }
.weibo-card:nth-child(5) { animation-delay: 0.2s; }

@keyframes weibo-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.weibo-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.weibo-avatar-link {
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    transition: transform var(--duration) var(--ease);
}

.weibo-avatar-link:hover {
    transform: scale(1.04);
}

.weibo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--weibo-accent-soft);
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px var(--weibo-line);
}

.weibo-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.weibo-name {
    font-size: var(--fs-title);
    line-height: var(--lh-title);
    color: var(--weibo-ink);
    text-decoration: none !important;
    font-weight: 600;
}

.weibo-name:hover {
    color: var(--weibo-accent);
}

.weibo-time {
    font-size: var(--fs-tiny);
    line-height: var(--lh-tiny);
    color: var(--weibo-muted);
}

.weibo-content {
    margin: 0;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-text);
    word-break: break-word;
}

/* 转发内容嵌入卡片 */
.weibo-share-embed {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 4px;
    padding: 12px;
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-md);
    background: var(--color-page);
    color: var(--weibo-ink) !important;
    text-decoration: none !important;
    max-width: 480px;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.weibo-share-embed:hover {
    transform: translateY(-1px);
    border-color: rgba(195, 122, 103, 0.35);
    box-shadow: var(--weibo-shadow-hover);
}

.weibo-share-embed-cover,
.weibo-share-embed-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.weibo-share-embed-cover {
    background: var(--weibo-paper) center / cover no-repeat;
    border: 1px solid var(--weibo-line);
}

.weibo-share-embed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--weibo-accent-soft);
    color: var(--weibo-accent);
    font-size: 20px;
}

.weibo-share-embed-body {
    flex: 1;
    min-width: 0;
}

.weibo-share-embed-title {
    display: block;
    font-weight: 700;
    font-size: var(--fs-aux);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.weibo-share-embed-meta {
    display: block;
    margin-top: 3px;
    font-size: var(--fs-tiny);
    color: var(--weibo-muted);
}

.weibo-share-embed-action {
    flex-shrink: 0;
    color: var(--weibo-accent);
    font-size: 13px;
    font-weight: 600;
}

.weibo-share-embed-missing {
    display: inline-block;
    margin: 6px 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--weibo-muted);
    font-style: italic;
    max-width: none;
}

.weibo-share-embed-shelf .weibo-share-embed-icon {
    background: rgba(160, 160, 136, 0.18);
    color: #7a7a5e;
}

.weibo-share-embed-album .weibo-share-embed-icon {
    background: var(--weibo-accent-soft);
    color: var(--weibo-accent);
}

.weibo-images {
    display: grid;
    gap: 6px;
    margin-top: 14px;
}

.weibo-images-1 {
    grid-template-columns: 1fr;
    max-width: 360px;
}

.weibo-images-2 {
    grid-template-columns: 1fr 1fr;
}

.weibo-images-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.weibo-img {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-page);
    cursor: zoom-in;
    border: 1px solid rgba(229, 221, 210, 0.7);
}

.weibo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.weibo-img:hover img {
    transform: scale(1.04);
}

.weibo-card-foot {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--weibo-line);
    color: var(--weibo-muted);
    font-size: 13px;
}

.weibo-action {
    border: 0;
    background: transparent;
    color: var(--weibo-muted);
    padding: 7px 12px;
    border-radius: var(--radius-md);
    font-size: 13px;
    cursor: pointer;
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.weibo-action .fa {
    margin-right: 4px;
}

.weibo-action:hover:not(:disabled) {
    color: var(--weibo-accent);
    background: var(--weibo-accent-soft);
}

.weibo-action:disabled {
    cursor: default;
    opacity: 0.85;
}

.weibo-action-like.is-liked,
.weibo-action-like.is-liked:hover {
    color: var(--color-danger);
    background: rgba(226, 85, 85, 0.08);
}

.weibo-action-like.is-liked .fa-heart {
    animation: weibo-heart-pop 0.35s ease;
}

@keyframes weibo-heart-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.weibo-comment-panel {
    margin-top: 12px;
    padding: 14px 12px 4px;
    border-top: 1px solid var(--weibo-line);
    background: var(--color-page);
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
    margin-left: calc(-1 * var(--card-padding));
    margin-right: calc(-1 * var(--card-padding));
    margin-bottom: calc(-1 * var(--card-padding));
    padding-left: var(--card-padding);
    padding-right: var(--card-padding);
    padding-bottom: var(--card-padding);
}

.weibo-comment-list {
    max-height: 360px;
    overflow: auto;
    margin-bottom: 12px;
}

.weibo-comment-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--weibo-line);
}

.weibo-comment-item:last-child {
    border-bottom: 0;
}

.weibo-comment-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.weibo-comment-main {
    flex: 1;
    min-width: 0;
}

.weibo-comment-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
    font-size: 13px;
}

.weibo-comment-head a {
    color: var(--weibo-ink);
    font-weight: 600;
    text-decoration: none !important;
}

.weibo-comment-head a:hover {
    color: var(--weibo-accent);
}

.weibo-comment-head time {
    color: var(--weibo-muted);
    font-size: 12px;
}

.weibo-comment-del {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--weibo-muted);
    font-size: 12px;
    padding: 0;
    cursor: pointer;
}

.weibo-comment-del:hover {
    color: var(--color-danger);
}

.weibo-comment-body {
    font-size: var(--fs-aux);
    line-height: var(--lh-aux);
    word-break: break-word;
    color: var(--color-text);
}

.weibo-comment-empty,
.weibo-comment-loading {
    padding: 16px 0;
    text-align: center;
    color: var(--weibo-muted);
    font-size: 13px;
}

.weibo-comment-form-tools {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.weibo-btn-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #86909C;
    font-size: 18px;
    cursor: pointer;
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.weibo-btn-emoji:hover,
.weibo-btn-emoji.is-open {
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.weibo-comment-input {
    width: 100%;
    border: 1px solid var(--weibo-line);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    resize: vertical;
    min-height: 64px;
    font-size: var(--fs-aux);
    background: var(--weibo-paper);
    outline: none;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.weibo-comment-input:focus {
    border-color: var(--weibo-accent);
    box-shadow: 0 0 0 3px var(--weibo-accent-soft);
}

.weibo-comment-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.weibo-comment-tip,
.weibo-comment-login {
    margin: 0;
    font-size: var(--fs-tiny);
    color: var(--weibo-muted);
}

.weibo-comment-login a {
    color: var(--weibo-accent);
    font-weight: 600;
}

.weibo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(44, 36, 28, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.weibo-lightbox img {
    max-width: min(96vw, 1000px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: weibo-lightbox-in 0.25s ease;
}

@keyframes weibo-lightbox-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.weibo-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity var(--duration) var(--ease);
}

.weibo-lightbox-close:hover {
    opacity: 1;
}

.weibo-empty {
    text-align: center;
    padding: 64px 16px;
    color: var(--weibo-muted);
    background: rgba(255, 252, 248, 0.72);
    border: 1px dashed var(--weibo-line);
    border-radius: var(--radius-lg);
    font-size: var(--fs-aux);
}

.weibo-pager {
    margin-top: 24px;
    text-align: center;
}

.weibo-pager .pagination {
    margin: 0;
}

.myweibo-list {
    margin-top: 8px;
}

.myweibo-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--weibo-line);
}

.myweibo-item:last-child {
    border-bottom: 0;
}

.myweibo-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--weibo-muted);
    font-size: 12px;
}

.myweibo-item-content {
    margin: 0 0 10px;
    line-height: 1.7;
    color: var(--color-text);
    word-break: break-word;
}

.myweibo-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.myweibo-thumbs img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.myweibo-item-actions {
    margin-top: 4px;
}

@media (max-width: 767px) {
    .weibo-hero,
    .weibo-hero-compact {
        padding: 12px 0 4px;
    }

    .weibo-hero-row {
        flex-direction: column;
        align-items: stretch;
    }

    .weibo-card {
        padding: 16px;
    }

    .weibo-comment-panel {
        margin-left: -16px;
        margin-right: -16px;
        margin-bottom: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .weibo-images-3 {
        grid-template-columns: 1fr 1fr;
    }

    .weibo-compose-tools {
        align-items: stretch;
    }

    .weibo-compose-submit {
        width: 100%;
        justify-content: space-between;
    }

    .weibo-profile-hero {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 20px;
    }

    .profile-stat {
        padding: 12px 6px;
        border-radius: 12px;
    }

    .profile-stat strong {
        font-size: 1.2rem;
    }

    .profile-meta {
        justify-content: center;
    }

    .profile-actions {
        justify-content: center;
    }

    .profile-tabs {
        border-radius: var(--radius-lg);
        flex-wrap: wrap;
    }

    .profile-tab {
        flex: 1 1 30%;
        padding: 9px 8px;
        font-size: 13px;
    }
}
