.lab-site .hero { position: relative; width: 100%; aspect-ratio: 2.5 / 1; overflow: hidden; background: #222; }
.lab-site .hero-slider { position: absolute; inset: 0; }
.lab-site .hero-slide { position: absolute; inset: 0; opacity: 0; animation: labHeroFade 15s infinite; background-size: cover; background-position: center; }
.lab-site .hero-slider.has-cms-slides .hero-slide { animation: none; transition: opacity 1.3s ease; }
.lab-site .hero-slider.has-cms-slides .hero-slide.is-active { opacity: 1; }
.lab-site .hero-slider.has-cms-slides .hero-slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.lab-site .hero-slider.has-cms-slides .hero-slide-video { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lab-site .hero-slider.has-cms-slides .hero-slide.is-video-enabled:not(.is-video-failed) .hero-slide-video { display: block; }
.lab-site .slide-1 { background: linear-gradient(135deg, #6b6f76 0%, #cfd3d8 100%); animation-delay: 0s; }
.lab-site .slide-2 { background: linear-gradient(135deg, #4d5560 0%, #a9b3bd 100%); animation-delay: -5s; }
.lab-site .slide-3 { background: linear-gradient(135deg, #7a6e64 0%, #d9cfc3 100%); animation-delay: -10s; }
@keyframes labHeroFade { 0% { opacity: 1; } 30% { opacity: 1; } 36.66% { opacity: 0; } 96.66% { opacity: 0; } 100% { opacity: 1; } }
.lab-site .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 55%); pointer-events: none; }
.lab-site .hero-text { display: none; position: absolute; left: var(--gutter); bottom: 56px; color: #ffffff; font-size: 30px; line-height: 1.35; letter-spacing: 0.02em; font-weight: 400; }
.lab-site .hero-dots { display: none; position: absolute; left: 0; right: 0; bottom: 20px; justify-content: center; gap: 8px; }
.lab-site .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); }
.lab-site .dot.is-active { background: #fff; }
.lab-site .content-grid { max-width: var(--container-width); margin: 0 auto; padding: 56px var(--gutter) 64px; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-areas: 'hair info photo'; gap: 56px; }
.lab-site .content-grid .area-hair { grid-area: hair; }
.lab-site .content-grid .area-info { grid-area: info; }
.lab-site .content-grid .area-photo { grid-area: photo; }
.lab-site .grid-block, .lab-site .info-block { display: flex; flex-direction: column; }
.lab-site .content-grid .block-title { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.2em; margin-bottom: 20px; }
.lab-site .thumb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.lab-site .thumb { aspect-ratio: 1 / 1; background: #d9d9d9; }
.lab-site .thumb.has-image { position: relative; overflow: hidden; background: #d9d9d9; }
.lab-site .thumb.has-image::before,
.lab-site .thumb.has-image::after { content: ''; position: absolute; inset: 0; background-position: center; background-size: cover; }
.lab-site .thumb.has-image::before { background-image: var(--lab-current-image); }
.lab-site .thumb.has-image::after { background-image: var(--lab-next-image); opacity: 0; transition: opacity 1.2s ease var(--lab-fade-delay, 0ms); }
.lab-site .thumb.has-image.is-transitioning::after { opacity: 1; }
.lab-site .thumb-1 { background: linear-gradient(135deg,#8a8f96 0%,#c7cbd1 100%); }
.lab-site .thumb-2 { background: linear-gradient(135deg,#b6ab9a 0%,#e3dcd1 100%); }
.lab-site .thumb-3 { background: linear-gradient(135deg,#9a9186 0%,#cfc7ba 100%); }
.lab-site .thumb-4 { background: linear-gradient(135deg,#767c85 0%,#b8bec5 100%); }
.lab-site .content-grid .view-link { display: block; text-align: center; margin-top: 16px; font-size: 10px; letter-spacing: .1em; }
.lab-site .info-list { flex: 1; }
.lab-site .info-item { border-bottom: 1px solid var(--color-border); }
.lab-site .info-item:first-child a { padding-top: 0; }
.lab-site .info-item a { display: block; padding: 16px 0; }
.lab-site .info-date { display: block; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.lab-site .info-block .info-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lab-site .info-title { font-size: 12px; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lab-site .chevron { color: var(--color-muted); font-size: 15px; flex-shrink: 0; }
@media (max-width: 768px) {
	.lab-site .hero { aspect-ratio: 16 / 9; height: auto; }
	.lab-site .hero-slider.has-cms-slides .hero-slide img { object-position: center 38%; }
	.lab-site .hero-overlay { display: none; }
	.lab-site .content-grid { padding: 36px var(--gutter-mobile) 48px; grid-template-columns: 1fr 1fr; grid-template-areas: 'hair photo' 'info info'; gap: 40px 20px; }
}
@media (prefers-reduced-motion: reduce) {
	.lab-site .hero-slider.has-cms-slides .hero-slide { transition-duration: .01ms; }
	.lab-site .thumb.has-image::after { transition-duration: .01ms; transition-delay: 0ms; }
}
