.news-gallery{ display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item{/*aspect-ratio: 4/3;*/ max-height: 258px;overflow: hidden;}
.gallery-item img {width: 100%; height: 100%; object-fit: cover; transition: all 0.3s ease-in-out;}
.gallery-item:hover img {transform: scale(1.2);}

.gallery-item.unique{display: flex; align-items: center;justify-content: center; background-color: #000;}
.gallery-item.unique img{ height: auto;}

/* 소형 모바일 */
@media (max-width: 479px) { 
    
}

/* 모바일 */
@media (min-width: 480px) and (max-width: 767px) { 
 
}

/* 태블릿 */
@media (min-width: 768px) and (max-width: 1023px) { 
 
}

/* PC (1024~1200) */
@media (min-width: 1024px) and (max-width: 1200px) { 
  
   
}

/* 대형 화면 (1200 이상)*/
@media (min-width: 1201px) {

 }