.gallery-container{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.gallery-item{aspect-ratio:16/9;border-radius:1.5rem;overflow:hidden}.gallery-item img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.gallery-item:first-child{grid-column:span 2;grid-row:span 2}.gallery-item:nth-child(2),.gallery-item:nth-child(3){grid-column:3}.gallery-item:only-child{grid-column:span 3;grid-row:span 1}@media (min-width:481px){.gallery-container:has(.gallery-item:first-child:nth-last-child(2)){grid-template-columns:repeat(2,minmax(0,1fr))}.gallery-container:has(.gallery-item:first-child:nth-last-child(2)) .gallery-item{grid-column:auto;grid-row:auto}}@media (max-width:768px){.gallery-container{grid-template-columns:repeat(2,minmax(0,1fr))}.gallery-item:first-child{grid-column:span 1;grid-row:span 1}.gallery-item:nth-child(2),.gallery-item:nth-child(3){grid-column:span 1}.gallery-item:only-child{grid-column:span 2}}@media (max-width:480px){.gallery-container{grid-template-columns:minmax(0,1fr)}.gallery-item:first-child{grid-column:span 1;grid-row:span 1}.gallery-item:nth-child(2),.gallery-item:nth-child(3),.gallery-item:only-child{grid-column:span 1}}