.gallery{display:grid;gap:.75rem;grid-template:auto/minmax(0,1fr);margin-left:auto;margin-right:auto;width:100%}@media(min-width:850px){.gallery{gap:1.125rem;grid-template-columns:repeat(2,minmax(0,1fr))}}.gallery:where(:not(:last-child)){margin-bottom:3rem}.gallery--full-width{left:50%;max-width:var(--layout-width-lg);position:relative;transform:translateX(-50%);width:calc(100vw - (var(--layout-gutter-x) + var(--layout-gutter-outer-x))*2)}@media(min-width:850px){.gallery--grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}.gallery--grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.gallery--pattern-2{grid-template-areas:"first" "second"}@media(min-width:640px){.gallery--pattern-2{grid-template-areas:"first first second";grid-template-columns:repeat(3,minmax(0,1fr))}}.gallery--pattern-3{grid-template-areas:"first first" "second third";grid-template-columns:repeat(2,minmax(0,1fr))}@media(min-width:640px){.gallery--pattern-3{grid-template-areas:"first first second" "first first third";grid-template-columns:repeat(3,minmax(0,1fr))}}.gallery--pattern-4{grid-template-areas:"first first" "second third" "fourth fourth";grid-template-columns:repeat(2,minmax(0,1fr))}@media(min-width:640px){.gallery--pattern-4{grid-template-areas:"first first second" "third fourth fourth";grid-template-columns:repeat(3,minmax(0,1fr))}}.gallery__item{background:var(--color-light-light);display:flex}:where(.gallery--pattern-2,.gallery--pattern-3,.gallery--pattern-4)>.gallery__item:first-child{grid-area:first}:where(.gallery--pattern-2,.gallery--pattern-3,.gallery--pattern-4)>.gallery__item:nth-child(2){grid-area:second}:where(.gallery--pattern-3,.gallery--pattern-4)>.gallery__item:nth-child(3){grid-area:third}:where(.gallery--pattern-4)>.gallery__item:nth-child(4){grid-area:fourth}