/* =============================================================
   德永信 dyx988.com - 内链样式表
   ============================================================= */

/* 文末推荐阅读模块 */
.related-reading {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1a73e8;
}
.related-reading h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #333;
}
.related-reading ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.5rem;
}
.related-reading li a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}
.related-reading li a:hover {
  text-decoration: underline;
}

/* 行内上下文链接样式 */
.context-link-note {
  background: #e8f0fe;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin: 1.2rem 0;
  font-size: 0.92rem;
  color: #174ea6;
}
.context-link-note a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}
.context-link-note a:hover {
  text-decoration: underline;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .related-reading ul {
    grid-template-columns: 1fr;
  }
  .related-reading {
    padding: 1rem;
    margin: 1.5rem 0;
  }
}
