/* 博客列表标题：改小字号 + 限制2行显示 */
.blog .post-title a,
.archive .post-title a,
.blog-post .entry-title a {
    font-size: 22px !important; /* 这里可以按需改成你要的字号，比如20px/24px */
    line-height: 1.4 !important; /* 行高建议是字号的1.3-1.5倍，避免太挤 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示行数，这里是2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 博客页专属Banner */
.blog #Header_wrapper {
  background-image: url("https://dgtide.com/wp-content/uploads/2026/05/1-2.jpg") !important;
  background-size: cover !important;
  background-position: center 130px !important;
  min-height: 600px !important;
  background-repeat: no-repeat !important;
}
.blog #Header {
  background: transparent !important;
}
@media (max-width: 768px) {
  .blog #Header_wrapper {
    min-height: 400px !important;
    background-position: center 30px !important;
  }
}



/* 产品汇总页 Banner 强制生效版 */
body.woocommerce-shop #Header_wrapper,
body.shop #Header_wrapper {
  background-image: url("https://dgtide.com/wp-content/uploads/2026/04/3.3-夹克.jpg") !important;
  background-size: cover !important;
  background-position: center 130px !important;
  min-height: 600px !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

body.woocommerce-shop #Header,
body.shop #Header {
  background: transparent !important;
  background-color: transparent !important;
}

@media (max-width: 768px) {
  body.woocommerce-shop #Header_wrapper,
  body.shop #Header_wrapper {
    min-height: 400px !important;
    background-position: center 30px !important;
  }
}


/* 隐藏作者 */
.byline, .author, .entry-meta .author {
  display: none !important;
}
/* 隐藏发布时间 */
.posted-on, .date, .entry-meta .posted-on {
  display: none !important;
}
/* 隐藏整个元信息块（兜底） */
.entry-meta {
  display: none !important;
}