.shadow-card {
    box-shadow: 0 4px 24px -2px rgba(0, 0, 0, 0.04);
}
.clamp-1 { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 1; }
.clamp-2 { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 2; }
.clamp-4 { display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 4; }

.statics-count .count-box {
    border: 1px solid #e7e4da80;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
    height: 100%;
}
.statics-count .count-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #778a284d;
}
.statics-count .gradient-line {
    width: 60%;
    height: 4px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(119, 138, 40, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}
