/* 首页/服务页「最新内容」模块 */
.seo-latest-section {
  padding: 48px 0;
  background: #f6f7f9;
}

.seo-latest-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.seo-latest-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 20px;
}

.seo-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .seo-latest-grid {
    grid-template-columns: 1fr;
  }
}

.seo-latest-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #86868b;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.seo-latest-item {
  display: block;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #1d1d1f;
  border: 1px solid rgba(10, 37, 64, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.seo-latest-item:hover {
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
  transform: translateY(-1px);
}

.seo-latest-item-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.seo-latest-item-date {
  display: block;
  font-size: 12px;
  color: #86868b;
}

.seo-latest-empty {
  font-size: 13px;
  color: #86868b;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px dashed rgba(10, 37, 64, 0.15);
}
