/* ===== 项目展示 Section（使用公共 .section-surface 样式） ===== */
.creation-showcase {
  padding: clamp(56px, 7vw, 96px) clamp(32px, 5vw, 72px);
}
.creation-showcase__inner {
  max-width: none;
  margin: 0;
  padding: 0;
}
.creation-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.creation-showcase__heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.creation-showcase__index {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 600;
  color: #C9C4B8;
  letter-spacing: 0.08em;
}
.creation-showcase__title {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #17141F;
}
.creation-showcase__title-gradient {
  background: linear-gradient(90deg, #4F46E5 0%, #7C5CF6 55%, #A855F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.creation-showcase__lead {
  margin: 0 0 10px;
  font-size: 14px;
  color: #A5A093;
  white-space: nowrap;
}

.creation-showcase__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}
.creation-showcase__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.creation-showcase__filter {
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #E8E3F0;
  background: rgba(255,255,255,.64);
  color: #8B8677;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.creation-showcase__filter:hover { border-color: #D9D3E8; color: #55514A; background: rgba(255,255,255,.78); }
.creation-showcase__filter.is-active {
  background: #1B1523;
  border-color: #1B1523;
  color: #FFFFFF;
  font-weight: 600;
}
.creation-showcase__more {
  font-size: 14px;
  font-weight: 600;
  color: #17141F;
  text-decoration: none;
  white-space: nowrap;
}
.creation-showcase__more span { color: #E0559A; margin-left: 3px; }
.creation-showcase__more:hover span { transform: translate(2px,-2px); transition: transform .2s ease; }

.creation-showcase__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.creation-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.94);
  border: 1px solid #EFECE2;
  border-radius: 28px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.creation-card:hover { transform: translateY(-3px); border-color: #E2DDCE; box-shadow: 0 12px 35px rgba(90,70,130,.05); }
.creation-card__link { display: block; text-decoration: none; color: inherit; }
.creation-card__visual {
  position: relative;
  height: 262px;
  overflow: hidden;
}
.creation-card__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
.creation-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.creation-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #1B1523;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
}
.creation-card__badge--dark { background:#1B1523; color:#fff; }
.creation-card__kicker {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(23,20,31,.45);
  text-transform: uppercase;
}
.creation-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 26px 20px;
}
.creation-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.creation-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.creation-card__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.creation-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #17141F;
  text-decoration: none;
}
.creation-card__name:hover { color: #4F46E5; }
.creation-card__meta {
  font-size: 12px;
  color: #A5A093;
}
.creation-card__follow {
  margin-left: auto;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  background: #F0EDFF;
  color: #6C5CE7;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, color .2s ease;
}
.creation-card__follow:hover { background: #E4DFFF; }
.creation-card__follow.is-following { background: #1B1523; color: #fff; }
.creation-card__follow.is-following:hover { background: #2A222E; }

.creation-card__title {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #17141F;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.creation-card__title a { color: inherit; text-decoration: none; }
.creation-card__title a:hover { color: #4F46E5; }
.creation-card__excerpt {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #8B8677;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.creation-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}
.creation-card__tag {
  font-size: 12px;
  color: #726D5F;
  background: #F4F1E9;
  padding: 6px 11px;
  border-radius: 8px;
  line-height: 1;
}
.creation-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #F1EEE5;
}
.creation-card__stats { display: flex; gap: 18px; font-size: 13px; color: #A5A093; }
.creation-card__time { font-size: 12px; color: #B8B3A6; }

/* 响应式 */
@media (max-width: 1280px) {
  .creation-showcase__inner { padding: 0 56px; }
  .creation-showcase__title { font-size: 44px; }
  .creation-showcase__lead { white-space: normal; }
}
@media (max-width: 1024px) {
  .creation-showcase { padding: 68px 0 70px; }
  .creation-showcase__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .creation-showcase__header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .creation-showcase__toolbar { margin-top: 32px; }
}
@media (max-width: 680px) {
  .creation-showcase { padding: 52px 0 56px; }
  .creation-showcase__inner { padding: 0 24px; }
  .creation-showcase__title { font-size: 32px; }
  .creation-showcase__heading { gap: 10px; }
  .creation-showcase__index { font-size: 12px; margin-top: 5px; }
  .creation-showcase__toolbar { margin-top: 28px; flex-wrap: wrap; }
  .creation-showcase__grid { grid-template-columns: 1fr; margin-top: 24px; gap: 18px; }
  .creation-card__visual { height: 220px; }
  .creation-showcase__more { width: 100%; text-align: right; margin-top: 8px; }
}