@charset "utf-8";
.img-wrapper {
  width: 500px; /* 또는 원하는 크기 */
  height: 300px;
  background-color: #f0f0f0; /* 여백 보일 때 깔끔하게 */
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 또는 cover */
}
