.points_emotion_icons {
    display: inline-block;
    margin: 12px;
    vertical-align: top;
}
.points_emotion_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}
.emotion-card {
    width: 200px;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    text-align: center;
}

.emotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}


.emotion-icon img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 14px;
}

.emotion-meta {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.emotion-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

.emotion-description {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    font-style: italic;
}
