/* Blog Home: 时间栏 + 帖子卡片 */

html,
body {
    height: 100%;
}

.home-page {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.home-page__container {
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    overflow: hidden;
}

.home-page__date {
    font-size:0.875rem;
    font-weight: 500;
    color: #9ca3af;
    margin: 10px 0 10px;
}

.post-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
}

.post-card__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.post-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.post-card__avatar {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #0084ff;
}

.post-card__author {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-card__name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.post-card__handle {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}

.post-card__more {
    flex: 0 0 auto;
    width: 36px;
    text-align: center;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    color: #6b7280;
    font-size: 22px;
    line-height: 36px;
    padding: 0;
    transition: background 0.15s ease, color 0.15s ease;
}

.post-card__more:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #374151;
}

.post-card__content {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.post-card__meta {
    color: #6b7280;
    font-size: 10px;
    font-weight: 500;
    margin-top: -6px;
}

.post-card__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.post-card__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px 0;
    border-radius: 12px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease;
}

.post-card__action svg {
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}


.post-card__action:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.post-card__action-text {
    white-space: nowrap;
    font-size: 10px;
}

