/* Academic-tech redesign for xiaomengzhang.site
   Built for the active Nouvelle shell and the current Elementor page structures. */

body.wp-theme-nouvelle {
  --xm-bg: #07131e;
  --xm-bg-soft: #0d2133;
  --xm-surface: rgba(244, 248, 252, 0.94);
  --xm-surface-strong: rgba(255, 255, 255, 0.98);
  --xm-panel: rgba(232, 239, 247, 0.74);
  --xm-panel-dark: rgba(12, 31, 46, 0.72);
  --xm-ink: #112235;
  --xm-ink-soft: #3d5267;
  --xm-line: rgba(68, 121, 176, 0.18);
  --xm-line-strong: rgba(68, 121, 176, 0.3);
  --xm-accent: #3f78b6;
  --xm-accent-2: #1aa5b8;
  --xm-accent-3: #89d0dc;
  --xm-shadow: 0 40px 90px rgba(2, 12, 24, 0.35);
  background:
    radial-gradient(circle at 12% 14%, rgba(63, 120, 182, 0.22), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(26, 165, 184, 0.16), transparent 20%),
    linear-gradient(180deg, #09131d 0%, #0c1826 35%, #0a1621 100%);
  color: var(--xm-ink);
}

html,
body.wp-theme-nouvelle {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

body.wp-theme-nouvelle::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(137, 208, 220, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 208, 220, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
}

body.wp-theme-nouvelle::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at center, transparent 50%, rgba(2, 8, 16, 0.26) 100%);
}

body.wp-theme-nouvelle .wp-site-blocks {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 18px 46px;
}

body.wp-theme-nouvelle .frame-columns {
  display: block;
  padding: 0;
}

body.wp-theme-nouvelle .frame-columns > .wp-block-column:not(.central-column),
body.wp-theme-nouvelle .corner-frame,
body.wp-theme-nouvelle .wp-duotone-garnet {
  display: none !important;
}

body.wp-theme-nouvelle .central-column {
  width: min(1240px, calc(100vw - 36px)) !important;
  max-width: 1240px;
  flex-basis: 100% !important;
  margin: 0 auto !important;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 249, 253, 0.98), rgba(231, 239, 247, 0.94));
  border: 1px solid rgba(137, 208, 220, 0.12);
  box-shadow: var(--xm-shadow);
}

body.wp-theme-nouvelle .central-column main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
}

body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child .alignfull {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 !important;
  padding: 0.95rem 1.4rem !important;
  background: rgba(8, 22, 35, 0.84);
  border-bottom: 1px solid rgba(137, 208, 220, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
}

body.wp-theme-nouvelle .wp-block-site-title,
body.wp-theme-nouvelle .wp-block-post-title,
body.wp-theme-nouvelle .elementor-heading-title {
  font-family: "Roboto Slab", "Lumierepolis", "Noto Serif SC", "Songti SC", serif;
}

body.wp-theme-nouvelle .wp-block-site-title {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.wp-theme-nouvelle .wp-block-site-title a {
  color: #ecf7ff;
  text-decoration: none;
}

body.wp-theme-nouvelle .wp-block-site-title a:hover {
  color: var(--xm-accent-3);
}

body.wp-theme-nouvelle .wp-block-navigation__container {
  gap: 1.1rem !important;
}

body.wp-theme-nouvelle .wp-block-navigation-item__content {
  position: relative;
  padding: 0.35rem 0 0.45rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 247, 255, 0.84);
  text-decoration: none !important;
  transition: color 0.24s ease;
}

body.wp-theme-nouvelle .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--xm-accent-3), var(--xm-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

body.wp-theme-nouvelle .wp-block-navigation-item__content:hover,
body.wp-theme-nouvelle .current-menu-item .wp-block-navigation-item__content {
  color: #ffffff;
}

body.wp-theme-nouvelle .wp-block-navigation-item__content:hover::after,
body.wp-theme-nouvelle .current-menu-item .wp-block-navigation-item__content::after {
  transform: scaleX(1);
}

body.wp-theme-nouvelle .wp-block-post-title {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--xm-ink) !important;
}

body.wp-theme-nouvelle .wp-block-post-title::after {
  content: "";
  display: block;
  width: 104px;
  height: 2px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, var(--xm-accent), var(--xm-accent-2));
}

body.page-id-48 .wp-block-post-title::before,
body.page-id-56 .wp-block-post-title::before,
body.page-id-125 .wp-block-post-title::before,
body.page-id-108 .wp-block-post-title::before,
body.page-id-204 .wp-block-post-title::before {
  display: block;
  margin-bottom: 0.85rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--xm-accent);
}

body.page-id-48 .wp-block-post-title::before {
  content: "Academic Profile";
}

body.page-id-56 .wp-block-post-title::before {
  content: "Academic Training";
}

body.page-id-125 .wp-block-post-title::before {
  content: "Selected Publications";
}

body.page-id-108 .wp-block-post-title::before {
  content: "Curriculum Vitae";
}

body.page-id-204 .wp-block-post-title::before {
  content: "Books & Writing";
}

body.wp-theme-nouvelle .wp-block-post-content,
body.wp-theme-nouvelle .wp-block-paragraph,
body.wp-theme-nouvelle .elementor-widget-text-editor,
body.wp-theme-nouvelle .elementor-widget-text-editor p,
body.wp-theme-nouvelle li,
body.wp-theme-nouvelle td {
  font-family: "Lumierepolis", "Noto Serif SC", "Songti SC", "Georgia", serif;
  color: var(--xm-ink-soft);
}

body.wp-theme-nouvelle .wp-block-post-content a,
body.wp-theme-nouvelle .elementor-widget-text-editor a,
body.wp-theme-nouvelle footer a {
  color: var(--xm-accent);
}

body.wp-theme-nouvelle .wp-block-post-content a:hover,
body.wp-theme-nouvelle .elementor-widget-text-editor a:hover,
body.wp-theme-nouvelle footer a:hover {
  color: var(--xm-accent-2);
}

body.wp-theme-nouvelle .entry-content,
body.wp-theme-nouvelle .wp-block-post-content {
  margin-bottom: 3.6rem;
}

body.wp-theme-nouvelle .elementor {
  max-width: 1060px;
  margin: 0 auto;
}

body.wp-theme-nouvelle .elementor .e-con-boxed > .e-con-inner {
  max-width: 1000px;
}

body.wp-theme-nouvelle .elementor .elementor-widget-text-editor p {
  line-height: 1.9;
}

body.wp-theme-nouvelle .elementor-button {
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--xm-accent), var(--xm-accent-2)) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 14px 30px rgba(31, 90, 145, 0.24);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

body.wp-theme-nouvelle .elementor-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(31, 90, 145, 0.28);
}

body.wp-theme-nouvelle .elementor-button-content-wrapper {
  gap: 0.5rem;
}

body.wp-theme-nouvelle .elementor-widget-image img {
  border-radius: 24px;
}

body.wp-theme-nouvelle .wp-block-template-part:last-child .wp-block-group {
  background: rgba(8, 22, 35, 0.98);
}

body.wp-theme-nouvelle footer .wp-block-group {
  color: rgba(236, 247, 255, 0.66);
}

body.wp-theme-nouvelle footer .wp-block-heading,
body.wp-theme-nouvelle footer .wp-block-paragraph,
body.wp-theme-nouvelle footer a {
  color: rgba(236, 247, 255, 0.72) !important;
}

body.wp-theme-nouvelle footer .wp-block-paragraph[style*="line-height:0"] {
  display: none;
}

body.wp-theme-nouvelle footer .wp-block-column:empty {
  display: none;
}

/* Home */
body.page-id-48 .elementor-element-7879597 > .e-con-inner {
  display: grid;
  grid-template-columns: minmax(280px, 410px) 1fr;
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  padding-top: 0.35rem;
}

body.page-id-48 .elementor-element-c57922a {
  max-width: 410px;
}

body.page-id-48 .elementor-element-48b15ef img {
  width: 100%;
  border-radius: 28px;
  border: 10px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 64px rgba(9, 24, 37, 0.18);
  filter: saturate(0.94) contrast(1.02);
}

body.page-id-48 .elementor-element-4592e28 {
  align-self: center;
}

body.page-id-48 .elementor-element-4592e28 .elementor-heading-title {
  margin: 0;
  font-size: clamp(3.1rem, 5.7vw, 5.5rem);
  line-height: 0.9;
  color: var(--xm-ink);
  text-align: left;
}

body.page-id-48 .elementor-element-4592e28 .elementor-heading-title::after {
  content: "Behavioral Economics / Neuroeconomics / Human-AI Interaction";
  display: block;
  margin-top: 1.3rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--xm-accent);
}

body.page-id-48 .elementor-element-9e4c201 {
  display: none !important;
}

body.page-id-48 .elementor-element-9e4c201 {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: start;
}

body.page-id-48 .elementor-element-9e4c201 p {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(68, 121, 176, 0.18);
  box-shadow: 0 14px 28px rgba(15, 34, 53, 0.08);
}

body.page-id-48 .elementor-element-9e4c201 span {
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--xm-accent);
}

body.page-id-48 .elementor-element-9e4c201 a {
  font-family: "Lumierepolis", "Noto Serif SC", "Songti SC", serif;
  font-size: 1rem;
  color: var(--xm-ink);
  text-decoration: none;
}

body.page-id-48 .elementor-element-9e4c201 a:hover {
  color: var(--xm-accent);
}

body.page-id-48 .elementor-element-6e202ef,
body.page-id-48 .elementor-element-401a206,
body.page-id-48 .elementor-element-4abca2c {
  background: var(--xm-panel);
  border: 1px solid var(--xm-line);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(15, 34, 53, 0.06);
}

body.page-id-48 .elementor-element-6e202ef > .e-con-inner,
body.page-id-48 .elementor-element-401a206 > .e-con-inner,
body.page-id-48 .elementor-element-4abca2c > .e-con-inner {
  padding: 2rem 2.1rem;
}

body.page-id-48 .elementor-element-122e5f9 p {
  font-size: 1.06rem;
  line-height: 2;
  color: var(--xm-ink);
}

body.page-id-48 .elementor-element-2930bb1::before {
  content: "English Profile";
  display: block;
  margin-bottom: 1rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--xm-accent);
}

body.page-id-48 .elementor-element-2930bb1 p {
  font-size: 0.98rem;
  color: var(--xm-ink-soft);
}

body.page-id-48 .elementor-element-4abca2c {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background:
    radial-gradient(circle at 20% 25%, rgba(63, 120, 182, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(26, 165, 184, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(9, 24, 37, 0.98), rgba(15, 39, 59, 0.92));
  border-color: rgba(137, 208, 220, 0.16);
}

body.page-id-48 .elementor-element-4abca2c::before {
  content: "Research Focus";
  position: absolute;
  top: 1.8rem;
  left: 2rem;
  right: 2rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(137, 208, 220, 0.88);
}

body.page-id-48 .elementor-element-4abca2c::after {
  content: "01  Behavioral Economics\A02  Neuroeconomics\A03  Human-AI Collaboration\A04  Decision Science";
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.9rem;
  white-space: pre-line;
  font-family: "Roboto Slab", "Lumierepolis", serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.9;
  color: #f3fbff;
}

body.page-id-48 .elementor-element-d178853 {
  display: none;
}

body.page-id-48 .elementor-element-4a0df30 > .e-con-inner {
  justify-content: center;
  gap: 14px;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
}

body.page-id-48 .elementor-element-5ef617e,
body.page-id-48 .elementor-element-53bf77f {
  display: none;
}

body.page-id-48 .elementor-element-0d62361,
body.page-id-48 .elementor-element-d72e47e,
body.page-id-48 .elementor-element-1cd3fc2,
body.page-id-48 .elementor-element-0f7afc8 {
  width: 25% !important;
  max-width: 25% !important;
  flex: 0 0 25% !important;
}

body.page-id-48 .elementor-icon-wrapper a {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--xm-line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--xm-accent);
  box-shadow: 0 14px 28px rgba(15, 34, 53, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

body.page-id-48 .elementor-icon-wrapper a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--xm-accent), var(--xm-accent-2));
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(15, 34, 53, 0.16);
}

body.page-id-48 .elementor-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Education */
body.page-id-56 .elementor {
  display: grid;
  gap: 1.35rem;
}

body.page-id-56 .elementor > .e-parent {
  position: relative;
  background: var(--xm-panel);
  border: 1px solid var(--xm-line);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(15, 34, 53, 0.06);
}

body.page-id-56 .elementor > .e-parent > .e-con-inner {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
}

body.page-id-56 .elementor > .e-parent:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 80px;
  top: calc(100% + 4px);
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--xm-accent), transparent);
}

body.page-id-56 .elementor-widget-image img {
  width: auto !important;
  height: auto !important;
  max-width: min(210px, 100%) !important;
  max-height: 108px !important;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
  box-shadow: none;
  display: block;
  margin: 0 auto;
  filter: none;
  opacity: 1;
}

body.page-id-56 .elementor-widget-image .elementor-widget-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 138px;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 252, 0.98));
  border: 1px solid rgba(68, 121, 176, 0.12);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.page-id-56 .elementor-element-9945e18 img {
  max-width: min(250px, 100%) !important;
  max-height: 86px !important;
}

body.page-id-56 .elementor-element-699026e img,
body.page-id-56 .elementor-element-ac91c6b img {
  max-width: min(116px, 100%) !important;
  max-height: 116px !important;
}

body.page-id-56 .elementor-widget-heading .elementor-heading-title {
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  line-height: 1.25;
  color: var(--xm-ink);
}

body.page-id-56 .elementor-widget-text-editor p {
  margin: 0;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--xm-accent);
}

/* Publications */
body.page-id-125 .elementor-element-c1a1932 {
  margin-bottom: 1.4rem;
}

body.page-id-125 .e-n-accordion {
  counter-reset: publication;
  display: grid;
  gap: 14px;
}

body.page-id-125 .e-n-accordion-item {
  counter-increment: publication;
  background: var(--xm-panel);
  border: 1px solid var(--xm-line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 34, 53, 0.06);
}

body.page-id-125 .e-n-accordion-item[open] {
  border-color: rgba(63, 120, 182, 0.34);
  box-shadow: 0 22px 40px rgba(15, 34, 53, 0.09);
}

body.page-id-125 .e-n-accordion-item-title {
  position: relative;
  padding: 1.2rem 1.35rem 1.2rem 4.1rem;
  list-style: none;
}

body.page-id-125 .e-n-accordion-item-title::-webkit-details-marker {
  display: none;
}

body.page-id-125 .e-n-accordion-item-title::before {
  content: counter(publication, decimal-leading-zero);
  position: absolute;
  left: 1.25rem;
  top: 1.2rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--xm-accent);
}

body.page-id-125 .e-n-accordion-item-title-text {
  font-family: "Roboto Slab", "Lumierepolis", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--xm-ink);
}

body.page-id-125 .e-n-accordion-item-title-icon {
  color: var(--xm-accent);
}

body.page-id-125 .e-n-accordion-item > .e-con {
  padding: 0 1.35rem 1.35rem 4.1rem;
}

body.page-id-125 .e-n-accordion-item .elementor-widget-text-editor p {
  font-size: 0.98rem;
  color: var(--xm-ink-soft);
}

body.page-id-125 .elementor-button {
  min-width: 132px;
}

body.page-id-125 .elementor-element-b0cac33 {
  display: none;
}

/* CV */
body.page-id-108 .elementor {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 1.6rem;
  align-items: stretch;
}

body.page-id-108 .elementor > .e-parent {
  margin: 0;
}

body.page-id-108 .elementor-element-e1e8546 {
  background:
    radial-gradient(circle at 18% 18%, rgba(63, 120, 182, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(9, 24, 37, 0.98), rgba(15, 39, 59, 0.94));
  border: 1px solid rgba(137, 208, 220, 0.14);
  border-radius: 32px;
  box-shadow: 0 24px 44px rgba(9, 24, 37, 0.16);
}

body.page-id-108 .elementor-element-e1e8546 > .e-con-inner {
  height: 100%;
  align-content: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2.5rem 2.4rem;
}

body.page-id-108 .elementor-element-0414d7f .elementor-heading-title {
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  color: #f3fbff;
  text-align: left;
}

body.page-id-108 .elementor-element-0414d7f .elementor-heading-title::before {
  content: "Downloadable PDF";
  display: block;
  margin-bottom: 0.9rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(137, 208, 220, 0.9);
}

body.page-id-108 .elementor-element-5f9ccdf .elementor-button {
  padding: 0.95rem 1.65rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page-id-108 .elementor-element-c2f434d img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 44px rgba(15, 34, 53, 0.12);
}

/* Books */
body.page-id-204 .elementor {
  display: grid;
  gap: 1.4rem;
}

body.page-id-204 .elementor-element-9275175 {
  background: var(--xm-panel);
  border: 1px solid var(--xm-line);
  border-radius: 32px;
  box-shadow: 0 18px 36px rgba(15, 34, 53, 0.06);
}

body.page-id-204 .elementor-element-9275175 > .e-con-inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

body.page-id-204 .elementor-element-a131976 img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(15, 34, 53, 0.14);
}

body.page-id-204 .elementor-element-82f797d .elementor-heading-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  color: var(--xm-ink);
}

body.page-id-204 .elementor-element-82f797d .elementor-heading-title::before {
  content: "Published Work";
  display: block;
  margin-bottom: 0.9rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--xm-accent);
}

body.page-id-204 .elementor-element-abc0dcb > .e-con-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.page-id-204 .elementor-element-abc0dcb > .e-con-inner > .e-con {
  background: var(--xm-panel);
  border: 1px solid var(--xm-line);
  border-radius: 24px;
  min-height: 170px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 14px 28px rgba(15, 34, 53, 0.05);
}

body.page-id-204 .elementor-element-b35d11f,
body.page-id-204 .elementor-element-44d25fb,
body.page-id-204 .elementor-element-2d95394 {
  display: none;
}

body.page-id-204 .elementor-element-abc0dcb .elementor-widget-image img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
}

body.page-id-204 .elementor-element-abc0dcb .elementor-button {
  min-width: 136px;
  padding: 0.82rem 1rem;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shared responsive rules */
@media (max-width: 1080px) {
  body.page-id-108 .elementor {
    grid-template-columns: 1fr;
  }

  body.page-id-48 .elementor-element-7879597 > .e-con-inner,
  body.page-id-204 .elementor-element-9275175 > .e-con-inner {
    grid-template-columns: 1fr;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title,
  body.page-id-108 .elementor-element-0414d7f .elementor-heading-title,
  body.page-id-204 .elementor-element-82f797d .elementor-heading-title {
    text-align: center;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title::after {
    text-align: center;
  }

  body.page-id-48 .elementor-element-9e4c201 {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }

  body.page-id-48 .elementor-element-0d62361,
  body.page-id-48 .elementor-element-d72e47e,
  body.page-id-48 .elementor-element-1cd3fc2,
  body.page-id-48 .elementor-element-0f7afc8 {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
}

@media (max-width: 900px) {
  body.wp-theme-nouvelle .wp-site-blocks,
  body.wp-theme-nouvelle .frame-columns.wp-block-columns,
  body.wp-theme-nouvelle .frame-columns > .wp-block-column,
  body.wp-theme-nouvelle .central-column,
  body.wp-theme-nouvelle .central-column > *,
  body.wp-theme-nouvelle .central-column main,
  body.wp-theme-nouvelle .central-column header,
  body.wp-theme-nouvelle .has-global-padding,
  body.wp-theme-nouvelle img,
  body.wp-theme-nouvelle svg {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.wp-theme-nouvelle .frame-columns.wp-block-columns,
  body.wp-theme-nouvelle .wp-block-columns.is-not-stacked-on-mobile {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
  }

  body.wp-theme-nouvelle .frame-columns > .wp-block-column,
  body.wp-theme-nouvelle .wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
    flex: 1 1 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.page-id-56 .elementor > .e-parent > .e-con-inner,
  body.page-id-204 .elementor-element-abc0dcb > .e-con-inner {
    grid-template-columns: 1fr;
  }

  body.page-id-56 .elementor > .e-parent:not(:last-child)::after {
    display: none;
  }

  body.page-id-56 .elementor-widget-image,
  body.page-id-56 .elementor-widget-heading,
  body.page-id-56 .elementor-widget-text-editor,
  body.page-id-204 .elementor-element-a131976,
  body.page-id-204 .elementor-element-82f797d {
    text-align: center;
  }

  body.page-id-125 .e-n-accordion-item-title,
  body.page-id-125 .e-n-accordion-item > .e-con {
    padding-left: 1.35rem;
  }

  body.page-id-125 .e-n-accordion-item-title::before {
    position: static;
    display: block;
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 720px) {
  body.wp-theme-nouvelle .wp-site-blocks {
    padding: 14px 10px 28px;
  }

  body.wp-theme-nouvelle .central-column {
    width: calc(100vw - 20px) !important;
    border-radius: 24px;
  }

  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child .alignfull {
    padding: 0.9rem 0.85rem !important;
  }

  body.wp-theme-nouvelle .wp-block-site-title {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  body.wp-theme-nouvelle .wp-block-navigation__container {
    gap: 0.65rem !important;
  }

  body.wp-theme-nouvelle .wp-block-navigation-item__content {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  body.wp-theme-nouvelle .wp-block-group.alignwide,
  body.wp-theme-nouvelle .wp-block-post-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.page-id-48 .elementor-element-48b15ef img {
    border-width: 7px;
  }

  body.page-id-48 .elementor-element-6e202ef > .e-con-inner,
  body.page-id-48 .elementor-element-401a206 > .e-con-inner,
  body.page-id-48 .elementor-element-4abca2c > .e-con-inner,
  body.page-id-56 .elementor > .e-parent > .e-con-inner,
  body.page-id-204 .elementor-element-9275175 > .e-con-inner {
    padding: 1.4rem 1.2rem;
  }

  body.page-id-48 .elementor-element-4abca2c::before,
  body.page-id-48 .elementor-element-4abca2c::after {
    left: 1.2rem;
    right: 1.2rem;
  }

  body.page-id-48 .elementor-element-4a0df30 > .e-con-inner {
    gap: 10px;
  }

  body.page-id-48 .elementor-icon-wrapper a {
    width: 48px;
    height: 48px;
  }

  body.page-id-48 .elementor-element-0d62361,
  body.page-id-48 .elementor-element-d72e47e,
  body.page-id-48 .elementor-element-1cd3fc2,
  body.page-id-48 .elementor-element-0f7afc8 {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }

  body.page-id-108 .elementor-element-e1e8546 > .e-con-inner {
    padding: 1.7rem 1.35rem;
  }

  body.page-id-108 .elementor-element-c2f434d img {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  body.wp-theme-nouvelle .alignwide,
  body.wp-theme-nouvelle .central-bleed,
  body.wp-theme-nouvelle .entry-content,
  body.wp-theme-nouvelle .wp-block-post-content,
  body.wp-theme-nouvelle main.alignwide {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.wp-theme-nouvelle .wp-site-blocks,
  body.wp-theme-nouvelle .central-column,
  body.wp-theme-nouvelle .central-column main,
  body.wp-theme-nouvelle .entry-content,
  body.wp-theme-nouvelle .wp-block-post-content,
  body.wp-theme-nouvelle .wp-block-post-content > *,
  body.wp-theme-nouvelle .elementor,
  body.wp-theme-nouvelle .elementor > *,
  body.wp-theme-nouvelle .elementor .e-con,
  body.wp-theme-nouvelle .elementor .e-con-inner,
  body.wp-theme-nouvelle .elementor .elementor-widget,
  body.wp-theme-nouvelle .elementor .elementor-widget-container {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.wp-theme-nouvelle .elementor .elementor-widget-text-editor,
  body.wp-theme-nouvelle .elementor .elementor-widget-text-editor p,
  body.wp-theme-nouvelle .wp-block-post-content p,
  body.wp-theme-nouvelle .wp-block-post-content li,
  body.wp-theme-nouvelle .elementor .elementor-heading-title,
  body.wp-theme-nouvelle .wp-block-post-title {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }

  body.page-id-48 .elementor-element-122e5f9 p,
  body.page-id-48 .elementor-element-2930bb1 p,
  body.page-id-125 .e-n-accordion-item .elementor-widget-text-editor p,
  body.page-id-108 .elementor-widget-text-editor p,
  body.page-id-204 .elementor-widget-text-editor p {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  body.page-id-56 .elementor-widget-text-editor p {
    font-size: 12px !important;
    line-height: 1.8 !important;
  }

  body.wp-theme-nouvelle .wp-block-navigation {
    position: relative;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container-open {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(137, 208, 220, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ecf7ff;
    box-shadow: 0 12px 24px rgba(2, 12, 24, 0.18);
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container:not(.is-menu-open):not(.hidden-by-default) {
    display: none !important;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    bottom: auto;
    width: min(300px, calc(100vw - 24px));
    border-radius: 22px;
    overflow: hidden;
    z-index: 60;
    box-shadow: 0 22px 44px rgba(2, 12, 24, 0.22);
    background:
      radial-gradient(circle at 18% 18%, rgba(63, 120, 182, 0.2), transparent 28%),
      linear-gradient(180deg, rgba(8, 22, 35, 0.98), rgba(10, 24, 37, 0.98)) !important;
    color: #ecf7ff !important;
    padding: 0.9rem !important;
    backdrop-filter: blur(20px) saturate(125%);
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-dialog,
  body.wp-theme-nouvelle .wp-block-navigation__responsive-container-content {
    width: 100%;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-close {
    width: 100%;
    max-width: 100%;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container-close {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(137, 208, 220, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: stretch;
    padding-top: 2.2rem;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    display: flex;
    width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    gap: 0.7rem !important;
    margin: 0;
    padding: 0;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    width: 100%;
    align-items: stretch;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(137, 208, 220, 0.16);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after {
    display: none;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container.is-menu-open .current-menu-item .wp-block-navigation-item__content {
    background: linear-gradient(135deg, rgba(63, 120, 182, 0.78), rgba(26, 165, 184, 0.72));
    border-color: rgba(137, 208, 220, 0.4);
    color: #ffffff;
  }
}

@media (max-width: 600px) {
  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child .alignfull {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.76rem 0.72rem !important;
    position: relative;
  }

  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child .wp-block-group.is-layout-flex {
    min-width: 0;
  }

  body.wp-theme-nouvelle .wp-block-site-title {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child header.wp-block-group.alignwide {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 0.55rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child header.wp-block-group.alignwide > .wp-block-group {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child header.wp-block-group.alignwide > .wp-block-group:last-child {
    margin-left: auto !important;
    justify-self: end !important;
  }

  body.wp-theme-nouvelle .wp-block-navigation__responsive-container-open {
    position: absolute !important;
    top: 50%;
    right: 0.72rem;
    transform: translateY(-50%);
    flex-shrink: 0 !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  body.wp-theme-nouvelle .elementor .e-con-boxed > .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wp-theme-nouvelle .entry-content,
  body.wp-theme-nouvelle .wp-block-post-content,
  body.wp-theme-nouvelle .elementor,
  body.wp-theme-nouvelle .elementor > .e-parent,
  body.wp-theme-nouvelle .elementor .e-parent,
  body.wp-theme-nouvelle .elementor .e-con,
  body.wp-theme-nouvelle .elementor .e-con-inner,
  body.wp-theme-nouvelle .elementor .elementor-widget,
  body.wp-theme-nouvelle .elementor .elementor-widget-container,
  body.wp-theme-nouvelle .elementor .elementor-widget-text-editor,
  body.wp-theme-nouvelle .elementor .elementor-widget-text-editor p {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.wp-theme-nouvelle .elementor .elementor-widget-text-editor p,
  body.wp-theme-nouvelle .elementor .elementor-heading-title {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.wp-theme-nouvelle .wp-site-blocks {
    padding: 8px 4px 22px;
  }

  body.wp-theme-nouvelle .central-column {
    width: calc(100vw - 8px) !important;
    border-radius: 20px;
  }

  body.wp-theme-nouvelle .frame-columns.wp-block-columns,
  body.wp-theme-nouvelle .frame-columns > .wp-block-column,
  body.wp-theme-nouvelle .central-column,
  body.wp-theme-nouvelle .central-column > *,
  body.wp-theme-nouvelle .central-column main,
  body.wp-theme-nouvelle .wp-block-group,
  body.wp-theme-nouvelle .wp-block-columns,
  body.wp-theme-nouvelle .wp-block-column {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.wp-theme-nouvelle .wp-block-group.alignwide,
  body.wp-theme-nouvelle .wp-block-post-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.wp-theme-nouvelle .wp-block-post-title {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  body.page-id-48 .wp-block-post-title::before,
  body.page-id-56 .wp-block-post-title::before,
  body.page-id-125 .wp-block-post-title::before,
  body.page-id-108 .wp-block-post-title::before,
  body.page-id-204 .wp-block-post-title::before {
    margin-bottom: 0.65rem;
    font-size: 0.67rem;
    letter-spacing: 0.18em;
  }

  body.wp-theme-nouvelle .wp-block-post-title::after {
    width: 82px;
    margin-top: 0.72rem;
  }

  body.page-id-48 .elementor-element-7879597 > .e-con-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  body.page-id-48 .elementor-element-7879597 > .e-con-inner,
  body.page-id-48 .elementor-element-7879597 > .e-con-inner > *,
  body.page-id-48 .elementor-element-4592e28,
  body.page-id-48 .elementor-element-4592e28 .elementor-widget-container {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  body.page-id-48 .elementor.elementor-48 {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.page-id-48 .elementor-element-6e202ef,
  body.page-id-48 .elementor-element-401a206,
  body.page-id-48 .elementor-element-4abca2c,
  body.page-id-48 .elementor-element-4a0df30 {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-48 .elementor-element-c57922a {
    width: min(82vw, 280px) !important;
    max-width: min(82vw, 280px) !important;
    margin: 0 auto;
  }

  body.page-id-48 .elementor-element-c57922a .elementor-widget-image,
  body.page-id-48 .elementor-element-c57922a .elementor-widget-container {
    width: 100%;
  }

  body.page-id-48 .elementor-element-4592e28 {
    width: min(86vw, 290px) !important;
    max-width: min(86vw, 290px) !important;
    margin: 0 auto;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title {
    max-width: 100%;
    width: 100% !important;
    font-size: 0 !important;
    line-height: 0;
    letter-spacing: 0;
    white-space: normal;
    overflow: visible;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title::before {
    content: "张晓萌\AXIAOMENG ZHANG";
    display: block;
    white-space: pre-line;
    font-family: "Roboto Slab", "Lumierepolis", "Noto Serif SC", "Songti SC", serif;
    font-size: clamp(1.36rem, 7.6vw, 1.8rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: var(--xm-ink);
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title::after {
    margin-top: 1rem;
    font-size: 0.63rem;
    line-height: 1.7;
    letter-spacing: 0.14em;
  }

  body.page-id-48 .elementor-element-122e5f9 p,
  body.page-id-48 .elementor-element-2930bb1 p {
    font-size: 0.92rem;
    line-height: 1.78;
  }

  body.page-id-48 .elementor-element-6e202ef,
  body.page-id-48 .elementor-element-401a206,
  body.page-id-48 .elementor-element-4abca2c {
    border-radius: 22px;
  }

  body.page-id-48 .elementor-element-4abca2c {
    min-height: 214px;
  }

  body.page-id-48 .elementor-element-4abca2c::before {
    top: 1.2rem;
    left: 1.1rem;
    right: 1.1rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  body.page-id-48 .elementor-element-4abca2c::after {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.66;
  }

  body.page-id-48 .elementor-icon-wrapper a {
    width: 46px;
    height: 46px;
  }

  body.page-id-48 .elementor-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  body.page-id-56 .elementor > .e-parent {
    border-radius: 22px;
  }

  body.page-id-56 .elementor {
    gap: 0.9rem;
  }

  body.page-id-56 .elementor > .e-parent > .e-con-inner {
    gap: 0.9rem;
    padding: 1rem 0.92rem;
  }

  body.page-id-56 .elementor-widget-image .elementor-widget-container {
    min-height: 104px;
    padding: 0.8rem 0.9rem;
  }

  body.page-id-56 .elementor-widget-heading .elementor-heading-title {
    font-size: clamp(1.02rem, 5.4vw, 1.28rem);
    line-height: 1.18;
    text-wrap: balance;
  }

  body.page-id-56 .elementor-widget-text-editor p {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }

  body.page-id-125 .e-n-accordion-item {
    border-radius: 22px;
  }

  body.page-id-125 .e-n-accordion-item-title {
    padding: 0.92rem 0.92rem 0.88rem;
  }

  body.page-id-125 .e-n-accordion-item-title-text {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  body.page-id-125 .e-n-accordion-item > .e-con {
    padding: 0 0.92rem 0.92rem;
  }

  body.page-id-125 .e-n-accordion-item .elementor-widget-text-editor p {
    font-size: 0.9rem !important;
    line-height: 1.78 !important;
  }

  body.page-id-125 .elementor-button,
  body.page-id-108 .elementor-element-5f9ccdf .elementor-button,
  body.page-id-204 .elementor-element-abc0dcb .elementor-button {
    width: 100%;
    justify-content: center;
  }

  body.page-id-108 .elementor-element-e1e8546 {
    border-radius: 24px;
  }

  body.page-id-108 .elementor {
    gap: 1rem;
  }

  body.page-id-108 .elementor-element-e1e8546 > .e-con-inner {
    gap: 0.9rem;
    padding: 1.15rem 0.92rem;
  }

  body.page-id-108 .elementor-element-0414d7f .elementor-heading-title {
    font-size: clamp(1.72rem, 8.2vw, 2.35rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  body.page-id-108 .elementor-element-c2f434d img {
    min-height: 220px;
    border-radius: 24px;
  }

  body.page-id-204 .elementor-element-9275175 {
    border-radius: 24px;
  }

  body.page-id-204 .elementor {
    gap: 1rem;
  }

  body.page-id-204 .elementor-element-9275175 > .e-con-inner {
    gap: 1rem;
    padding: 1rem 0.92rem;
  }

  body.page-id-204 .elementor-element-a131976 {
    max-width: 192px;
    margin: 0 auto;
  }

  body.page-id-204 .elementor-element-82f797d .elementor-heading-title {
    font-size: clamp(1.64rem, 8vw, 2.2rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  body.page-id-204 .elementor-element-abc0dcb > .e-con-inner {
    gap: 0.72rem;
  }

  body.page-id-204 .elementor-element-abc0dcb > .e-con-inner > .e-con {
    min-height: 0;
    padding: 0.92rem 0.85rem;
    border-radius: 20px;
  }

  body.page-id-204 .elementor-element-abc0dcb .elementor-button {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 420px) {
  body.wp-theme-nouvelle .central-column .wp-block-template-part:first-child .alignfull {
    gap: 0.42rem;
    padding: 0.72rem 0.58rem !important;
  }

  body.wp-theme-nouvelle .wp-block-site-title {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  body.page-id-48 .elementor-element-c57922a {
    width: min(78vw, 246px) !important;
    max-width: min(78vw, 246px) !important;
  }

  body.page-id-48 .elementor-element-4592e28 {
    width: min(82vw, 250px) !important;
    max-width: min(82vw, 250px) !important;
  }

  body.page-id-48 .elementor-element-48b15ef img {
    border-width: 6px;
    border-radius: 24px;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title {
    font-size: 0 !important;
    line-height: 0;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title::before {
    font-size: clamp(1.14rem, 7vw, 1.46rem);
    line-height: 1.06;
  }

  body.page-id-48 .elementor-element-4592e28 .elementor-heading-title::after {
    font-size: 0.56rem;
    letter-spacing: 0.11em;
    line-height: 1.62;
  }

  body.page-id-48 .elementor-element-6e202ef > .e-con-inner,
  body.page-id-48 .elementor-element-401a206 > .e-con-inner,
  body.page-id-48 .elementor-element-4abca2c > .e-con-inner {
    padding: 1.12rem 0.95rem;
  }

  body.page-id-48 .elementor-element-122e5f9 p,
  body.page-id-48 .elementor-element-2930bb1 p {
    font-size: 0.87rem;
    line-height: 1.72;
  }
}