/* ==========================================================================
 * list-sdft-cards.css
 * 仅供 list_sdft.html (3分钟看经济 / regulation-video 等) 引入；其他页面禁止引入。
 * 同模板 .v-item 已加 .v-item-box-shadow 类，PC ≥769px 卡片骨架由公共
 * v-card-list-313.css 接管（且包含 .v2022 .content .v-list 抵消规则），本文件只放 sdft 专属差异：
 *   - PC ≥769 / ≤768 h3 字色 #112b4a（公共骨架不写 h3 color）
 *   - 标题链接默认色 / hover 蓝色 / cursor
 * ========================================================================== */

@media screen and (min-width: 769px) {
  .v2022 .v-list .v-item.v-item-box-shadow .v-intro h3 {
    color: #112b4a;
  }
}
@media screen and (max-width: 768px) {
  .v2022 .v-list .v-item.v-item-box-shadow .v-intro h3 {
    color: #112b4a;
  }
}

/* 3分钟看经济标题链接：默认黑色，无下划线 */
.v2022 .v-list .v-item.v-item-box-shadow h3 a.insight-title-link {
  color: #112b4a;
  text-decoration: none;
}
/* 卡片悬停时标题变蓝色 */
.v2022 .v-list .v-item.v-item-box-shadow:hover h3 a.insight-title-link {
  color: #3cc8ff;
}
/* 卡片可点击 */
.v2022 .v-list .v-item.v-item-box-shadow {
  cursor: pointer;
}
