.elementor .e-bf393e9-b11ea50{flex-direction:column;}.elementor .e-501ddfee-1990279{background-color:#3D3D3D;flex-direction:column;}.elementor .e-0c3c58e{flex-direction:column;}.elementor .e-881a603{flex-direction:column;}.elementor .e-bae0921{flex-direction:column;}.elementor .e-9762f81{flex-direction:column;}.elementor .e-e354486{flex-direction:column;}.elementor .e-9fb793a{flex-direction:column;/* ============================================
 PCBbee Blog 短代码样式
 适用于 [pcbbee_latest_blog] 短代码
 ============================================ */

/* --- 1. 整体容器 --- */
.pcbbee-blog-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- 2. 顶部标题区 --- */
.pcbbee-blog-header {
  text-align: center;
  margin-bottom: 36px;
}

.pcbbee-blog-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 橙色高亮 "Blog" */
.pcbbee-highlight {
  color: #f3a93b;
}

.pcbbee-blog-subtitle {
  font-size: 15px;
  color: #888;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 3. 3列网格布局 --- */
.pcbbee-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- 4. 单个文章卡片 --- */
.pcbbee-blog-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 悬停效果：轻微上移 + 阴影加深 */
.pcbbee-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* --- 5. 图片区域（16:10 固定比例） --- */
.pcbbee-card-image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
  text-decoration: none;
  flex-shrink: 0;
}

.pcbbee-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* 图片悬停微缩放 */
.pcbbee-card-image-link:hover .pcbbee-card-image {
  transform: scale(1.04);
}

/* 无特色图片时的占位符 */
.pcbbee-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #c0c0c0;
}

.pcbbee-card-placeholder .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
}

/* --- 6. 卡片内容区 --- */
.pcbbee-card-content {
  padding: 18px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* --- 7. 文章标题 --- */
.pcbbee-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.pcbbee-card-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pcbbee-card-title a:hover {
  color: #f3a93b;
}

/* --- 8. Meta 元数据 --- */
.pcbbee-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #999;
}

.pcbbee-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Dashicons 图标在 Meta 中的尺寸与对齐 */
.pcbbee-meta-item .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
  line-height: 1;
  vertical-align: text-bottom;
  color: #bbb;
}

/* --- 9. 文章摘要 --- */
.pcbbee-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 16px 0;
  flex: 1;
}

/* --- 10. Read More 链接 --- */
.pcbbee-read-more {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: #f3a93b;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease, padding-left 0.2s ease;
  align-self: flex-start;
}

.pcbbee-read-more:hover {
  color: #d4891f;
  padding-left: 4px;
}

/* --- 11. 无文章提示 --- */
.pcbbee-no-posts {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  font-size: 15px;
  padding: 40px 0;
}

/* ============================================
 响应式适配
 ============================================ */

/* 平板端：2列布局 */
@media (max-width: 1024px) {
  .pcbbee-blog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
  }

  .pcbbee-blog-title {
      font-size: 28px;
  }

  .pcbbee-card-content {
      padding: 15px 16px 16px 16px;
  }
}

/* 手机端：单列布局 */
@media (max-width: 768px) {
  .pcbbee-blog-section {
      margin: 28px auto;
      padding: 0 16px;
  }

  .pcbbee-blog-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .pcbbee-blog-title {
      font-size: 24px;
  }

  .pcbbee-blog-subtitle {
      font-size: 14px;
  }

  .pcbbee-card-title {
      font-size: 16px;
  }

  .pcbbee-card-content {
      padding: 14px 16px 16px 16px;
  }
}\n}.elementor .e-20e11d5{flex-direction:column;}.elementor .e-cf4103f{flex-direction:column;}.elementor .e-7560d148-c910d9b{flex-direction:column;}