.shorttitle {
    /* width: 380px;                 */
    text-overflow: ellipsis;     
    white-space: nowrap;         
    overflow: hidden;            
}
#content {
    min-height: 900px !important;
    background-color: white;
}
body {
    background-color: #212529;
}
.square-crop {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 비율 유지 */
  overflow: hidden;
}

.cropped-img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
}