.elementor-kit-13{--e-global-color-primary:#1F2933;--e-global-color-secondary:#6B7280;--e-global-color-text:#2A2A2A;--e-global-color-accent:#E74C3C;--e-global-color-background:#FFFFFF;--e-global-color-backgroundAccent:#ECF0F1;--e-global-color-transparent:#00000000;--e-global-color-93a393e:#4A6FA5;--e-global-color-b53089f:#3E5E8A;--e-global-color-c86a851:#EAF0F8;--e-global-color-9884104:#1F2933;--e-global-color-ec4288e:#6B7280;--e-global-color-bbf812a:#E5E7EB;--e-global-color-d0ab7a1:#18A957;--e-global-color-c0256c5:#9CA3AF;--e-global-color-f8adea7:#FFFFFF;--e-global-color-4891dc7:#F9FAFB;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:24px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Figtree";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Figtree";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:400;--e-global-typography-accent-line-height:1.5em;--e-global-typography-heading-xl-font-family:"Poppins";--e-global-typography-heading-xl-font-size:56px;--e-global-typography-heading-xl-font-weight:600;--e-global-typography-heading-xl-line-height:1.2em;--e-global-typography-heading-l-font-family:"Poppins";--e-global-typography-heading-l-font-size:48px;--e-global-typography-heading-l-font-weight:600;--e-global-typography-heading-l-line-height:1.2em;--e-global-typography-heading-m-font-family:"Poppins";--e-global-typography-heading-m-font-size:40px;--e-global-typography-heading-m-font-weight:600;--e-global-typography-heading-m-line-height:1.2em;--e-global-typography-heading-s-font-family:"Poppins";--e-global-typography-heading-s-font-size:18px;--e-global-typography-heading-s-font-weight:500;--e-global-typography-body-s-font-family:"Figtree";--e-global-typography-body-s-font-size:14px;--e-global-typography-body-s-font-weight:400;--e-global-typography-body-s-line-height:1.5em;background-color:var( --e-global-color-background );}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-13{--e-global-typography-primary-font-size:22px;--e-global-typography-secondary-font-size:18px;--e-global-typography-heading-xl-font-size:48px;--e-global-typography-heading-l-font-size:40px;--e-global-typography-heading-m-font-size:32px;--e-global-typography-heading-s-font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-13{--e-global-typography-primary-font-size:18px;--e-global-typography-secondary-font-size:16px;--e-global-typography-heading-xl-font-size:40px;--e-global-typography-heading-l-font-size:32px;--e-global-typography-heading-m-font-size:32px;--e-global-typography-heading-s-font-size:16px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* 基础：卡片定位 */
.girl-card {
  position: relative;
  overflow: hidden;
}

/* Off work：基础弱化（你之前已有，可保留） */
.girl-card:has(.model-status.is-off-work) {
  filter: grayscale(65%) brightness(1.05);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* ===== Hover 遮罩文字 ===== */

/* 默认不显示 */
.girl-card::after {
  content: "";
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0);
  color: #fff;

  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;
}

/* Hover 时，仅 Off work 才显示 */
.girl-card:has(.model-status.is-off-work):hover::after {
  content: "Off work";
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
}

/* Hover 时禁止点击 */
.girl-card:has(.model-status.is-off-work):hover a {
  pointer-events: none;
  cursor: not-allowed;
}



/* First Impression tag 容器 */
.first-impression-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* 每一个 tag */
.first-impression-tags a,
.first-impression-tags span{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  /*background: #d88acb;    你现在用的紫色系 */
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

/* hover 可选 */
.first-impression-tags a:hover{
  background: #c774b8;
}


:root {
  /* 主品牌色 */
  --diamond-blue: #4A6FA5;

  /* 深一阶（hover / emphasis） */
  --diamond-blue-dark: #3E5E8A;

  /* 极浅蓝（背景点缀） */
  --diamond-blue-soft: #EAF0F8;

  /* 中性色 */
  --text-main: #1F2933;     /* 深灰，别用纯黑 */
  --text-muted: #6B7280;   /* 次级文字 */
  --divider: #E5E7EB;

  /* 状态色（唯一亮色） */
  --status-working: #18A957;
  --status-off: #9CA3AF;

  /* 背景 */
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
}

/* 强制显示 Elementor Lightbox 左右箭头 */
.elementor-lightbox .dialog-lightbox-navigation {
  opacity: 1 !important;
  visibility: visible !important;
}

.elementor-lightbox .dialog-lightbox-navigation button {
  display: flex !important;
  opacity: 1 !important;
}

/* 调大点击区域（更像高端 gallery） */
.elementor-lightbox .dialog-lightbox-navigation button {
  width: 60px;
  height: 60px;
}

/* 箭头居中 */
.elementor-lightbox .dialog-lightbox-navigation button i {
  font-size: 28px;
}

/* 隐藏 Lightbox 底部 caption / description */
.elementor-lightbox .elementor-lightbox-caption {
  display: none !important;
}

/* Lightbox 背景更高级 */
.elementor-lightbox .dialog-widget-content {
  background: rgba(0,0,0,0.92);
}

/* 图片圆角 */
.elementor-lightbox .elementor-lightbox-image {
  border-radius: 12px;
}/* End custom CSS */