.award-box {
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 16px;
    margin-right: 16px;
}

.award-box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #e6e6e6;
}
 
.award-box img {
    object-fit: cover;
    border-radius: 12px;
}

.award-box-title {
    color: #bd9a60;
    margin-top: 12px;
    font-size: 1.15rem;
    text-align: center;
}

.award-box-text {
    font-size: 14px;
    margin-bottom: 8px;
    min-height: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}