/* KAZIR.KZ 帖子标题统一优化样式 */

/* 单行标题限制类 */
.title-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 1.4em;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 双行标题限制类（保留用于特殊情况） */
.title-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 帖子标题统一样式 */
.post-title {
  color: #57B5E7 !important;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}

.post-title:hover {
  color: #4A90C2 !important;
  text-decoration: none;
}

/* 确保标题链接也使用统一颜色 */
.post-title a,
a .post-title,
h1.post-title,
h2.post-title,
h3.post-title {
  color: #57B5E7 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover,
a:hover .post-title,
h1.post-title:hover,
h2.post-title:hover,
h3.post-title:hover {
  color: #4A90C2 !important;
  text-decoration: none;
}

/* 长数字字符串特殊处理 */
.post-title {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
}

/* 确保在所有容器中正确显示 */
.post-card .post-title,
.featured-card .post-title,
.search-result .post-title {
  max-width: 100%;
  width: 100%;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .title-clamp-1 {
    line-height: 1.3;
    max-height: 1.3em;
  }
  
  .post-title {
    font-size: 0.95rem;
  }
}

/* 小屏幕设备进一步优化 */
@media (max-width: 480px) {
  .title-clamp-1 {
    line-height: 1.2;
    max-height: 1.2em;
  }
  
  .post-title {
    font-size: 0.9rem;
  }
} 