/*
Theme Name: Weibo12
Author:jazz
Version: 1.0
Description: 深空灰色三栏微博主题
*/

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

body {
  font-family: "Microsoft Yahei", sans-serif;
  background: #1A1A1D;
  color: #E2E2E2;
  line-height: 1.7;
}

a {
  color: #84CEEB;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #5AB9EA;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 布局容器 */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 14px;
}

.wrap {
  display: flex;
  gap: 22px;
}

/* 三栏宽度 */
.main {
  flex: 1;
  min-width: 0;
}

.sidebar {
  width: 270px;
  flex-shrink: 0;
}

/* 手机自适应 */
@media (max-width: 1024px) {
  .wrap {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
}

/* 头部 */
.header {
  background: #242529;
  border-bottom: 1px solid #383A42;
  padding: 20px 0;
  margin-bottom: 22px;
  text-align: center;
}

.site-title {
  font-size: 20px;
  font-weight: 500;
  color: #F0F0F0;
}

/* 面包屑 */
.breadcrumb {
  background: #242529;
  border: 1px solid #383A42;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 20px;
}

/* 微博卡片 */
.post-box {
  background: #242529;
  border: 1px solid #383A42;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

/* 标题 + 摘要（第一部分） */
.post-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.post-excerpt {
  font-size: 14px;
  color: #C5C6C7;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* 头像、用户名、时间 横排（第二部分） */
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #383A42;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 15px;
  font-weight: 500;
  color: #E2E2E2;
}

.publish-time {
  font-size: 12px;
  color: #858890;
  margin-left: auto;
}

/* 分页 */
.pagination {
  text-align: center;
  margin: 32px 0;
}

.page-numbers {
  display: inline-block;
  padding: 8px 13px;
  background: #2A2B30;
  border: 1px solid #44464E;
  border-radius: 6px;
  margin: 0 3px;
  font-size: 14px;
  color: #E2E2E2;
}

.page-numbers.current {
  background: #4A4D57;
  color: #fff;
  border-color: #5AB9EA;
}

/* 侧边栏 */
.widget {
  background: #242529;
  border: 1px solid #383A42;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
}

.widget h3 {
  font-size: 16px;
  color: #F0F0F0;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #383A42;
}

.widget ul {
  list-style: none;
}

.widget li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed #383A42;
}

.widget li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

.widget-thumb {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.widget-text {
  flex: 1;
  min-width: 0;
}

.widget-text a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

/* 内容页 */
.single-title {
  font-size: 24px;
  margin-bottom: 18px;
  color: #fff;
}

.single-content {
  font-size: 15px;
  line-height: 1.9;
  color: #D1D5DB;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.related-posts {
  margin-top: 26px;
}

/* 底部 */
.footer {
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
  color: #717580;
  border-top: 1px solid #2A2B30;
  margin-top: 24px;
}