/* —— 整页背景“铺满 + 居中”，避免只看到顶部一小条 —— */
body{
  background-size: cover !important;          /* 按比例铺满视口 */
  background-position: center center !important; /* 居中（要顶对齐可改为 center top） */
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;   /* 避免 fixed 造成只露出顶部的错觉 */
  position: relative;
}

/* —— 导航 & 页脚透明，让它们“透”出同一张背景图 —— */
.navbar {
  background: rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  position: relative;
}

footer,
.site-footer,
.footer,
#footer{
  background-color: rgba(255,255,255,0.3) !important; /* 0.5 = 50% 透明 */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: none !important;
  border-top: 0 !important;
}

/* ——统一 50% 半透明白底 —— */

.page-content .container,
.container-md,
.col-xl-8, .col-lg-10,
.post, .home .container-md {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(2px);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* —— 让页脚不受“正文容器半透明白底”影响 —— */
footer,
.site-footer,
footer .container,
.site-footer .container,
footer .container-md,
.site-footer .container-md,
footer [class*="col"],
.site-footer [class*="col"]{
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;   /* 若想保留圆角，可删掉这一行 */
  padding: initial !important;   /* 或改成你想要的数值 */
}


/*
/* 清掉页脚内层容器可能设置的白底，避免出现“白条框” */
footer .container,
.site-footer .container,
.footer .container{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* 若你的主题把版权行单独上了底色，也一并清掉 */
.site-footer .copyright,
.footer .copyright{
  background: transparent !important;
}


/* 只修“第二处”的 h4 与它后面的列表 */
#immigrant-trajectories-from-education-to-work-and-permanent-residency {
  margin-block-end: 1.875rem;   /* 需要多/少就改这个数值 */
}

#immigrant-trajectories-from-education-to-work-and-permanent-residency + ul {
  margin-block-start: 0 !important; /* 清掉列表上边距，避免与 h4 折叠 */
}


#immigrants-romantic-lives-in-the-digital-era {
  margin-block-end: 0;  
}
