/* ========================================================================
   components.css — 组件样式：跑马灯、时间线、关于、联系
   ======================================================================== */

/* ─────────────── ABOUT 卡片 ─────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}
.about-lead {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-text p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
}
.about-text p:last-child {
  opacity: 0.7;
}
.skills-title {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.6;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill-tags li {
  font-family: var(--font-label);
  font-size: 13px;
  padding: 8px 16px;
  background: var(--card-color);
  color: var(--cream);
  border-radius: 2px;
  transform: rotate(-1deg);
  transition: transform 0.2s var(--ease-main);
}
.skill-tags li:nth-child(even) {
  transform: rotate(1deg);
}
.skill-tags li:hover {
  transform: rotate(0) scale(1.05);
}

/* ─────────────── WORKS 卡片 ─────────────── */
.works-intro {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 30px;
}

/* 案例跑马灯 (skill §3.2) */
.marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(66, 54, 40, 0.16);
  border-bottom: 1px solid rgba(66, 54, 40, 0.16);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
.marquee-item {
  flex: 0 0 280px;
  height: 158px; /* 16:9 封面比例 */
  background: var(--card-color);
  border: 1px solid rgba(66, 54, 40, 0.2);
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease-main), box-shadow 0.25s;
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.marquee-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.marquee-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b8b0a0, #8a8275);
  color: var(--cream);
  font-size: 13px;
  text-align: center;
  padding: 8px;
}
.marquee-thumb-soon {
  background: repeating-linear-gradient(
    -45deg,
    #c5bfb2,
    #c5bfb2 8px,
    #b8b0a0 8px,
    #b8b0a0 16px
  );
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.marquee-item:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.marquee-item.active {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* 视频舞台：介绍 → 播放器 → 封面跑马灯，播放器落在首屏中部 */
.media-stage {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* 底部装饰贴图（视频卡片） */
.cat-figure--end {
  margin: 50px auto 10px;
}

/* 视频详情区（B 站 iframe 嵌入） */
.works-detail {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.works-video-box {
  width: 60%;
  position: relative;
  padding-bottom: 37.5%; /* 16:9 比例 */
  height: 0;
  background: var(--ink);
  border-radius: 2px;
  overflow: hidden;
}
.works-video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.works-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 238, 230, 0.5);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.works-detail-info {
  flex: 1;
}
#works-title {
  font-size: 22px;
  margin-bottom: 12px;
}
#works-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 12px;
}
#works-meta {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ─────────────── 板块拼贴贴图（skill §1.3 撕纸质感） ─────────────── */
/* 公共：贴图舞台 */
.cat-figure {
  position: relative;
  height: 240px;
  margin: 0 auto 36px;
  max-width: 660px;
}
.cat-figure > div {
  position: absolute;
}

/* ── 1. 品牌宣传拼贴：人物 + KAI 手举牌 + 数据图表 + 彩带 ── */
.brand-collage .bc-person {
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 120px;
  height: 190px;
}
.brand-collage .bc-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 50px;
  background: rgba(41, 38, 38, 0.82);
  border-radius: 50% 50% 46% 46%;
}
.brand-collage .bc-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 130px;
  background: rgba(41, 38, 38, 0.72);
  clip-path: polygon(22% 0, 78% 0, 100% 30%, 97% 100%, 3% 100%, 0 30%);
}
.brand-collage .bc-sign {
  top: 6px;
  right: 15%;
  padding: 10px 22px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transform: rotate(6deg);
  clip-path: polygon(2% 6%, 98% 0, 100% 94%, 3% 100%, 0 40%);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.brand-collage .bc-sign::after {
  content: attr(data-shadow);
  position: absolute;
  top: 2px;
  left: 4px;
  color: rgba(41, 38, 38, 0.28);
}
.brand-collage .bc-chart {
  bottom: 22px;
  left: 8%;
  width: 96px;
  height: 74px;
  background: var(--cream);
  transform: rotate(-5deg);
  clip-path: polygon(0 8%, 100% 0, 96% 100%, 4% 96%);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}
.brand-collage .bc-chart i {
  position: absolute;
  bottom: 8px;
  width: 16px;
  background: #78816d;
}
.brand-collage .bc-chart i:nth-child(1) { left: 14px; height: 26px; }
.brand-collage .bc-chart i:nth-child(2) { left: 38px; height: 42px; }
.brand-collage .bc-chart i:nth-child(3) { left: 62px; height: 56px; }
.brand-collage .bc-arrow {
  top: 78px;
  left: 14%;
  width: 58px;
  height: 3px;
  background: rgba(41, 38, 38, 0.6);
  transform: rotate(-32deg);
}
.brand-collage .bc-arrow::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -8px;
  border-left: 12px solid rgba(41, 38, 38, 0.6);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.brand-collage .bc-heart {
  top: 30px;
  left: 20%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: #c98d80;
  color: var(--cream);
  font-size: 16px;
  border-radius: 50%;
  transform: rotate(-8deg);
}
.brand-collage .bc-ribbon {
  background: #6f687b;
  opacity: 0.85;
}
.brand-collage .r1 {
  top: 0;
  left: 4%;
  width: 90px;
  height: 14px;
  transform: rotate(-16deg);
}
.brand-collage .r2 {
  bottom: 12px;
  right: 6%;
  width: 74px;
  height: 12px;
  background: #9a6a5a;
  transform: rotate(12deg);
}
.brand-collage .bc-star {
  top: 44px;
  right: 6%;
  color: #b49a71;
  font-size: 22px;
  transform: rotate(10deg);
}

/* ── 2. 漫剧贴图：站姿人物 + 分镜框 + 对话气泡 + 速度线 ── */
.comics-figure .cf-person {
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 104px;
  height: 186px;
}
.comics-figure .cf-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 46px;
  background: rgba(41, 38, 38, 0.85);
  border-radius: 50%;
}
.comics-figure .cf-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 132px;
  background: rgba(41, 38, 38, 0.75);
  clip-path: polygon(18% 0, 82% 0, 94% 100%, 6% 100%);
}
.comics-figure .cf-panel {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(41, 38, 38, 0.8);
}
.comics-figure .p1 {
  top: 8px;
  left: 7%;
  width: 88px;
  height: 62px;
  transform: rotate(-4deg);
}
.comics-figure .p1 span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 4px;
  height: 34px;
  background: var(--ink);
  transform: skewX(-18deg);
}
.comics-figure .p1 span:nth-child(2) { left: 28px; height: 24px; }
.comics-figure .p1 span:nth-child(3) { left: 46px; height: 40px; }
.comics-figure .p2 {
  top: 92px;
  left: 13%;
  width: 70px;
  height: 54px;
  transform: rotate(3deg);
}
.comics-figure .p2 b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.comics-figure .p3 {
  bottom: 30px;
  right: 9%;
  width: 84px;
  height: 58px;
  transform: rotate(-2deg);
  background:
    linear-gradient(135deg, transparent 46%, var(--ink) 46%, var(--ink) 54%, transparent 54%),
    var(--cream);
}
.comics-figure .cf-bubble {
  top: 2px;
  right: 16%;
  min-width: 52px;
  padding: 10px 16px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.15em;
  transform: rotate(5deg);
}
.comics-figure .cf-bubble::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 14px;
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg);
}
.comics-figure .cf-slash {
  top: 118px;
  left: 4%;
  width: 66px;
  height: 5px;
  background: var(--ink);
  transform: rotate(-24deg);
  opacity: 0.75;
}
.comics-figure .cf-slash::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 44px;
  height: 4px;
  background: var(--ink);
  opacity: 0.5;
}
.comics-figure .cf-star {
  top: 34px;
  left: 30%;
  color: #6f687b;
  font-size: 20px;
  transform: rotate(-12deg);
}

/* ── 3. 带货直播贴图：站立女孩 + 三脚架 + 衣架 + 吊牌 ── */
.commerce-figure .mc-person {
  left: 44%;
  bottom: 10px;
  width: 116px;
  height: 196px;
}
.commerce-figure .mc-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 48px;
  background: rgba(41, 38, 38, 0.82);
  border-radius: 50% 50% 44% 44%;
}
.commerce-figure .mc-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 142px;
  background: rgba(41, 38, 38, 0.72);
  clip-path: polygon(24% 0, 76% 0, 92% 100%, 8% 100%);
}
/* 一手上举展示衣服 */
.commerce-figure .mc-arm {
  position: absolute;
  top: 52px;
  right: -26px;
  width: 58px;
  height: 12px;
  background: rgba(41, 38, 38, 0.72);
  border-radius: 8px;
  transform: rotate(-26deg);
  transform-origin: left center;
}
.commerce-figure .mc-tripod {
  bottom: 12px;
  left: 6%;
  width: 64px;
  height: 108px;
}
.commerce-figure .mc-tripod b {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 52px;
  background: var(--ink);
  border: 3px solid var(--cream);
  border-radius: 5px;
}
.commerce-figure .mc-tripod i {
  position: absolute;
  bottom: -2px;
  width: 4px;
  height: 56px;
  background: rgba(41, 38, 38, 0.8);
}
.commerce-figure .mc-tripod i:nth-child(1) { left: 8px; transform: rotate(16deg); }
.commerce-figure .mc-tripod i:nth-child(2) { left: 30px; }
.commerce-figure .mc-tripod i:nth-child(3) { right: 8px; transform: rotate(-16deg); }
.commerce-figure .mc-hanger {
  top: 14px;
  right: 13%;
  width: 84px;
  height: 96px;
}
.commerce-figure .mc-hanger span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border: 4px solid rgba(41, 38, 38, 0.8);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
}
.commerce-figure .mc-hanger i {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 64px solid #c98d80;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18));
}
.commerce-figure .mc-tag {
  top: 66px;
  right: 5%;
  padding: 8px 12px;
  background: var(--cream);
  color: #9a6a5a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(8deg);
  clip-path: polygon(0 18%, 12% 0, 100% 6%, 96% 100%, 4% 96%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.16);
}
.commerce-figure .mc-tag::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 8px;
  width: 2px;
  height: 16px;
  background: rgba(41, 38, 38, 0.55);
  transform: rotate(10deg);
}
.commerce-figure .mc-heart {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: var(--cream);
  font-size: 14px;
}
.commerce-figure .h1 {
  top: 20px;
  left: 16%;
  background: #c98d80;
  transform: rotate(-10deg);
}
.commerce-figure .h2 {
  top: 58px;
  left: 8%;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 11px;
  background: rgba(201, 141, 128, 0.8);
}
.commerce-figure .mc-spark {
  bottom: 40px;
  right: 4%;
  color: #b49a71;
  font-size: 20px;
  transform: rotate(14deg);
}

/* ── 4. 日志少女贴图：坐姿剪影 + 笔记本 + 咖啡 + 盆栽 ── */
.journal-figure .jf-person {
  left: 50%;
  bottom: 6px;
  transform: translateX(-58%);
  width: 128px;
  height: 168px;
}
.journal-figure .jf-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 48px;
  background: rgba(41, 38, 38, 0.82);
  border-radius: 50% 50% 44% 44%;
}
.journal-figure .jf-body {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 74px;
  background: rgba(41, 38, 38, 0.72);
  border-radius: 40px 40px 12px 12px;
}
/* 蜷坐的腿 */
.journal-figure .jf-legs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 56px;
  background: rgba(41, 38, 38, 0.6);
  border-radius: 50% 50% 40% 40%;
}
.journal-figure .jf-notebook {
  top: 92px;
  left: 58%;
  width: 92px;
  height: 62px;
  background: var(--cream);
  transform: rotate(6deg);
  clip-path: polygon(0 10%, 100% 0, 97% 92%, 3% 100%);
  box-shadow: 0 5px 14px rgba(0,0,0,0.2);
}
.journal-figure .jf-notebook i {
  position: absolute;
  left: 12px;
  right: 14px;
  height: 2px;
  background: rgba(41, 38, 38, 0.35);
}
.journal-figure .jf-notebook i:nth-child(1) { top: 16px; }
.journal-figure .jf-notebook i:nth-child(2) { top: 28px; }
.journal-figure .jf-notebook i:nth-child(3) { top: 40px; width: 60%; }
.journal-figure .jf-pen {
  top: 76px;
  left: 66%;
  width: 52px;
  height: 6px;
  background: #9a6a5a;
  border-radius: 3px;
  transform: rotate(34deg);
}
.journal-figure .jf-pen::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -1px;
  border-left: 12px solid #9a6a5a;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.journal-figure .jf-cup {
  top: 122px;
  left: 16%;
  width: 40px;
  height: 34px;
  background: var(--cream);
  border-radius: 4px 4px 10px 10px;
  transform: rotate(-4deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.journal-figure .jf-cup span {
  position: absolute;
  top: -14px;
  left: 12px;
  width: 3px;
  height: 12px;
  background: rgba(41, 38, 38, 0.4);
  border-radius: 3px;
  transform: skewX(-14deg);
}
.journal-figure .jf-cup span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 3px;
  height: 9px;
  background: rgba(41, 38, 38, 0.3);
  transform: skewX(14deg);
}
.journal-figure .jf-plant {
  bottom: 8px;
  left: 10%;
  width: 66px;
  height: 86px;
}
.journal-figure .jf-plant i {
  position: absolute;
  bottom: 22px;
  width: 22px;
  height: 44px;
  background: #78816d;
  border-radius: 50% 50% 46% 46%;
}
.journal-figure .jf-plant i:nth-child(1) { left: 2px; transform: rotate(-22deg); opacity: 0.85; }
.journal-figure .jf-plant i:nth-child(2) { left: 22px; height: 52px; }
.journal-figure .jf-plant i:nth-child(3) { right: 2px; transform: rotate(22deg); opacity: 0.85; }
.journal-figure .jf-plant::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 26px;
  background: #b49a71;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}
.journal-figure .jf-star {
  top: 26px;
  right: 12%;
  color: #c98d80;
  font-size: 22px;
  transform: rotate(-8deg);
}

/* ─────────────── 个人日志便签 UI ─────────────── */
.journal-entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}
.journal-entry {
  position: relative;
  background: rgba(242, 238, 230, 0.94);
  padding: 36px 22px 24px;
  clip-path: polygon(1% 3%, 99% 0, 100% 97%, 2% 100%, 0 30%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  transform: rotate(-0.8deg);
  transition: transform 0.3s cubic-bezier(0.22, 0.72, 0.22, 1), box-shadow 0.3s ease;
}
.journal-entry:nth-child(2n) {
  transform: rotate(0.7deg);
}
.journal-entry:nth-child(3n) {
  transform: rotate(-0.3deg);
}
.journal-entry:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}
/* 和纸胶带 */
.je-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 74px;
  height: 22px;
  opacity: 0.85;
}
.journal-entry[data-tape="green"] .je-tape { background: #78816d; }
.journal-entry[data-tape="rose"] .je-tape { background: #c98d80; }
.journal-entry[data-tape="blue"] .je-tape { background: #a5b1b2; }
.je-date {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}
.je-title {
  font-size: 18px;
  margin: 8px 0 10px;
  color: var(--ink);
}
.je-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(41, 38, 38, 0.82);
  white-space: pre-line;
  overflow-wrap: anywhere;
}

/* ─────────────── CONTACT 卡片 ─────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid rgba(66, 54, 40, 0.16);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-main), box-shadow 0.25s;
  cursor: default;
}
a.contact-item {
  cursor: pointer;
}
a.contact-item:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.contact-icon {
  font-size: 28px;
}
.contact-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.contact-value {
  font-size: 17px;
  font-weight: 700;
  word-break: break-all;
}
.contact-footer {
  text-align: center;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-top: 20px;
}

/* ─────────────── 响应式 (skill §11 @media 680px) ─────────────── */
@media (max-width: 680px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 10px;
  }
  .hero-content {
    flex-direction: column;
    padding: 80px 20px 0;
    text-align: center;
  }
  .hero-text {
    width: 100%;
  }
  .hero-name {
    font-size: 52px;
  }
  .hero-stats {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .stat-num {
    font-size: 28px;
  }
  .hero-figure {
    width: 100%;
    min-height: 260px;
  }
  .hero-figure-img {
    width: min(100%, 240px);
  }
  .card-crown {
    font-size: 64px;
    left: 20px;
  }
  .card-sticky-note {
    top: 110px;
    left: 24px;
  }
  .card-inner {
    padding: 50px 24px 60px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .works-detail {
    flex-direction: column;
  }
  .works-video-box {
    width: 100%;
  }
  /* 板块贴图：缩小舞台，隐藏部分装饰元素避免拥挤 */
  .cat-figure {
    height: 190px;
  }
  .cat-figure--end {
    margin: 40px auto 10px;
  }
  .brand-collage .bc-arrow,
  .brand-collage .bc-heart {
    display: none;
  }
  .comics-figure .cf-slash,
  .comics-figure .cf-star {
    display: none;
  }
  .commerce-figure .mc-heart.h2,
  .commerce-figure .mc-spark {
    display: none;
  }
  .journal-figure .jf-star {
    display: none;
  }
  /* 日志便签单列 */
  .journal-entries {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
