/* One date per row; keep original card surfaces and the full-image viewer. */
#kvBoard.kv-compact-timeline{display:grid;grid-template-columns:minmax(0,1fr);gap:8px;min-width:0}
.kv-compact-timeline .kv-date-group{grid-column:1/-1;display:grid;grid-template-columns:90px minmax(0,1fr);gap:8px;align-items:start;margin:0;padding:0 0 6px;border-bottom:1px solid var(--line);min-width:0}
.kv-compact-timeline .kv-date-group:last-child{border-bottom:0}
.kv-compact-timeline .kv-date-head{display:block;margin:0;padding:10px 0 0;border:0}
.kv-compact-timeline .kv-date-head h3{margin:0 0 7px;font-size:13px;font-weight:600;line-height:1.3}
.kv-compact-timeline .kv-date-head>span{display:block;color:var(--muted);font-size:10px;line-height:1.5}
.kv-date-strip{display:flex;flex-wrap:nowrap;gap:3px;min-width:0;overflow-x:auto;overflow-y:hidden;padding:0 0 4px;scroll-snap-type:x proximity;overscroll-behavior-x:contain}
.kv-compact-timeline .kv-card{flex:1 0 42px;min-width:0;max-width:112px;border-radius:8px;scroll-snap-align:start;transition:box-shadow .2s ease}
.kv-compact-timeline .kv-card:hover{transform:none;box-shadow:inset 0 0 0 1px #44443a}
.kv-compact-timeline .kv-visual{display:block;height:70px;min-height:0;margin:3px 3px 0;padding:0;border-radius:5px;overflow:hidden;background:#0c0c0c}
.kv-compact-timeline .kv-visual img{display:block;width:100%;height:100%;object-fit:contain;object-position:center}
.kv-compact-timeline .kv-body{padding:4px 2px 5px;text-align:center}
.kv-compact-timeline .kv-body b{margin:0;overflow:hidden;font-size:9px;font-weight:500;line-height:1.4;text-overflow:ellipsis;white-space:nowrap}
.kv-date-strip:focus-visible{outline:1px solid var(--accent);outline-offset:3px;border-radius:8px}
@media(max-width:650px){.kv-compact-timeline .kv-date-group{grid-template-columns:1fr;gap:6px}.kv-compact-timeline .kv-date-head{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:0}.kv-compact-timeline .kv-date-head h3{margin:0;font-size:12px}.kv-compact-timeline .kv-card{flex-basis:58px}}

.kv-carousel{width:min(1180px,calc(100vw - 32px));max-width:none;max-height:calc(100dvh - 32px);padding:0;border:1px solid var(--line);border-radius:16px;background:#111;color:var(--text);overflow:hidden}
.kv-carousel::backdrop{background:rgba(0,0,0,.82);backdrop-filter:blur(8px)}
.kv-carousel-head,.kv-carousel-foot{display:flex;align-items:center;gap:16px;padding:14px 18px}
.kv-carousel-head{justify-content:space-between;border-bottom:1px solid var(--line)}
.kv-carousel-head strong{font-size:13px;font-weight:500}
.kv-carousel-head span{margin-left:12px;font-size:11px;color:var(--muted)}
.kv-carousel button{font:inherit;cursor:pointer}
.kv-carousel-head button{border:0;background:#242424;color:var(--text);width:28px;height:28px;border-radius:8px;font-size:20px}
.kv-carousel-stage{position:relative;height:min(65vh,620px);min-height:160px;overflow:hidden;touch-action:pan-y;user-select:none}
#kvCarouselSlides{position:absolute;inset:0;perspective:1200px}
.kv-carousel-slide{position:absolute;top:7%;left:24%;width:52%;height:86%;margin:0;padding:8px;border:1px solid #363631;border-radius:12px;background:#191919;transition:transform .38s cubic-bezier(.2,.75,.2,1),opacity .38s ease;transform-origin:center;overflow:hidden}
.kv-carousel-slide img{display:block;width:100%;height:100%;object-fit:contain}
.kv-carousel-slide[data-offset="0"]{z-index:3;transform:translateX(0) scale(1);opacity:1;box-shadow:0 12px 40px #0008;cursor:default}
.kv-carousel-slide[data-offset="-1"]{z-index:2;transform:translateX(-76%) scale(.73);opacity:.55}
.kv-carousel-slide[data-offset="1"]{z-index:2;transform:translateX(76%) scale(.73);opacity:.55}
.kv-carousel-slide[data-offset="-2"]{z-index:1;transform:translateX(-130%) scale(.55);opacity:0;pointer-events:none}
.kv-carousel-slide[data-offset="2"]{z-index:1;transform:translateX(130%) scale(.55);opacity:0;pointer-events:none}
.kv-carousel-slide[data-offset="-1"]:hover,.kv-carousel-slide[data-offset="1"]:hover{opacity:.85}
.kv-carousel-arrow{position:absolute;top:calc(50% - 20px);z-index:5;width:36px;height:40px;border:1px solid #45453c;border-radius:10px;background:#181818dc;color:var(--text);font-size:26px!important}
.kv-carousel-arrow.prev{left:12px}.kv-carousel-arrow.next{right:12px}
.kv-carousel button:disabled{opacity:.25;cursor:default}
.kv-carousel-foot{border-top:1px solid var(--line);font-size:11px;flex-wrap:wrap;gap:12px}
.kv-carousel-foot>span{margin-right:auto;color:var(--muted)}
.kv-carousel-foot a{color:var(--accent);text-decoration:none}
.kv-carousel-foot button{padding:6px 10px;border:0;border-radius:7px;background:#242424;color:var(--text)}
.kv-carousel-foot button[aria-pressed="true"]{background:#dfff641f;color:var(--accent)}
.kv-carousel :focus-visible{outline:1px solid var(--accent);outline-offset:2px}
@media(max-width:650px){.kv-carousel{width:calc(100vw - 16px)}.kv-carousel-head,.kv-carousel-foot{padding:12px;gap:10px}.kv-carousel-head span{display:block;margin:4px 0 0}.kv-carousel-stage{height:58vh}.kv-carousel-slide{left:19%;width:62%;padding:4px}.kv-carousel-arrow{width:28px}.kv-carousel-arrow.prev{left:6px}.kv-carousel-arrow.next{right:6px}.kv-carousel-foot>span{flex-basis:100%}}
@media(prefers-reduced-motion:reduce){.kv-carousel-slide{transition:none}}
