2026-01-06 15:43:31 +01:00
|
|
|
|
2026-02-24 17:05:22 +01:00
|
|
|
@mixin figure-16-9{
|
2026-02-09 18:56:31 +01:00
|
|
|
& > figure{
|
2026-01-06 15:43:31 +01:00
|
|
|
aspect-ratio: 16/9;
|
|
|
|
|
display: flex;
|
|
|
|
|
overflow: hidden;
|
2026-02-24 17:05:22 +01:00
|
|
|
img, picture{
|
2026-01-06 15:43:31 +01:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-01-23 14:21:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|