/* 1️⃣ 让顶部信息栏可以换行 */
.information-widgets {
  flex-wrap: wrap !important;  /* 关键：允许换行 */
}

/* 2️⃣ 让 greeting 占满一整行 */
.information-widget-greeting {
  flex-basis: 100% !important;
  width: 100% !important;
  text-align: center;
}

/* 3️⃣（可选）把文字撑满整行，好看一点 */
.information-widget-greeting span {
  display: block;
}

/* 4️⃣ 新闻列表样式增强 */
.service-container .font-thin {
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* 新闻条目背景和可读性 */
.service-container .bg-theme-200\/50,
.service-container .dark\:bg-theme-900\/20 {
  background-color: rgba(30, 41, 59, 0.6) !important;
}

