.card {
    position: relative;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.card-image {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.card:hover {
    transform: scale(1.05);
}

.limit-icon {
    position: absolute;
    top: 2%;
    left: 4%;
    width: 15%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}