.gallery{--gap:32px;margin-top:var(--section-gap)}@media (max-width:1024px){.gallery{--gap:24px}}.gallery__wrap{display:grid;grid-template-areas:"a a a b b b" "a a a b b b" "a a a c c c" "a a a c c c" "d d d c c c" "d d d c c c";grid-template-rows:repeat(6,calc((var(--page-max-width) - var(--gap) * 5) / 6));grid-template-columns:repeat(6,1fr);grid-gap:var(--gap);gap:var(--gap)}@media (max-width:768px){.gallery__wrap{display:flex;flex-direction:column}}.gallery__item{position:relative;overflow:hidden;height:100%;border-radius:4px;background-color:var(--wood-900)}.gallery__item:first-child{grid-area:a}.gallery__item:nth-child(2){grid-area:b}.gallery__item:nth-child(3){grid-area:c}.gallery__item:nth-child(4){grid-area:d}@media (max-width:768px){.gallery__item{height:250px}.gallery__item:first-child,.gallery__item:nth-child(3){height:450px}}.gallery__item__image{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;-o-object-fit:cover;object-fit:cover}.gallery__item__content{position:absolute;display:flex;flex-direction:column;justify-content:flex-end;width:100%;height:100%;padding:24px;font-size:14px;line-height:1.4;color:var(--white);background:linear-gradient(to bottom,rgba(var(--black-rgb),0) 65%,rgba(var(--black-rgb),.7) 100%)}@media (max-width:768px){.gallery__item__content{padding:16px}}.gallery__item__title{font-weight:600}