/* ── TEMPLATE PICKER (wizard new step 1) ── */
.tpl-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.tpl-pick-card {
  cursor: pointer;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  user-select: none;
}
.tpl-pick-card:hover {
  border-color: #6366f1;
  box-shadow: 0 4px 16px rgba(99,102,241,.15);
}
.tpl-pick-card.selected {
  border-color: #1e293b;
  box-shadow: 0 0 0 3px rgba(99,102,241,.25);
}
.tpl-pick-thumb {
  width: 100%;
  height: 90px;
  overflow: hidden;
  position: relative;
}
.tpl-pick-thumb > * {
  height: 100%;
  min-height: 90px;
}
.tpl-pick-label {
  padding: 5px 7px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.tpl-pick-label strong {
  font-size: 10.5px;
  display: block;
  color: #1e293b;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── WIZARD FULL-WIDTH STEP 1 ── */
.wizard-shell.new-step1 .wizard-body {
  grid-template-columns: 1fr !important;
}
.wizard-shell.new-step1 .wizard-preview {
  display: none !important;
}
.wizard-shell.new-step1 .wizard-panel {
  border-right: 0;
  max-width: 100%;
}

/* ── 50 TEMPLATE THUMBNAIL STYLES ── */

/* 1. Modern Professional — dark slate sidebar */
.thumb-modern { background: #fff; display: flex; height: 100%; }
.thumb-modern .t-side { width: 36%; background: #1e293b; padding: 10px 8px; }
.thumb-modern .t-side .t-avatar { width: 36px; height: 36px; border-radius: 50%; background: #475569; margin: 0 auto 8px; }
.thumb-modern .t-side .t-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); margin: 4px 0; }
.thumb-modern .t-side .t-line.w60 { width: 60%; }
.thumb-modern .t-side .t-line.w80 { width: 80%; }
.thumb-modern .t-side .t-line.w45 { width: 45%; }
.thumb-modern .t-main { flex: 1; padding: 10px 8px; }
.thumb-modern .t-main .t-line { height: 4px; border-radius: 2px; background: #e2e8f0; margin: 5px 0; }
.thumb-modern .t-main .t-line.w90 { width: 90%; }
.thumb-modern .t-main .t-line.w70 { width: 70%; }
.thumb-modern .t-main .t-line.w55 { width: 55%; }
.thumb-modern .t-main .t-accent { height: 3px; border-radius: 1px; background: #6366f1; width: 30%; margin: 6px 0 3px; }

/* 2. Minimalist — clean single col */
.thumb-minimal { background: #fff; padding: 12px; height: 100%; }
.thumb-minimal .t-name { height: 8px; border-radius: 3px; background: #0f172a; width: 60%; margin-bottom: 5px; }
.thumb-minimal .t-role { height: 4px; border-radius: 2px; background: #94a3b8; width: 40%; margin-bottom: 12px; }
.thumb-minimal .t-divider { height: 1px; background: #e2e8f0; margin: 7px 0; }
.thumb-minimal .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 4px 0; }
.thumb-minimal .t-line.w90 { width: 90%; }
.thumb-minimal .t-line.w75 { width: 75%; }
.thumb-minimal .t-line.w60 { width: 60%; }

/* 3. Creative Tech — gradient purple sidebar */
.thumb-creative { background: #fff; display: flex; height: 100%; }
.thumb-creative .t-side { width: 38%; background: linear-gradient(180deg, #6366f1, #8b5cf6); padding: 10px 6px; }
.thumb-creative .t-side .t-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.3); margin: 0 auto 8px; }
.thumb-creative .t-side .t-line { height: 3px; border-radius: 2px; background: rgba(255,255,255,.4); margin: 5px 0; }
.thumb-creative .t-side .t-badge { height: 10px; border-radius: 4px; background: rgba(255,255,255,.25); margin: 5px 0; width: 80%; }
.thumb-creative .t-main { flex: 1; padding: 10px 8px; }
.thumb-creative .t-main .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 5px 0; }
.thumb-creative .t-main .t-line.w90 { width: 90%; }
.thumb-creative .t-main .t-line.w70 { width: 70%; }
.thumb-creative .t-main .t-line.w55 { width: 55%; }

/* 4. Executive — formal, dark header */
.thumb-exec { background: #fff; height: 100%; display: flex; flex-direction: column; }
.thumb-exec .t-header { background: #0f172a; padding: 12px; }
.thumb-exec .t-header .t-name { height: 7px; border-radius: 2px; background: #fff; width: 55%; margin-bottom: 5px; }
.thumb-exec .t-header .t-role { height: 4px; border-radius: 2px; background: #94a3b8; width: 38%; }
.thumb-exec .t-body { flex: 1; padding: 10px; }
.thumb-exec .t-divider { height: 2px; background: #0f172a; margin: 7px 0 4px; width: 100%; }
.thumb-exec .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 4px 0; }
.thumb-exec .t-line.w90 { width: 90%; }
.thumb-exec .t-line.w70 { width: 70%; }
.thumb-exec .t-line.w50 { width: 50%; }

/* 5. Junior Developer — blue top bar, badges */
.thumb-junior { background: #fff; height: 100%; display: flex; flex-direction: column; }
.thumb-junior .t-header { background: #2563eb; padding: 12px 10px; }
.thumb-junior .t-header .t-name { height: 7px; border-radius: 2px; background: #fff; width: 58%; margin-bottom: 5px; }
.thumb-junior .t-header .t-role { height: 4px; border-radius: 2px; background: rgba(255,255,255,.5); width: 42%; }
.thumb-junior .t-body { flex: 1; padding: 10px; }
.thumb-junior .t-badges { display: flex; gap: 4px; flex-wrap: wrap; margin: 6px 0; }
.thumb-junior .t-badge { height: 10px; border-radius: 4px; background: #dbeafe; width: 28px; }
.thumb-junior .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 4px 0; }
.thumb-junior .t-line.w90 { width: 90%; }
.thumb-junior .t-line.w65 { width: 65%; }

/* 6. Product Designer — warm off-white, teal accent */
.thumb-designer { background: #fafaf9; height: 100%; display: flex; flex-direction: column; }
.thumb-designer .t-top { padding: 12px; border-bottom: 2px solid #14b8a6; }
.thumb-designer .t-top .t-name { height: 7px; border-radius: 2px; background: #0f172a; width: 55%; margin-bottom: 5px; }
.thumb-designer .t-top .t-role { height: 4px; border-radius: 2px; background: #14b8a6; width: 38%; }
.thumb-designer .t-body { flex: 1; padding: 10px; }
.thumb-designer .t-img { height: 28px; border-radius: 6px; background: #e5e7eb; margin-bottom: 8px; }
.thumb-designer .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 4px 0; }
.thumb-designer .t-line.w90 { width: 90%; }
.thumb-designer .t-line.w65 { width: 65%; }

/* 7. Lauren Chen — teal top block with skill bars */
.thumb-lauren { background: #fff; height: 100%; display: flex; flex-direction: column; }
.thumb-lauren .t-header { background: #0d9488; padding: 12px 10px 10px; display: flex; align-items: center; gap: 8px; }
.thumb-lauren .t-header .t-havatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.thumb-lauren .t-header .t-name { height: 7px; border-radius: 2px; background: #fff; width: 60%; margin-bottom: 5px; }
.thumb-lauren .t-header .t-role { height: 4px; border-radius: 2px; background: rgba(255,255,255,.55); width: 42%; }
.thumb-lauren .t-body { flex: 1; padding: 10px; display: flex; gap: 8px; }
.thumb-lauren .t-left { width: 42%; }
.thumb-lauren .t-right { flex: 1; }
.thumb-lauren .t-bar-wrap { margin: 5px 0; }
.thumb-lauren .t-bar-bg { height: 4px; border-radius: 2px; background: #e2e8f0; }
.thumb-lauren .t-bar-fill { height: 4px; border-radius: 2px; background: #0d9488; margin-top: -4px; }
.thumb-lauren .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 4px 0; }
.thumb-lauren .t-line.w90 { width: 90%; }
.thumb-lauren .t-line.w65 { width: 65%; }

/* 8. Nina Lane — dark bg, yellow accents */
.thumb-nina { background: #111827; height: 100%; display: flex; flex-direction: column; padding: 12px; }
.thumb-nina .t-navatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); margin-bottom: 8px; }
.thumb-nina .t-name { height: 7px; border-radius: 2px; background: #fff; width: 58%; margin-bottom: 5px; }
.thumb-nina .t-role { height: 4px; border-radius: 2px; background: #fbbf24; width: 40%; margin-bottom: 12px; }
.thumb-nina .t-divider { height: 1px; background: rgba(251,191,36,.3); margin: 6px 0; }
.thumb-nina .t-dot-row { display: flex; align-items: center; gap: 5px; margin: 5px 0; }
.thumb-nina .t-dot { width: 5px; height: 5px; border-radius: 50%; background: #fbbf24; flex-shrink: 0; }
.thumb-nina .t-line { height: 3px; border-radius: 1.5px; background: rgba(255,255,255,.15); flex: 1; }

/* 9. Markus Johnson — light + green sidebar */
.thumb-markus { background: #fff; display: flex; height: 100%; }
.thumb-markus .t-side { width: 36%; background: #166534; padding: 10px 6px; }
.thumb-markus .t-side .t-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.25); margin: 0 auto 8px; }
.thumb-markus .t-side .t-dot-row { display: flex; align-items: center; gap: 3px; margin: 5px 0; }
.thumb-markus .t-side .t-sdot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.thumb-markus .t-side .t-sline { height: 3px; border-radius: 1.5px; background: rgba(255,255,255,.3); flex: 1; }
.thumb-markus .t-main { flex: 1; padding: 10px 8px; }
.thumb-markus .t-main .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 5px 0; }
.thumb-markus .t-main .t-line.w90 { width: 90%; }
.thumb-markus .t-main .t-line.w70 { width: 70%; }
.thumb-markus .t-main .t-line.w55 { width: 55%; }
.thumb-markus .t-main .t-accent { height: 3px; background: #166534; width: 32%; margin: 6px 0 3px; border-radius: 1px; }

/* 10. Software Engineer — navy sidebar, skill chips */
.thumb-se { background: #fff; display: flex; height: 100%; }
.thumb-se .t-side { width: 36%; background: #1e3a5f; padding: 10px 6px; }
.thumb-se .t-side .t-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.2); margin: 0 auto 8px; }
.thumb-se .t-side .t-chip { height: 9px; border-radius: 3px; background: rgba(96,165,250,.5); margin: 5px 0; }
.thumb-se .t-side .t-chip.w70 { width: 70%; }
.thumb-se .t-side .t-chip.w55 { width: 55%; }
.thumb-se .t-side .t-chip.w80 { width: 80%; }
.thumb-se .t-main { flex: 1; padding: 10px 8px; }
.thumb-se .t-main .t-line { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 5px 0; }
.thumb-se .t-main .t-line.w90 { width: 90%; }
.thumb-se .t-main .t-line.w70 { width: 70%; }
.thumb-se .t-main .t-accent { height: 2px; background: #3b82f6; width: 28%; margin: 6px 0 3px; border-radius: 1px; }

/* 11. Coral Pop */
.thumb-coral { background: #fff; height: 100%; display: flex; flex-direction: column; }
.thumb-coral .t-header { background: linear-gradient(135deg,#f97316,#ef4444); padding: 12px 10px; display: flex; align-items: center; gap: 8px; }
.thumb-coral .t-header .t-havatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.thumb-coral .t-header .t-name { height: 7px; border-radius: 2px; background: #fff; width: 58%; margin-bottom: 5px; }
.thumb-coral .t-header .t-role { height: 4px; border-radius: 2px; background: rgba(255,255,255,.55); width: 40%; }
.thumb-coral .t-body { flex: 1; padding: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.thumb-coral .t-card { border: 1px solid #fde8d8; border-radius: 5px; padding: 5px; }
.thumb-coral .t-cline { height: 3px; border-radius: 1.5px; background: #fde8d8; margin: 3px 0; }
.thumb-coral .t-cline.w90 { width: 90%; } .thumb-coral .t-cline.w65 { width: 65%; } .thumb-coral .t-cline.w75 { width: 75%; }

/* 12. Rose Gold */
.thumb-rose { background: #fff7f7; display: flex; height: 100%; }
.thumb-rose .t-side { width: 36%; background: linear-gradient(180deg,#be185d,#9d174d); padding: 10px 6px; }
.thumb-rose .t-side .t-circle { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.3); margin: 0 auto 8px; }
.thumb-rose .t-side .t-rline { height: 3px; border-radius: 2px; background: rgba(255,255,255,.4); margin: 5px 0; }
.thumb-rose .t-side .t-rline.w80 { width: 80%; } .thumb-rose .t-side .t-rline.w60 { width: 60%; }
.thumb-rose .t-main { flex: 1; padding: 10px 8px; }
.thumb-rose .t-main .t-raccent { height: 2px; background: #be185d; width: 35%; margin: 6px 0 3px; border-radius: 1px; }
.thumb-rose .t-main .t-rline { height: 3px; border-radius: 1.5px; background: #fce7f3; margin: 4px 0; }
.thumb-rose .t-main .t-rline.w90 { width: 90%; } .thumb-rose .t-main .t-rline.w70 { width: 70%; } .thumb-rose .t-main .t-rline.w55 { width: 55%; }

/* 13. Forest */
.thumb-forest { background: #f0fdf4; display: flex; height:100%; }
.thumb-forest .t-side { width: 38%; background: #14532d; padding: 10px 6px; }
.thumb-forest .t-side .t-leaf { width: 24px; height: 24px; border-radius: 50% 0 50% 0; background: rgba(255,255,255,.2); margin: 0 auto 8px; }
.thumb-forest .t-side .t-fline { height: 3px; border-radius: 2px; background: rgba(255,255,255,.3); margin: 5px 0; }
.thumb-forest .t-side .t-fline.w80 { width:80%; } .thumb-forest .t-side .t-fline.w60 { width:60%; } .thumb-forest .t-side .t-fline.w70 { width:70%; }
.thumb-forest .t-main { flex: 1; padding: 10px 8px; }
.thumb-forest .t-main .t-faccent { height: 2px; background: #16a34a; width: 32%; margin: 6px 0 3px; border-radius: 1px; }
.thumb-forest .t-main .t-fline { height: 3px; border-radius: 1.5px; background: #dcfce7; margin: 4px 0; }
.thumb-forest .t-main .t-fline.w90 { width:90%; } .thumb-forest .t-main .t-fline.w70 { width:70%; } .thumb-forest .t-main .t-fline.w55 { width:55%; }

/* 14. Midnight */
.thumb-midnight { background: #0a0f1e; height: 100%; display: flex; flex-direction: column; padding: 12px; }
.thumb-midnight .t-name { height: 7px; border-radius: 2px; background: #e2e8f0; width: 58%; margin-bottom: 5px; }
.thumb-midnight .t-role { height: 4px; border-radius: 2px; background: #22d3ee; width: 40%; margin-bottom: 10px; }
.thumb-midnight .t-section { height: 3px; border-radius: 1.5px; background: #22d3ee; width: 28%; margin: 7px 0 4px; }
.thumb-midnight .t-mline { height: 3px; border-radius: 1.5px; background: rgba(255,255,255,.12); margin: 4px 0; }
.thumb-midnight .t-mline.w90 { width:90%; } .thumb-midnight .t-mline.w75 { width:75%; } .thumb-midnight .t-mline.w60 { width:60%; }

/* 15. Amber */
.thumb-amber { background: #fffbeb; height: 100%; display: flex; flex-direction: column; }
.thumb-amber .t-band { height: 8px; background: linear-gradient(90deg,#f59e0b,#d97706); }
.thumb-amber .t-body { flex: 1; padding: 10px; display: flex; gap: 8px; }
.thumb-amber .t-left { width: 40%; border-right: 1px solid #fde68a; padding-right: 6px; }
.thumb-amber .t-left .t-aname { height: 6px; border-radius: 2px; background: #92400e; width: 90%; margin-bottom: 4px; }
.thumb-amber .t-left .t-arole { height: 4px; border-radius: 2px; background: #f59e0b; width: 70%; margin-bottom: 8px; }
.thumb-amber .t-left .t-aline { height: 3px; border-radius: 1.5px; background: #fde68a; margin: 4px 0; }
.thumb-amber .t-right { flex: 1; }
.thumb-amber .t-right .t-ambavatar { width: 18px; height: 18px; border-radius: 50%; background: rgba(245,158,11,.3); border: 1.5px solid #f59e0b; margin: 0 0 6px auto; }
.thumb-amber .t-right .t-aline { height: 3px; border-radius: 1.5px; background: #fde68a; margin: 5px 0; }
.thumb-amber .t-right .t-aline.w90 { width:90%; } .thumb-amber .t-right .t-aline.w70 { width:70%; }

/* 16. Sky */
.thumb-sky { background: #f0f9ff; height:100%; display: flex; flex-direction: column; }
.thumb-sky .t-header { background: #0284c7; padding: 12px 10px; display: flex; align-items: center; gap: 8px; }
.thumb-sky .t-header .t-havatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.thumb-sky .t-header .t-name { height: 7px; border-radius: 2px; background: #fff; width: 55%; margin-bottom: 5px; }
.thumb-sky .t-header .t-role { height: 4px; border-radius: 2px; background: rgba(255,255,255,.5); width: 38%; }
.thumb-sky .t-body { flex:1; padding: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; align-content: start; }
.thumb-sky .t-skill { height: 18px; border-radius: 6px; background: #e0f2fe; }
.thumb-sky .t-sline { height: 3px; border-radius: 1.5px; background: #bae6fd; margin: 4px 0; grid-column: 1/-1; }
.thumb-sky .t-sline.w90 { width:90%; } .thumb-sky .t-sline.w70 { width:70%; }

/* 17. Olive */
.thumb-olive { background: #fefce8; display: flex; height:100%; }
.thumb-olive .t-side { width: 36%; background: #4d7c0f; padding: 10px 6px; }
.thumb-olive .t-side .t-sq { width: 26px; height: 26px; border-radius: 4px; background: rgba(255,255,255,.2); margin: 0 auto 8px; }
.thumb-olive .t-side .t-oline { height: 3px; border-radius: 2px; background: rgba(255,255,255,.35); margin: 5px 0; }
.thumb-olive .t-side .t-oline.w80 { width:80%; } .thumb-olive .t-side .t-oline.w60 { width:60%; } .thumb-olive .t-side .t-oline.w70 { width:70%; }
.thumb-olive .t-main { flex:1; padding: 10px 8px; }
.thumb-olive .t-main .t-oaccent { height: 2px; background: #65a30d; width: 30%; margin: 6px 0 3px; border-radius: 1px; }
.thumb-olive .t-main .t-oline { height: 3px; border-radius: 1.5px; background: #d9f99d; margin: 4px 0; }
.thumb-olive .t-main .t-oline.w90 { width:90%; } .thumb-olive .t-main .t-oline.w70 { width:70%; } .thumb-olive .t-main .t-oline.w55 { width:55%; }

/* 18. Monochrome */
.thumb-mono { background: #fff; height:100%; display: flex; flex-direction: column; }
.thumb-mono .t-bar { height: 4px; background: #000; }
.thumb-mono .t-body { flex:1; padding: 10px 12px; }
.thumb-mono .t-big { height: 10px; border-radius: 2px; background: #0f172a; width: 65%; margin-bottom: 4px; }
.thumb-mono .t-med { height: 5px; border-radius: 1.5px; background: #475569; width: 42%; margin-bottom: 12px; }
.thumb-mono .t-rule { height: 1.5px; background: #0f172a; margin: 7px 0 5px; }
.thumb-mono .t-moline { height: 3px; border-radius: 1.5px; background: #e2e8f0; margin: 4px 0; }
.thumb-mono .t-moline.w90 { width:90%; } .thumb-mono .t-moline.w75 { width:75%; } .thumb-mono .t-moline.w60 { width:60%; }

/* 19. Violet Dusk */
.thumb-violet { background: #faf5ff; height:100%; display: flex; flex-direction: column; }
.thumb-violet .t-header { background: linear-gradient(135deg,#5b21b6,#7c3aed); padding: 12px 10px; display: flex; align-items: center; gap: 8px; }
.thumb-violet .t-header .t-havatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
.thumb-violet .t-header .t-name { height: 7px; border-radius: 2px; background: #fff; width: 56%; margin-bottom: 5px; }
.thumb-violet .t-header .t-role { height: 4px; border-radius: 2px; background: rgba(255,255,255,.5); width: 38%; }
.thumb-violet .t-body { flex:1; padding: 10px; }
.thumb-violet .t-vaccent { height: 2px; background: #7c3aed; width: 30%; margin: 6px 0 3px; border-radius: 1px; }
.thumb-violet .t-vline { height: 3px; border-radius: 1.5px; background: #ede9fe; margin: 4px 0; }
.thumb-violet .t-vline.w90 { width:90%; } .thumb-violet .t-vline.w70 { width:70%; } .thumb-violet .t-vline.w55 { width:55%; }
.thumb-violet .t-vtag { display:inline-block; height: 9px; border-radius: 3px; background: #ddd6fe; margin: 3px 2px 0 0; }

/* 20. Terracotta */
.thumb-terra { background: #fff7ed; display: flex; height:100%; }
.thumb-terra .t-side { width: 38%; background: #9a3412; padding: 10px 6px; }
.thumb-terra .t-side .t-tcirc { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.2); margin: 0 auto 8px; }
.thumb-terra .t-side .t-tline { height: 3px; border-radius: 2px; background: rgba(255,255,255,.35); margin: 5px 0; }
.thumb-terra .t-side .t-tline.w80 { width:80%; } .thumb-terra .t-side .t-tline.w60 { width:60%; } .thumb-terra .t-side .t-tline.w70 { width:70%; }
.thumb-terra .t-main { flex:1; padding: 10px 8px; }
.thumb-terra .t-main .t-taccent { height: 3px; background: #ea580c; width: 32%; margin: 6px 0 3px; border-radius: 1px; }
.thumb-terra .t-main .t-tline { height: 3px; border-radius: 1.5px; background: #fed7aa; margin: 4px 0; }
.thumb-terra .t-main .t-tline.w90 { width:90%; } .thumb-terra .t-main .t-tline.w70 { width:70%; } .thumb-terra .t-main .t-tline.w55 { width:55%; }

/* 21. Teal Wave */
.thumb-teal { background: #f0fdfa; height:100%; display:flex; flex-direction:column; }
.thumb-teal .t-wave { height: 38px; background: linear-gradient(135deg,#0d9488,#06b6d4); border-radius: 0 0 60% 60%/0 0 30px 30px; position:relative; }
.thumb-teal .t-wave .t-wname { position:absolute; bottom:8px; left:10px; height:6px; border-radius:2px; background:#fff; width:50%; }
.thumb-teal .t-wave .t-wrole { position:absolute; bottom:2px; left:10px; height:3px; border-radius:1.5px; background:rgba(255,255,255,.5); width:35%; }
.thumb-teal .t-wbody { flex:1; padding:10px; }
.thumb-teal .t-waccent { height:2px; background:#0d9488; width:32%; border-radius:1px; margin:6px 0 3px; }
.thumb-teal .t-wline { height:3px; border-radius:1.5px; background:#ccfbf1; margin:4px 0; }
.thumb-teal .t-wline.w90{width:90%;} .thumb-teal .t-wline.w70{width:70%;} .thumb-teal .t-wline.w55{width:55%;}

/* 22. Sand Dune */
.thumb-sand { background: #fefce8; height:100%; display:flex; flex-direction:column; }
.thumb-sand .t-header { background: #78350f; padding:12px 10px; }
.thumb-sand .t-header .t-name { height:7px; border-radius:2px; background:#fef3c7; width:55%; margin-bottom:5px; }
.thumb-sand .t-header .t-role { height:4px; border-radius:2px; background:rgba(254,243,199,.5); width:38%; }
.thumb-sand .t-sbody { flex:1; padding:10px; display:flex; gap:8px; }
.thumb-sand .t-sleft { width:35%; border-right:1px solid #fde68a; padding-right:6px; }
.thumb-sand .t-sline { height:3px; border-radius:1.5px; background:#fde68a; margin:5px 0; }
.thumb-sand .t-sline.w90{width:90%;} .thumb-sand .t-sline.w70{width:70%;}
.thumb-sand .t-sright { flex:1; }

/* 23. Indigo Sharp */
.thumb-indigo { background: #eef2ff; height:100%; display:flex; flex-direction:column; }
.thumb-indigo .t-header { background:#4338ca; padding:12px 10px; }
.thumb-indigo .t-header .t-name { height:7px; border-radius:2px; background:#fff; width:56%; margin-bottom:5px; }
.thumb-indigo .t-header .t-role { height:4px; border-radius:2px; background:rgba(255,255,255,.5); width:38%; }
.thumb-indigo .t-ibody { flex:1; padding:10px; }
.thumb-indigo .t-irow { display:flex; gap:5px; margin:6px 0; }
.thumb-indigo .t-idot { width:5px; height:5px; border-radius:50%; background:#4338ca; flex-shrink:0; margin-top:2px; }
.thumb-indigo .t-ilines { flex:1; }
.thumb-indigo .t-iline { height:3px; border-radius:1.5px; background:#c7d2fe; margin:3px 0; }
.thumb-indigo .t-iline.w90{width:90%;} .thumb-indigo .t-iline.w70{width:70%;} .thumb-indigo .t-iline.w55{width:55%;}

/* 24. Cherry Blossom */
.thumb-cherry { background: #fff1f2; display:flex; height:100%; }
.thumb-cherry .t-side { width:8px; background:linear-gradient(180deg,#fb7185,#e11d48); flex-shrink:0; }
.thumb-cherry .t-cbody { flex:1; padding:10px 8px; }
.thumb-cherry .t-cname { height:7px; border-radius:2px; background:#9f1239; width:55%; margin-bottom:4px; }
.thumb-cherry .t-crole { height:4px; border-radius:2px; background:#fb7185; width:38%; margin-bottom:12px; }
.thumb-cherry .t-caccent { height:2px; background:#fb7185; width:30%; border-radius:1px; margin:6px 0 3px; }
.thumb-cherry .t-cline { height:3px; border-radius:1.5px; background:#fecdd3; margin:4px 0; }
.thumb-cherry .t-cline.w90{width:90%;} .thumb-cherry .t-cline.w70{width:70%;} .thumb-cherry .t-cline.w55{width:55%;}

/* 25. Slate Pro */
.thumb-slate { background: #f8fafc; display:flex; height:100%; }
.thumb-slate .t-side { width:38%; background:#334155; padding:10px 6px; }
.thumb-slate .t-side .t-spcircle { width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,.2); margin:0 auto 8px; }
.thumb-slate .t-side .t-spline { height:3px; border-radius:2px; background:rgba(255,255,255,.3); margin:5px 0; }
.thumb-slate .t-side .t-spline.w80{width:80%;} .thumb-slate .t-side .t-spline.w60{width:60%;} .thumb-slate .t-side .t-spline.w70{width:70%;}
.thumb-slate .t-main { flex:1; padding:10px 8px; }
.thumb-slate .t-main .t-spacc { height:2px; background:#475569; width:32%; margin:6px 0 3px; border-radius:1px; }
.thumb-slate .t-main .t-spline { height:3px; border-radius:1.5px; background:#e2e8f0; margin:4px 0; }
.thumb-slate .t-main .t-spline.w90{width:90%;} .thumb-slate .t-main .t-spline.w70{width:70%;} .thumb-slate .t-main .t-spline.w55{width:55%;}

/* 26. Mint Fresh */
.thumb-mint { background: #f0fdf4; height:100%; display:flex; flex-direction:column; }
.thumb-mint .t-topbar { background:#10b981; height:6px; }
.thumb-mint .t-mbody { flex:1; padding:10px; }
.thumb-mint .t-mname { height:7px; border-radius:2px; background:#064e3b; width:55%; margin-bottom:4px; }
.thumb-mint .t-mrole { height:4px; border-radius:2px; background:#10b981; width:38%; margin-bottom:10px; }
.thumb-mint .t-macc { height:2px; background:#10b981; width:30%; border-radius:1px; margin:6px 0 3px; }
.thumb-mint .t-mline { height:3px; border-radius:1.5px; background:#d1fae5; margin:4px 0; }
.thumb-mint .t-mline.w90{width:90%;} .thumb-mint .t-mline.w70{width:70%;} .thumb-mint .t-mline.w55{width:55%;}
.thumb-mint .t-mtags { display:flex; gap:3px; margin-top:6px; }
.thumb-mint .t-mtag { height:9px; border-radius:3px; background:#6ee7b7; }

/* 27. Gold Rush */
.thumb-gold { background: #1c1917; height:100%; display:flex; flex-direction:column; padding:12px; }
.thumb-gold .t-gname { height:7px; border-radius:2px; background:#fef3c7; width:58%; margin-bottom:5px; }
.thumb-gold .t-grole { height:4px; border-radius:2px; background:#f59e0b; width:40%; margin-bottom:10px; }
.thumb-gold .t-gsec { height:3px; border-radius:1.5px; background:#f59e0b; width:28%; margin:7px 0 4px; }
.thumb-gold .t-gline { height:3px; border-radius:1.5px; background:rgba(255,255,255,.12); margin:4px 0; }
.thumb-gold .t-gline.w90{width:90%;} .thumb-gold .t-gline.w75{width:75%;} .thumb-gold .t-gline.w60{width:60%;}

/* 28. Crimson Edge */
.thumb-crimson { background: #fff; display:flex; height:100%; }
.thumb-crimson .t-ceside { width:7px; background:linear-gradient(180deg,#dc2626,#991b1b); flex-shrink:0; }
.thumb-crimson .t-cemain { flex:1; padding:10px 8px; }
.thumb-crimson .t-cename { height:8px; border-radius:2px; background:#1e293b; width:58%; margin-bottom:4px; }
.thumb-crimson .t-cerole { height:4px; border-radius:2px; background:#dc2626; width:40%; margin-bottom:12px; }
.thumb-crimson .t-ceacc { height:1.5px; background:#dc2626; width:32%; margin:7px 0 4px; }
.thumb-crimson .t-celine { height:3px; border-radius:1.5px; background:#f1f5f9; margin:4px 0; }
.thumb-crimson .t-celine.w90{width:90%;} .thumb-crimson .t-celine.w70{width:70%;} .thumb-crimson .t-celine.w55{width:55%;}

/* 29. Aqua Marine */
.thumb-aqua { background: #ecfeff; height:100%; display:flex; flex-direction:column; }
.thumb-aqua .t-header { background: linear-gradient(135deg,#0891b2,#0e7490); padding:12px 10px; }
.thumb-aqua .t-header .t-name { height:7px; border-radius:2px; background:#fff; width:55%; margin-bottom:5px; }
.thumb-aqua .t-header .t-role { height:4px; border-radius:2px; background:rgba(255,255,255,.5); width:38%; }
.thumb-aqua .t-abody { flex:1; padding:10px; display:grid; grid-template-columns:1fr 1fr; gap:5px; align-content:start; }
.thumb-aqua .t-acard { border-radius:4px; background:#cffafe; padding:5px; }
.thumb-aqua .t-acline { height:3px; border-radius:1.5px; background:#a5f3fc; margin:3px 0; }
.thumb-aqua .t-acfull { grid-column:1/-1; height:3px; border-radius:1.5px; background:#a5f3fc; }

/* 30. Charcoal Ink */
.thumb-charcoal { background: #18181b; display:flex; height:100%; }
.thumb-charcoal .t-side { width:38%; background:#09090b; padding:10px 6px; }
.thumb-charcoal .t-side .t-chline { height:3px; border-radius:2px; background:rgba(255,255,255,.2); margin:5px 0; }
.thumb-charcoal .t-side .t-chline.w80{width:80%;} .thumb-charcoal .t-side .t-chline.w60{width:60%;} .thumb-charcoal .t-side .t-chline.w70{width:70%;}
.thumb-charcoal .t-side .t-chcirc { width:26px; height:26px; border-radius:50%; background:rgba(255,255,255,.1); margin:0 auto 8px; }
.thumb-charcoal .t-main { flex:1; padding:10px 8px; }
.thumb-charcoal .t-main .t-chacc { height:2px; background:#52525b; width:30%; margin:6px 0 3px; border-radius:1px; }
.thumb-charcoal .t-main .t-chline { height:3px; border-radius:1.5px; background:rgba(255,255,255,.1); margin:4px 0; }
.thumb-charcoal .t-main .t-chline.w90{width:90%;} .thumb-charcoal .t-main .t-chline.w70{width:70%;} .thumb-charcoal .t-main .t-chline.w55{width:55%;}

/* 31. Neon Grid */
.thumb-neon { background:#0d0d0d; height:100%; display:flex; flex-direction:column; padding:10px; position:relative; overflow:hidden; }
.thumb-neon::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 10px,rgba(0,255,136,.05) 10px,rgba(0,255,136,.05) 11px),repeating-linear-gradient(90deg,transparent,transparent 10px,rgba(0,255,136,.05) 10px,rgba(0,255,136,.05) 11px); pointer-events:none; }
.thumb-neon .t-ntitle { height:7px; border-radius:2px; background:#00ff88; width:55%; margin-bottom:4px; }
.thumb-neon .t-nrole { height:3px; border-radius:1.5px; background:#00ccaa; width:38%; margin-bottom:12px; }
.thumb-neon .t-nsec { height:2px; background:#00ff88; width:24%; margin:7px 0 4px; }
.thumb-neon .t-nline { height:3px; border-radius:1.5px; background:rgba(0,255,136,.15); margin:4px 0; }
.thumb-neon .t-nline.w90{width:90%;} .thumb-neon .t-nline.w75{width:75%;} .thumb-neon .t-nline.w60{width:60%;}

/* 32. Pastel Columns */
.thumb-pastel { background:#fff; height:100%; display:flex; flex-direction:column; }
.thumb-pastel .t-pheader { display:flex; height:32px; }
.thumb-pastel .t-pheader .t-pc1 { flex:1; background:#a5b4fc; }
.thumb-pastel .t-pheader .t-pc2 { flex:1; background:#fbcfe8; }
.thumb-pastel .t-pheader .t-pc3 { flex:1; background:#6ee7b7; }
.thumb-pastel .t-pbody { flex:1; padding:8px 10px; }
.thumb-pastel .t-pname { height:7px; border-radius:2px; background:#312e81; width:55%; margin-bottom:4px; }
.thumb-pastel .t-prole { height:4px; border-radius:2px; background:#a5b4fc; width:38%; margin-bottom:10px; }
.thumb-pastel .t-pline { height:3px; border-radius:1.5px; background:#e0e7ff; margin:4px 0; }
.thumb-pastel .t-pline.w90{width:90%;} .thumb-pastel .t-pline.w70{width:70%;} .thumb-pastel .t-pline.w55{width:55%;}

/* 33. Blueprint */
.thumb-blueprint { background:#1e3a5f; height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-blueprint .t-bpgrid { position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 8px,rgba(255,255,255,.04) 8px,rgba(255,255,255,.04) 9px),repeating-linear-gradient(90deg,transparent,transparent 8px,rgba(255,255,255,.04) 8px,rgba(255,255,255,.04) 9px); pointer-events:none; }
.thumb-blueprint .t-bpname { height:7px; border-radius:1px; background:rgba(255,255,255,.9); width:55%; margin-bottom:4px; }
.thumb-blueprint .t-bprole { height:3px; border-radius:1px; background:rgba(255,255,255,.45); width:38%; margin-bottom:8px; }
.thumb-blueprint .t-bprule { height:1px; background:rgba(255,255,255,.25); margin:7px 0; }
.thumb-blueprint .t-bpline { height:3px; border-radius:1px; background:rgba(255,255,255,.15); margin:4px 0; }
.thumb-blueprint .t-bpline.w90{width:90%;} .thumb-blueprint .t-bpline.w70{width:70%;} .thumb-blueprint .t-bpline.w55{width:55%;}

/* 34. Retro Type */
.thumb-retro { background:#fdf6e3; height:100%; display:flex; }
.thumb-retro .t-rmargin { width:4px; background:#e74c3c; flex-shrink:0; margin:8px 0; border-radius:2px; }
.thumb-retro .t-rbody { flex:1; padding:10px 8px; }
.thumb-retro .t-rtitle { height:8px; border-radius:1px; background:#2c2c2c; width:62%; margin-bottom:4px; }
.thumb-retro .t-rrole { height:4px; border-radius:1px; background:#888; width:42%; margin-bottom:10px; }
.thumb-retro .t-rhrule { height:1px; background:#ccc; margin:6px 0; }
.thumb-retro .t-rline { height:3px; border-radius:1px; background:#ddd; margin:5px 0; }
.thumb-retro .t-rline.w90{width:90%;} .thumb-retro .t-rline.w70{width:70%;} .thumb-retro .t-rline.w55{width:55%;}

/* 35. Gradient Flow */
.thumb-gflow { background:linear-gradient(135deg,#6366f1 0%,#8b5cf6 40%,#ec4899 100%); height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-gflow .t-gfcard { background:rgba(255,255,255,.15); border-radius:8px; padding:8px; margin-bottom:6px; backdrop-filter:blur(2px); }
.thumb-gflow .t-gfname { height:6px; border-radius:2px; background:#fff; width:55%; margin-bottom:4px; }
.thumb-gflow .t-gfrole { height:3px; border-radius:1.5px; background:rgba(255,255,255,.6); width:38%; }
.thumb-gflow .t-gfline { height:3px; border-radius:1.5px; background:rgba(255,255,255,.25); margin:4px 0; }
.thumb-gflow .t-gfline.w90{width:90%;} .thumb-gflow .t-gfline.w70{width:70%;} .thumb-gflow .t-gfline.w55{width:55%;}

/* 36. Magazine */
.thumb-mag { background:#fff; height:100%; display:flex; flex-direction:column; }
.thumb-mag .t-mtop { display:flex; height:42px; }
.thumb-mag .t-mtop .t-mleft { width:60%; background:#111; display:flex; align-items:flex-end; padding:6px 8px; }
.thumb-mag .t-mtop .t-mleft .t-mname { height:7px; border-radius:2px; background:#fff; width:80%; }
.thumb-mag .t-mtop .t-mright { flex:1; background:#f59e0b; }
.thumb-mag .t-mbodycols { flex:1; display:flex; gap:0; }
.thumb-mag .t-mcol1 { width:55%; padding:8px; border-right:1px solid #f1f5f9; }
.thumb-mag .t-mcol2 { flex:1; padding:8px; }
.thumb-mag .t-mgline { height:3px; border-radius:1.5px; background:#f1f5f9; margin:4px 0; }
.thumb-mag .t-mgline.w90{width:90%;} .thumb-mag .t-mgline.w70{width:70%;} .thumb-mag .t-mgline.w55{width:55%;}

/* 37. Deco Art */
.thumb-deco { background:#fafaf7; height:100%; display:flex; flex-direction:column; border:2px solid #b8931f; padding:8px; }
.thumb-deco .t-dtop { display:flex; justify-content:center; margin-bottom:6px; }
.thumb-deco .t-ddiamond { width:14px; height:14px; background:#b8931f; transform:rotate(45deg); }
.thumb-deco .t-dname { height:7px; border-radius:1px; background:#1a1a1a; width:60%; margin:0 auto 4px; }
.thumb-deco .t-drole { height:3px; border-radius:1px; background:#b8931f; width:40%; margin:0 auto 8px; }
.thumb-deco .t-dhrule { height:1px; background:#b8931f; margin:5px 0; }
.thumb-deco .t-dline { height:3px; border-radius:1px; background:#e8e4d9; margin:4px 0; }
.thumb-deco .t-dline.w90{width:90%;} .thumb-deco .t-dline.w70{width:70%;} .thumb-deco .t-dline.w55{width:55%;}

/* 38. Split Horizon */
.thumb-split { background:#fff; height:100%; display:flex; }
.thumb-split .t-shleft { width:45%; background:#fff; padding:10px 8px; border-right:2px solid #1e293b; }
.thumb-split .t-shleft .t-shname { height:7px; border-radius:2px; background:#1e293b; width:90%; margin-bottom:4px; }
.thumb-split .t-shleft .t-shrole { height:4px; border-radius:2px; background:#94a3b8; width:70%; margin-bottom:10px; }
.thumb-split .t-shleft .t-shline { height:3px; border-radius:1.5px; background:#e2e8f0; margin:5px 0; }
.thumb-split .t-shright { flex:1; background:#1e293b; padding:10px 8px; }
.thumb-split .t-shright .t-shdline { height:3px; border-radius:1.5px; background:rgba(255,255,255,.15); margin:5px 0; }
.thumb-split .t-shright .t-shdline.w90{width:90%;} .thumb-split .t-shright .t-shdline.w70{width:70%;}

/* 39. Polaroid Stack */
.thumb-polar { background:#d1d5db; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; padding:8px; }
.thumb-polar .t-pcard { background:#fff; border-radius:3px; padding:6px 6px 12px; box-shadow:2px 2px 4px rgba(0,0,0,.2); width:85%; }
.thumb-polar .t-pcard .t-pcimg { height:22px; background:#cbd5e1; border-radius:2px; margin-bottom:5px; }
.thumb-polar .t-pcard .t-pcline { height:3px; border-radius:1.5px; background:#e2e8f0; margin:3px 0; }
.thumb-polar .t-pcard .t-pcline.w80{width:80%;} .thumb-polar .t-pcard .t-pcline.w60{width:60%;}
.thumb-polar .t-pcard2 { transform:rotate(-3deg); margin-top:-20px; width:78%; z-index:0; }

/* 40. Sunrise */
.thumb-sunrise { background:#fff; height:100%; display:flex; flex-direction:column; }
.thumb-sunrise .t-srband { height:10px; background:linear-gradient(90deg,#ef4444,#f97316,#facc15); }
.thumb-sunrise .t-srhalf { flex:1; display:flex; }
.thumb-sunrise .t-srleft { width:38%; background:#fff7ed; padding:10px 8px; border-right:1px solid #fed7aa; }
.thumb-sunrise .t-srleft .t-srname { height:6px; border-radius:2px; background:#9a3412; width:90%; margin-bottom:3px; }
.thumb-sunrise .t-srleft .t-srrole { height:3px; border-radius:1.5px; background:#f97316; width:70%; margin-bottom:8px; }
.thumb-sunrise .t-srleft .t-srline { height:3px; border-radius:1.5px; background:#fed7aa; margin:4px 0; }
.thumb-sunrise .t-srright { flex:1; padding:10px 8px; }
.thumb-sunrise .t-srright .t-srrline { height:3px; border-radius:1.5px; background:#f3f4f6; margin:5px 0; }
.thumb-sunrise .t-srright .t-srrline.w90{width:90%;} .thumb-sunrise .t-srright .t-srrline.w70{width:70%;}

/* 41. Origami Fold */
.thumb-origami { background:#f9fafb; height:100%; display:flex; flex-direction:column; position:relative; overflow:hidden; }
.thumb-origami::after { content:''; position:absolute; top:0; right:0; width:0; height:0; border-style:solid; border-width:0 36px 36px 0; border-color:transparent #6366f1 transparent transparent; }
.thumb-origami .t-oibody { flex:1; padding:12px 10px; }
.thumb-origami .t-oiname { height:7px; border-radius:2px; background:#1e293b; width:55%; margin-bottom:4px; }
.thumb-origami .t-oirole { height:4px; border-radius:2px; background:#6366f1; width:38%; margin-bottom:12px; }
.thumb-origami .t-oiacc { height:2px; background:#6366f1; width:30%; border-radius:1px; margin:7px 0 4px; }
.thumb-origami .t-oiline { height:3px; border-radius:1.5px; background:#e2e8f0; margin:4px 0; }
.thumb-origami .t-oiline.w90{width:90%;} .thumb-origami .t-oiline.w70{width:70%;} .thumb-origami .t-oiline.w55{width:55%;}

/* 42. Mosaic Tiles */
.thumb-mosaic { background:#fff; height:100%; display:flex; flex-direction:column; }
.thumb-mosaic .t-mtiles { display:grid; grid-template-columns:1fr 1fr 1fr; grid-template-rows:1fr 1fr; height:44px; gap:2px; }
.thumb-mosaic .t-mtile1{background:#6366f1;} .thumb-mosaic .t-mtile2{background:#ec4899;} .thumb-mosaic .t-mtile3{background:#f59e0b;}
.thumb-mosaic .t-mtile4{background:#10b981;} .thumb-mosaic .t-mtile5{background:#0ea5e9;} .thumb-mosaic .t-mtile6{background:#8b5cf6;}
.thumb-mosaic .t-msbody { flex:1; padding:8px 10px; }
.thumb-mosaic .t-msname { height:6px; border-radius:2px; background:#1e293b; width:55%; margin-bottom:3px; }
.thumb-mosaic .t-msrole { height:3px; border-radius:1.5px; background:#6366f1; width:38%; margin-bottom:8px; }
.thumb-mosaic .t-msline { height:3px; border-radius:1.5px; background:#f1f5f9; margin:4px 0; }
.thumb-mosaic .t-msline.w90{width:90%;} .thumb-mosaic .t-msline.w70{width:70%;} .thumb-mosaic .t-msline.w55{width:55%;}

/* 43. Skill Chips */
.thumb-chips { background:#fafafa; height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-chips .t-chname { height:7px; border-radius:2px; background:#111; width:55%; margin-bottom:3px; }
.thumb-chips .t-chrole { height:4px; border-radius:1.5px; background:#6366f1; width:38%; margin-bottom:10px; }
.thumb-chips .t-chrow { display:flex; flex-wrap:wrap; gap:3px; margin-bottom:5px; }
.thumb-chips .t-chip { height:10px; border-radius:5px; background:#e0e7ff; }
.thumb-chips .t-chsec { height:2px; background:#6366f1; width:28%; margin:6px 0 5px; border-radius:1px; }
.thumb-chips .t-chline { height:3px; border-radius:1.5px; background:#e5e7eb; margin:4px 0; }
.thumb-chips .t-chline.w90{width:90%;} .thumb-chips .t-chline.w70{width:70%;}

/* 44. Newspaper */
.thumb-news { background:#fffef7; height:100%; display:flex; flex-direction:column; }
.thumb-news .t-newsbanner { background:#111; padding:6px 10px; display:flex; align-items:center; justify-content:center; }
.thumb-news .t-newsbanner .t-nbname { height:8px; border-radius:1px; background:#fff; width:50%; }
.thumb-news .t-newshrule { height:2px; background:#111; margin:6px 10px 4px; }
.thumb-news .t-newsbody { flex:1; padding:4px 10px 8px; display:grid; grid-template-columns:1fr 1fr 1fr; gap:6px; }
.thumb-news .t-newscol .t-ncline { height:3px; border-radius:1px; background:#e5e7eb; margin:4px 0; }
.thumb-news .t-newscol .t-nccap { height:5px; border-radius:1px; background:#d1d5db; margin-bottom:5px; }

/* 45. Timeline Left */
.thumb-timeline { background:#fff; height:100%; display:flex; }
.thumb-timeline .t-tl { width:18px; display:flex; flex-direction:column; align-items:center; padding:10px 0; gap:0; flex-shrink:0; }
.thumb-timeline .t-tline-v { width:2px; flex:1; background:#e0e7ff; }
.thumb-timeline .t-tdot { width:8px; height:8px; border-radius:50%; background:#6366f1; flex-shrink:0; margin:4px 0; }
.thumb-timeline .t-tlbody { flex:1; padding:10px 8px; }
.thumb-timeline .t-tlname { height:7px; border-radius:2px; background:#1e293b; width:58%; margin-bottom:4px; }
.thumb-timeline .t-tlrole { height:3px; border-radius:1.5px; background:#6366f1; width:40%; margin-bottom:10px; }
.thumb-timeline .t-tlblock { margin-bottom:8px; }
.thumb-timeline .t-tlblock .t-tldate { height:3px; border-radius:1px; background:#c7d2fe; width:32%; margin-bottom:3px; }
.thumb-timeline .t-tlblock .t-tlline { height:3px; border-radius:1.5px; background:#f1f5f9; margin:3px 0; }
.thumb-timeline .t-tlblock .t-tlline.w90{width:90%;} .thumb-timeline .t-tlblock .t-tlline.w70{width:70%;}

/* 46. Coral Diagonal */
.thumb-diag { background:#fff; height:100%; display:flex; flex-direction:column; position:relative; overflow:hidden; }
.thumb-diag::before { content:''; position:absolute; top:-10px; left:-10px; width:80px; height:80px; background:linear-gradient(135deg,#f97316,#ef4444); transform:rotate(0deg); clip-path:polygon(0 0,100% 0,0 100%); }
.thumb-diag .t-dgbody { flex:1; padding:12px 10px 10px 16px; }
.thumb-diag .t-dgname { height:7px; border-radius:2px; background:#1e293b; width:55%; margin-bottom:4px; }
.thumb-diag .t-dgrole { height:4px; border-radius:2px; background:#f97316; width:38%; margin-bottom:12px; margin-top:6px; }
.thumb-diag .t-dgacc { height:2px; background:#f97316; width:30%; border-radius:1px; margin:7px 0 4px; }
.thumb-diag .t-dgline { height:3px; border-radius:1.5px; background:#f3f4f6; margin:4px 0; }
.thumb-diag .t-dgline.w90{width:90%;} .thumb-diag .t-dgline.w70{width:70%;} .thumb-diag .t-dgline.w55{width:55%;}

/* 47. Ice Nordic */
.thumb-nordic { background:#f8fafc; height:100%; display:flex; flex-direction:column; padding:12px; }
.thumb-nordic .t-ndname { height:9px; border-radius:1.5px; background:#0f172a; width:62%; margin-bottom:5px; }
.thumb-nordic .t-ndrole { height:4px; border-radius:1.5px; background:#94a3b8; width:42%; margin-bottom:5px; }
.thumb-nordic .t-nddots { display:flex; gap:3px; margin-bottom:12px; }
.thumb-nordic .t-nddot { width:5px; height:5px; border-radius:50%; background:#cbd5e1; }
.thumb-nordic .t-ndsec { height:1.5px; background:#1e293b; width:100%; margin:6px 0 5px; }
.thumb-nordic .t-ndline { height:2.5px; border-radius:1.5px; background:#e2e8f0; margin:5px 0; }
.thumb-nordic .t-ndline.w90{width:90%;} .thumb-nordic .t-ndline.w70{width:70%;} .thumb-nordic .t-ndline.w50{width:50%;}

/* 48. Circuit Board */
.thumb-circuit { background:#052e16; height:100%; display:flex; flex-direction:column; padding:10px; position:relative; overflow:hidden; }
.thumb-circuit::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 12px,rgba(74,222,128,.06) 12px,rgba(74,222,128,.06) 13px),repeating-linear-gradient(90deg,transparent,transparent 12px,rgba(74,222,128,.06) 12px,rgba(74,222,128,.06) 13px); pointer-events:none;}
.thumb-circuit .t-ccname { height:6px; border-radius:1px; background:#4ade80; width:55%; margin-bottom:4px; }
.thumb-circuit .t-ccrole { height:3px; border-radius:1px; background:rgba(74,222,128,.5); width:38%; margin-bottom:10px; }
.thumb-circuit .t-ccsec { height:1.5px; background:#4ade80; width:26%; margin:6px 0 4px; }
.thumb-circuit .t-ccline { height:3px; border-radius:1px; background:rgba(74,222,128,.12); margin:4px 0; }
.thumb-circuit .t-ccline.w90{width:90%;} .thumb-circuit .t-ccline.w70{width:70%;} .thumb-circuit .t-ccline.w55{width:55%;}
.thumb-circuit .t-ccnode { display:inline-block; width:5px; height:5px; border-radius:50%; background:#4ade80; margin:4px 3px 0 0; }

/* 49. Washi Tape */
.thumb-washi { background:#fffdf5; height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-washi .t-wtape1 { height:10px; background:repeating-linear-gradient(45deg,#fde68a,#fde68a 4px,#fbbf24 4px,#fbbf24 8px); border-radius:1px; width:60%; margin-bottom:8px; }
.thumb-washi .t-wtape2 { height:8px; background:repeating-linear-gradient(45deg,#fbcfe8,#fbcfe8 4px,#f9a8d4 4px,#f9a8d4 8px); border-radius:1px; width:40%; margin-left:auto; margin-bottom:6px; }
.thumb-washi .t-wbname { height:6px; border-radius:2px; background:#4b3a1a; width:55%; margin-bottom:4px; }
.thumb-washi .t-wbrole { height:3px; border-radius:1.5px; background:#d97706; width:38%; margin-bottom:10px; }
.thumb-washi .t-wbline { height:3px; border-radius:1.5px; background:#fef3c7; margin:5px 0; }
.thumb-washi .t-wbline.w90{width:90%;} .thumb-washi .t-wbline.w70{width:70%;} .thumb-washi .t-wbline.w55{width:55%;}

/* 50. Holographic */
.thumb-holo { height:100%; display:flex; flex-direction:column; background:linear-gradient(135deg,#fce7f3 0%,#e0e7ff 25%,#d1fae5 50%,#fef3c7 75%,#fce7f3 100%); background-size:200% 200%; padding:10px; }
.thumb-holo .t-honame { height:8px; border-radius:2px; background:rgba(30,27,75,.75); width:58%; margin-bottom:4px; }
.thumb-holo .t-horole { height:4px; border-radius:2px; background:rgba(139,92,246,.6); width:40%; margin-bottom:12px; }
.thumb-holo .t-hocard { background:rgba(255,255,255,.55); border-radius:6px; padding:6px 8px; margin-bottom:5px; backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.7); }
.thumb-holo .t-hocard .t-holine { height:3px; border-radius:1.5px; background:rgba(99,102,241,.3); margin:3px 0; }
.thumb-holo .t-hocard .t-holine.w80{width:80%;} .thumb-holo .t-hocard .t-holine.w60{width:60%;}

/* ── Template Sidebar ── */
.tpl-toggle-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 8px; border: 1px solid #dbe6f3;
  background: #f8fafc; color: #1e293b; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .15s, border-color .15s;
}
.tpl-toggle-btn:hover { background: #e2e8f0; border-color: #94a3b8; }

.tpl-sidebar-overlay {
  position: fixed; inset: 0;
  background: transparent;
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.tpl-sidebar-overlay.open { opacity: 1; pointer-events: all; }

.tpl-sidebar {
  position: fixed; top: 52px; left: 0; height: calc(100vh - 52px); width: 336px;
  background: #fff; box-shadow: 6px 0 28px rgba(15,23,42,0.16);
  z-index: 201; transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.tpl-sidebar.open { transform: translateX(0); }

.tpl-sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 2px solid #e5edf7;
  background: #f8fafc; flex-shrink: 0; gap: 12px;
}
.tpl-sidebar-head strong { font-size: 15px; color: #1e293b; font-weight: 700; flex: 1; }
.tpl-sidebar-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #dbe6f3;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 1;
  color: #334155;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
}
.tpl-sidebar-close:hover { background: #e2e8f0; border-color: #cbd5e1; color: #1e293b; }

.tpl-sidebar-body {
  overflow-y: auto; flex: 1; padding: 10px;
}
.tpl-sidebar-body .tpl-pick-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 6px;
  margin-bottom: 4px;
}
.tpl-sidebar-body .tpl-pick-thumb { height: 200px; }
.tpl-sidebar-body .tpl-pick-thumb > * { min-height: 200px; }
.tpl-sidebar-body .tpl-pick-label { padding: 3px 6px; }
.tpl-sidebar-body .tpl-pick-label strong { font-size: 10px; }
.tpl-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #fff;
  padding: 8px 12px;
  background: linear-gradient(90deg, #2563eb 0%, #4f46e5 100%);
  border-radius: 7px;
  margin-bottom: 8px;
  margin-top: 10px;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.tpl-group-header:first-child { margin-top: 2px; }
.tpl-group-header:hover { background: linear-gradient(90deg, #1d4ed8 0%, #4338ca 100%); }
.tpl-group-header .tpl-group-count {
  font-size: 10px;
  font-weight: 600;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 1px 7px;
  letter-spacing: 0;
  flex-shrink: 0;
}
.tpl-group-header .tpl-group-arrow {
  font-size: 10px;
  transition: transform .2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.tpl-group-header.collapsed .tpl-group-arrow { transform: rotate(-90deg); }
.tpl-group-body {
  overflow: hidden;
  transition: max-height .25s ease;
}
.tpl-group-body.collapsed { max-height: 0 !important; }

/* ── Color swatch picker ── */
#step-counter {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 2px;
}
.color-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  outline: none;
}
.color-swatch:hover { transform: scale(1.2); }
.color-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px #1e293b;
  transform: scale(1.15);
}

/* ══════════════════════════════════════════
  BOLD & GRAPHIC  (51–60)
  ══════════════════════════════════════════ */

/* 51. Bold Stripe */
.thumb-bhdr { background:#111827; height:100%; display:flex; flex-direction:column; }
.thumb-bhdr .t-bh-band { background:#111827; padding:10px 12px 8px; flex-shrink:0; }
.thumb-bhdr .t-bh-name { height:8px; border-radius:1.5px; background:#fff; width:62%; margin-bottom:4px; }
.thumb-bhdr .t-bh-role { height:3.5px; border-radius:1.5px; background:#dc2626; width:42%; }
.thumb-bhdr .t-bh-body { flex:1; background:#fff; padding:8px 12px; display:flex; flex-direction:column; gap:4px; }
.thumb-bhdr .t-bh-acc { display:flex; align-items:center; gap:5px; }
.thumb-bhdr .t-bh-acc::before { content:''; width:3px; height:10px; background:#dc2626; border-radius:1.5px; flex-shrink:0; }
.thumb-bhdr .t-bh-acc::after { content:''; flex:1; height:1.5px; background:#e5e7eb; }
.thumb-bhdr .t-bh-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:3px 0; }
.thumb-bhdr .t-bh-line.w90{width:90%;} .thumb-bhdr .t-bh-line.w70{width:70%;} .thumb-bhdr .t-bh-line.w55{width:55%;}

/* 52. Side Rail */
.thumb-srail { background:#fff; height:100%; display:flex; }
.thumb-srail .t-sr-rail { width:8px; background:#4f46e5; flex-shrink:0; position:relative; }
.thumb-srail .t-sr-rail::before { content:''; position:absolute; top:14px; left:50%; transform:translateX(-50%); width:3px; height:calc(100% - 22px); background:rgba(255,255,255,.28); border-radius:1.5px; }
.thumb-srail .t-sr-rail .t-sr-rdot { width:6px; height:6px; border-radius:50%; background:#fff; margin:12px auto 0; }
.thumb-srail .t-sr-rline { height:2.5px; border-radius:1.5px; background:rgba(255,255,255,.35); margin:5px 2px; }
.thumb-srail .t-sr-sb { width:56px; background:#f5f3ff; padding:10px 8px; flex-shrink:0; border-right:1px solid #ede9fe; }
.thumb-srail .t-sr-sname { height:6px; border-radius:1.5px; background:#4f46e5; width:80%; margin-bottom:3px; }
.thumb-srail .t-sr-srole { height:3px; border-radius:1.5px; background:#c7d2fe; width:60%; margin-bottom:8px; }
.thumb-srail .t-sr-sline { height:2.5px; border-radius:1.5px; background:#ddd6fe; margin:3px 0; }
.thumb-srail .t-sr-main { flex:1; padding:10px 8px; }
.thumb-srail .t-sr-acc { height:1.5px; background:#4f46e5; width:24%; margin:7px 0 4px; }
.thumb-srail .t-sr-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:4px 0; }
.thumb-srail .t-sr-line.w90{width:90%;} .thumb-srail .t-sr-line.w70{width:70%;}

/* 53. Card Stack */
.thumb-cstack { background:#f0fdfa; height:100%; display:flex; flex-direction:column; }
.thumb-cstack .t-cs-hdr { background:#0d9488; padding:8px 10px; flex-shrink:0; }
.thumb-cstack .t-cs-title { height:7px; border-radius:1.5px; background:#fff; width:58%; margin-bottom:3px; }
.thumb-cstack .t-cs-role { height:3px; border-radius:1.5px; background:rgba(255,255,255,.6); width:40%; }
.thumb-cstack .t-cs-body { flex:1; padding:6px 8px; display:flex; flex-direction:column; gap:5px; }
.thumb-cstack .t-cs-card { background:#fff; border:1px solid #ccfbf1; border-radius:5px; padding:5px 7px; box-shadow:0 1px 4px rgba(13,148,136,.08); }
.thumb-cstack .t-cs-cname { height:4px; border-radius:1px; background:#134e4a; width:60%; margin-bottom:3px; }
.thumb-cstack .t-cs-cline { height:3px; border-radius:1.5px; background:#e5e7eb; margin:2px 0; }
.thumb-cstack .t-cs-cline.w90{width:90%;} .thumb-cstack .t-cs-cline.w60{width:60%;}

/* 54. Ink Draft */
.thumb-inkd { background:#faf6f0; height:100%; display:flex; flex-direction:column; padding:10px 12px; font-family:monospace; }
.thumb-inkd .t-id-name { height:9px; border-radius:1px; background:#18181b; width:62%; margin-bottom:4px; }
.thumb-inkd .t-id-role { height:3.5px; border-radius:1px; background:#57534e; width:44%; font-style:italic; margin-bottom:4px; }
.thumb-inkd .t-id-dbl { height:0; border-top:2px double #18181b; margin-bottom:8px; }
.thumb-inkd .t-id-rule { height:2px; background:#18181b; margin:7px 0 4px; }
.thumb-inkd .t-id-line { height:3px; border-radius:1px; background:#e7e5e4; margin:4px 0; }
.thumb-inkd .t-id-line.w90{width:90%;} .thumb-inkd .t-id-line.w70{width:70%;} .thumb-inkd .t-id-line.w55{width:55%;}

/* 55. Dual Column */
.thumb-dcol { background:#fff; height:100%; display:flex; flex-direction:column; }
.thumb-dcol .t-dc-head { background:#1e3a8a; padding:8px 10px; flex-shrink:0; }
.thumb-dcol .t-dc-name { height:8px; border-radius:1.5px; background:#fff; width:55%; margin-bottom:3px; }
.thumb-dcol .t-dc-role { height:3px; border-radius:1.5px; background:#93c5fd; width:38%; }
.thumb-dcol .t-dc-cols { flex:1; display:flex; }
.thumb-dcol .t-dc-left { flex:1.4; padding:8px 8px 8px 10px; border-right:1px solid #e0e7ff; display:flex; flex-direction:column; gap:3px; }
.thumb-dcol .t-dc-right { flex:1; padding:8px 8px; display:flex; flex-direction:column; gap:3px; }
.thumb-dcol .t-dc-acc { height:1.5px; background:#1d4ed8; width:24%; margin:5px 0 3px; }
.thumb-dcol .t-dc-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:2.5px 0; }
.thumb-dcol .t-dc-line.w90{width:90%;} .thumb-dcol .t-dc-line.w70{width:70%;}
.thumb-dcol .t-dc-sline { height:3px; border-radius:1.5px; background:#dbeafe; margin:3px 0; }

/* 56. Rule Lines */
.thumb-rlns { background:#fff; height:100%; display:flex; flex-direction:column; padding:10px 12px; }
.thumb-rlns .t-rl-top { margin-bottom:8px; padding-bottom:6px; border-bottom:3px solid #111827; }
.thumb-rlns .t-rl-name { height:8px; border-radius:1.5px; background:#111827; width:60%; margin-bottom:3px; }
.thumb-rlns .t-rl-role { height:3.5px; border-radius:1.5px; background:#d97706; width:42%; }
.thumb-rlns .t-rl-sec { display:flex; align-items:center; margin:5px 0 3px; gap:4px; }
.thumb-rlns .t-rl-slab { height:12px; background:#111827; padding:0 6px; display:flex; align-items:center; clip-path:polygon(0 0, calc(100% - 5px) 0, 100% 50%, calc(100% - 5px) 100%, 0 100%); }
.thumb-rlns .t-rl-slab::after { content:''; display:block; width:18px; height:2.5px; background:#fff; border-radius:1px; }
.thumb-rlns .t-rl-sline { flex:1; height:1.5px; background:#111827; }
.thumb-rlns .t-rl-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:3px 0; }
.thumb-rlns .t-rl-line.w90{width:90%;} .thumb-rlns .t-rl-line.w70{width:70%;} .thumb-rlns .t-rl-line.w55{width:55%;}

/* 57. Arch Top */
.thumb-archt { background:#fff; height:100%; display:flex; flex-direction:column; overflow:hidden; }
.thumb-archt .t-at-arch { background:linear-gradient(135deg,#7c3aed,#4338ca); padding:10px 12px 26px; position:relative; flex-shrink:0; -webkit-print-color-adjust:exact; print-color-adjust:exact; }
.thumb-archt .t-at-arch::after { content:''; position:absolute; bottom:0; left:0; right:0; height:22px; background:#fff; border-radius:50% 50% 0 0 / 22px 22px 0 0; }
.thumb-archt .t-at-name { height:7px; border-radius:1.5px; background:#fff; width:58%; margin-bottom:3px; }
.thumb-archt .t-at-role { height:3px; border-radius:1.5px; background:rgba(255,255,255,.6); width:40%; }
.thumb-archt .t-at-body { flex:1; padding:4px 12px 8px; display:flex; flex-direction:column; gap:4px; }
.thumb-archt .t-at-acc { height:1.5px; background:#7c3aed; width:24%; margin:5px 0 3px; }
.thumb-archt .t-at-line { height:3px; border-radius:1.5px; background:#f5f3ff; margin:4px 0; }
.thumb-archt .t-at-line.w90{width:90%;} .thumb-archt .t-at-line.w70{width:70%;} .thumb-archt .t-at-line.w55{width:55%;}

/* 58. Chip Tag */
.thumb-chtag { background:#fafafa; height:100%; display:flex; flex-direction:column; padding:10px 12px; }
.thumb-chtag .t-ct-name { height:8px; border-radius:2px; background:#0f172a; width:60%; margin-bottom:3px; }
.thumb-chtag .t-ct-role { height:3.5px; border-radius:1.5px; background:#6366f1; width:42%; margin-bottom:8px; }
.thumb-chtag .t-ct-chips { display:flex; flex-wrap:wrap; gap:3px; margin-bottom:8px; }
.thumb-chtag .t-ct-chip { height:10px; border-radius:5px; }
.thumb-chtag .t-ct-chip:nth-child(1){background:#e0e7ff;width:28px;} .thumb-chtag .t-ct-chip:nth-child(2){background:#fce7f3;width:20px;}
.thumb-chtag .t-ct-chip:nth-child(3){background:#dcfce7;width:32px;} .thumb-chtag .t-ct-chip:nth-child(4){background:#fff7ed;width:18px;}
.thumb-chtag .t-ct-chip:nth-child(5){background:#f5f3ff;width:24px;}
.thumb-chtag .t-ct-acc { height:1.5px; background:#0f172a; width:22%; margin:5px 0 4px; }
.thumb-chtag .t-ct-line { height:3px; border-radius:1.5px; background:#e5e7eb; margin:4px 0; }
.thumb-chtag .t-ct-line.w90{width:90%;} .thumb-chtag .t-ct-line.w70{width:70%;}

/* 59. Slash Cut */
.thumb-slcut { background:#fff; height:100%; display:flex; flex-direction:column; overflow:hidden; position:relative; }
.thumb-slcut .t-sl-top { position:relative; overflow:hidden; padding:12px 14px 10px; flex-shrink:0; min-height:52px; }
.thumb-slcut .t-sl-top::before { content:''; position:absolute; top:0; left:0; width:58%; height:100%; background:#ef4444; clip-path:polygon(0 0, 100% 0, 75% 100%, 0 100%); z-index:0; -webkit-print-color-adjust:exact; print-color-adjust:exact; }
.thumb-slcut .t-sl-name { height:7px; border-radius:1.5px; background:#fff; width:56%; margin-bottom:3px; position:relative; z-index:1; }
.thumb-slcut .t-sl-role { height:3px; border-radius:1.5px; background:rgba(255,255,255,.75); width:36%; position:relative; z-index:1; }
.thumb-slcut .t-sl-body { flex:1; padding:8px 12px; display:flex; flex-direction:column; gap:4px; }
.thumb-slcut .t-sl-acc { display:flex; align-items:center; gap:4px; }
.thumb-slcut .t-sl-acc::before { content:''; width:10px; height:2px; background:#ef4444; border-radius:1px; flex-shrink:0; }
.thumb-slcut .t-sl-acc::after { content:''; flex:1; height:1px; background:#fee2e2; }
.thumb-slcut .t-sl-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:3px 0; }
.thumb-slcut .t-sl-line.w90{width:90%;} .thumb-slcut .t-sl-line.w70{width:70%;} .thumb-slcut .t-sl-line.w55{width:55%;}

/* 60. Border Frame */
.thumb-bfr { height:100%; background:#0f172a; padding:4px; }
.thumb-bfr .t-bf-inner { height:100%; background:#fff; display:flex; flex-direction:column; overflow:hidden; }
.thumb-bfr .t-bf-head { background:#0f172a; padding:8px 10px; text-align:center; }
.thumb-bfr .t-bf-name { height:7px; border-radius:1px; background:#f8fafc; width:56%; margin:0 auto 3px; }
.thumb-bfr .t-bf-role { height:3px; border-radius:1px; background:rgba(248,250,252,.5); width:38%; margin:0 auto; }
.thumb-bfr .t-bf-body { flex:1; padding:7px 10px; display:flex; flex-direction:column; gap:4px; }
.thumb-bfr .t-bf-sec { display:flex; align-items:center; gap:4px; margin-top:3px; }
.thumb-bfr .t-bf-sec::before { content:''; width:10px; height:1.5px; background:#0f172a; }
.thumb-bfr .t-bf-sec::after { content:''; flex:1; height:1px; background:#e2e8f0; }
.thumb-bfr .t-bf-line { height:3px; border-radius:1.5px; background:#f1f5f9; margin:3px 0; }
.thumb-bfr .t-bf-line.w90{width:90%;} .thumb-bfr .t-bf-line.w70{width:70%;} .thumb-bfr .t-bf-line.w55{width:55%;}

/* ══════════════════════════════════════════
  EDITORIAL & SOFT  (61–70)
  ══════════════════════════════════════════ */

/* 61. Pastel Ribbon */
.thumb-prib { background:#fff7fb; height:100%; display:flex; flex-direction:column; }
.thumb-prib .t-pr-top { background:linear-gradient(90deg,#f9a8d4,#c4b5fd); padding:9px 11px; }
.thumb-prib .t-pr-name { height:7px; border-radius:2px; background:#fff; width:58%; margin-bottom:3px; }
.thumb-prib .t-pr-role { height:3px; border-radius:1.5px; background:rgba(255,255,255,.65); width:38%; }
.thumb-prib .t-pr-body { flex:1; padding:9px 11px; }
.thumb-prib .t-pr-acc { height:2px; background:#f472b6; width:26%; margin:5px 0 4px; }
.thumb-prib .t-pr-line { height:3px; border-radius:1.5px; background:#f1f5f9; margin:4px 0; }
.thumb-prib .t-pr-line.w90{width:90%;} .thumb-prib .t-pr-line.w70{width:70%;} .thumb-prib .t-pr-line.w55{width:55%;}

/* 62. Linen Rail */
.thumb-lrail { background:#fff; height:100%; display:flex; }
.thumb-lrail .t-lr-rail { width:26%; background:#f5f5f4; padding:10px 6px; border-right:1px solid #e7e5e4; }
.thumb-lrail .t-lr-dot { width:22px; height:22px; border-radius:50%; background:#d6d3d1; margin:0 auto 8px; }
.thumb-lrail .t-lr-rline { height:3px; border-radius:1.5px; background:#d6d3d1; margin:4px 0; }
.thumb-lrail .t-lr-main { flex:1; padding:10px 8px; }
.thumb-lrail .t-lr-name { height:6px; border-radius:2px; background:#57534e; width:56%; margin-bottom:3px; }
.thumb-lrail .t-lr-role { height:3px; border-radius:1.5px; background:#a8a29e; width:36%; margin-bottom:6px; }
.thumb-lrail .t-lr-acc { height:1.5px; background:#78716c; width:24%; margin:5px 0 3px; }
.thumb-lrail .t-lr-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:3px 0; }
.thumb-lrail .t-lr-line.w90{width:90%;} .thumb-lrail .t-lr-line.w70{width:70%;} .thumb-lrail .t-lr-line.w55{width:55%;}

/* 63. Paper Cards */
.thumb-pcards { background:#f8fafc; height:100%; display:flex; flex-direction:column; padding:9px; gap:4px; }
.thumb-pcards .t-pc-title { height:7px; border-radius:2px; background:#334155; width:52%; margin-bottom:2px; }
.thumb-pcards .t-pc-card { background:#fff; border:1px solid #e2e8f0; border-radius:5px; padding:5px 6px; }
.thumb-pcards .t-pc-cname { height:4px; border-radius:1px; background:#64748b; width:62%; margin-bottom:3px; }
.thumb-pcards .t-pc-line { height:3px; border-radius:1.5px; background:#e2e8f0; margin:2px 0; }
.thumb-pcards .t-pc-line.w90{width:90%;} .thumb-pcards .t-pc-line.w60{width:60%;}

/* 64. Serif Note */
.thumb-snote { background:#fffaf0; height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-snote .t-sn-name { height:8px; border-radius:1px; background:#292524; width:58%; margin-bottom:3px; }
.thumb-snote .t-sn-role { height:3px; border-radius:1px; background:#a8a29e; width:38%; margin-bottom:6px; }
.thumb-snote .t-sn-rule { height:1.5px; background:#78716c; margin:5px 0 4px; }
.thumb-snote .t-sn-line { height:3px; border-radius:1px; background:#e7e5e4; margin:3px 0; }
.thumb-snote .t-sn-line.w90{width:90%;} .thumb-snote .t-sn-line.w70{width:70%;} .thumb-snote .t-sn-line.w55{width:55%;}

/* 65. Duo Balance */
.thumb-dbal { background:#fff; height:100%; display:flex; flex-direction:column; }
.thumb-dbal .t-db-head { background:#e0f2fe; padding:8px 10px; }
.thumb-dbal .t-db-name { height:7px; border-radius:2px; background:#0c4a6e; width:56%; margin-bottom:3px; }
.thumb-dbal .t-db-role { height:3px; border-radius:1.5px; background:#38bdf8; width:36%; }
.thumb-dbal .t-db-cols { flex:1; display:flex; }
.thumb-dbal .t-db-left, .thumb-dbal .t-db-right { flex:1; padding:8px 7px; }
.thumb-dbal .t-db-left { border-right:1px solid #e0f2fe; }
.thumb-dbal .t-db-acc { height:1.5px; background:#0284c7; width:24%; margin:4px 0 3px; }
.thumb-dbal .t-db-line { height:3px; border-radius:1.5px; background:#f1f5f9; margin:3px 0; }
.thumb-dbal .t-db-line.w90{width:90%;} .thumb-dbal .t-db-line.w70{width:70%;} .thumb-dbal .t-db-line.w50{width:50%;}

/* 66. Fine Rules */
.thumb-frules { background:#fff; height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-frules .t-fr-top { margin-bottom:6px; }
.thumb-frules .t-fr-name { height:7px; border-radius:2px; background:#1f2937; width:58%; margin-bottom:3px; }
.thumb-frules .t-fr-role { height:3px; border-radius:1.5px; background:#9ca3af; width:36%; }
.thumb-frules .t-fr-sec { display:flex; align-items:center; gap:4px; margin:4px 0 3px; }
.thumb-frules .t-fr-slab { width:16px; height:2px; background:#6b7280; }
.thumb-frules .t-fr-sline { flex:1; height:1px; background:#d1d5db; }
.thumb-frules .t-fr-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:3px 0; }
.thumb-frules .t-fr-line.w90{width:90%;} .thumb-frules .t-fr-line.w70{width:70%;} .thumb-frules .t-fr-line.w55{width:55%;}

/* 67. Halo Arch */
.thumb-harch { background:#fff; height:100%; display:flex; flex-direction:column; overflow:hidden; }
.thumb-harch .t-ha-arch { background:linear-gradient(135deg,#c4b5fd,#93c5fd); padding:10px 11px 22px; position:relative; }
.thumb-harch .t-ha-arch::after { content:''; position:absolute; left:0; right:0; bottom:0; height:18px; background:#fff; border-radius:50% 50% 0 0 / 18px 18px 0 0; }
.thumb-harch .t-ha-name { height:7px; border-radius:2px; background:#fff; width:56%; margin-bottom:3px; }
.thumb-harch .t-ha-role { height:3px; border-radius:1.5px; background:rgba(255,255,255,.65); width:36%; }
.thumb-harch .t-ha-body { flex:1; padding:5px 11px 8px; }
.thumb-harch .t-ha-acc { height:1.5px; background:#818cf8; width:24%; margin:5px 0 3px; }
.thumb-harch .t-ha-line { height:3px; border-radius:1.5px; background:#eef2ff; margin:3px 0; }
.thumb-harch .t-ha-line.w90{width:90%;} .thumb-harch .t-ha-line.w70{width:70%;} .thumb-harch .t-ha-line.w55{width:55%;}

/* 68. Pastel Chip */
.thumb-pchip { background:#fff; height:100%; display:flex; flex-direction:column; padding:10px; }
.thumb-pchip .t-pch-name { height:7px; border-radius:2px; background:#334155; width:56%; margin-bottom:3px; }
.thumb-pchip .t-pch-role { height:3px; border-radius:1.5px; background:#94a3b8; width:36%; margin-bottom:6px; }
.thumb-pchip .t-pch-chips { display:flex; flex-wrap:wrap; gap:3px; margin-bottom:6px; }
.thumb-pchip .t-pch-chip { height:10px; border-radius:5px; }
.thumb-pchip .t-pch-chip:nth-child(1){background:#e0e7ff;} .thumb-pchip .t-pch-chip:nth-child(2){background:#fce7f3;}
.thumb-pchip .t-pch-chip:nth-child(3){background:#dcfce7;} .thumb-pchip .t-pch-chip:nth-child(4){background:#fef3c7;}
.thumb-pchip .t-pch-chip:nth-child(5){background:#e0f2fe;}
.thumb-pchip .t-pch-sec { height:1.5px; background:#94a3b8; width:24%; margin:4px 0 3px; }
.thumb-pchip .t-pch-line { height:3px; border-radius:1.5px; background:#e5e7eb; margin:3px 0; }
.thumb-pchip .t-pch-line.w90{width:90%;} .thumb-pchip .t-pch-line.w70{width:70%;}

/* 69. Angle Light */
.thumb-alight { background:#fff; height:100%; display:flex; flex-direction:column; overflow:hidden; }
.thumb-alight .t-al-top { position:relative; padding:10px 12px 8px; }
.thumb-alight .t-al-top::before { content:''; position:absolute; top:0; left:0; width:55%; height:100%; background:#fda4af; clip-path:polygon(0 0,100% 0,74% 100%,0 100%); }
.thumb-alight .t-al-name { position:relative; z-index:1; height:7px; border-radius:2px; background:#fff; width:52%; margin-bottom:3px; }
.thumb-alight .t-al-role { position:relative; z-index:1; height:3px; border-radius:1.5px; background:rgba(255,255,255,.7); width:34%; }
.thumb-alight .t-al-body { flex:1; padding:8px 10px; }
.thumb-alight .t-al-acc { height:1.5px; background:#fb7185; width:24%; margin:5px 0 3px; }
.thumb-alight .t-al-line { height:3px; border-radius:1.5px; background:#f3f4f6; margin:3px 0; }
.thumb-alight .t-al-line.w90{width:90%;} .thumb-alight .t-al-line.w70{width:70%;} .thumb-alight .t-al-line.w55{width:55%;}

/* 70. Thin Frame */
.thumb-tframe { background:#f8fafc; height:100%; padding:3px; }
.thumb-tframe .t-tf-inner { height:100%; border:1px solid #cbd5e1; background:#fff; display:flex; flex-direction:column; }
.thumb-tframe .t-tf-head { padding:8px 10px; text-align:center; border-bottom:1px solid #e2e8f0; }
.thumb-tframe .t-tf-name { height:7px; border-radius:1px; background:#334155; width:54%; margin:0 auto 3px; }
.thumb-tframe .t-tf-role { height:3px; border-radius:1px; background:#94a3b8; width:34%; margin:0 auto; }
.thumb-tframe .t-tf-sec { display:flex; align-items:center; gap:4px; margin:5px 0 3px; }
.thumb-tframe .t-tf-sec::before { content:''; width:8px; height:1.5px; background:#94a3b8; }
.thumb-tframe .t-tf-sec::after { content:''; flex:1; height:1px; background:#e2e8f0; }
.thumb-tframe .t-tf-line { height:3px; border-radius:1.5px; background:#f1f5f9; margin:3px 8px; }
.thumb-tframe .t-tf-line.w90{width:90%;} .thumb-tframe .t-tf-line.w70{width:70%;} .thumb-tframe .t-tf-line.w55{width:55%;}
