

.card-img-top {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-title {
    min-height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-text {
    min-height: 82px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-date{
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 100px;
    background-color: #65A6DC;
    border-radius: 16px;
    color: #ffffff;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    padding: 4px;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  
  .upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }

