/* VINKS — Lookbook */
.lb-head { padding: var(--s-8) 0 var(--s-6); text-align:center; }
.lb-head h1 { font-family:var(--vk-serif); font-weight:500; text-transform:uppercase; color:var(--vk-white); font-size:clamp(48px,15vw,120px); line-height:0.9; margin:14px 0 0; }
.lb { display:grid; gap:10px; grid-template-columns:repeat(2,1fr); padding-bottom:var(--s-9); }
@media (min-width:900px){ .lb { grid-template-columns:repeat(6,1fr); gap:14px; } }
.lb figure { margin:0; position:relative; overflow:hidden; background:var(--vk-bg-photo); }
.lb figure img { width:100%; height:100%; object-fit:cover; transition:transform 1.4s var(--ease); }
.lb figure:hover img { transform:scale(1.05); }
.lb figcaption { position:absolute; left:16px; bottom:16px; z-index:2; }
.lb__tall { aspect-ratio:3/4; }
@media (min-width:900px){
  .lb .s2 { grid-column: span 2; }
  .lb .s3 { grid-column: span 3; }
  .lb .s4 { grid-column: span 4; }
  .lb .r2 { grid-row: span 2; }
  .lb__tall { aspect-ratio:auto; height:100%; }
  .lb figure { min-height:280px; }
}
.lb__wide { aspect-ratio:16/10; }
