.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.meta-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.card-date {
    font-size: 11px;
    color: var(--sub-text-color);
}

.heart-container {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.heart-count {
    font-size: 12px;
    color: var(--sub-text-color);
}

.heart-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--heart-color);
    stroke-width: 2;
    transition: fill 0.2s, stroke 0.2s, transform 0.1s;
}

.heart-container:active .heart-icon {
    transform: scale(1.2);
}

.heart-container.liked .heart-icon {
    fill: var(--heart-active);
    stroke: var(--heart-active);
}

.comment-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    cursor: default;
}

.comment-count {
    font-size: 12px;
    color: var(--sub-text-color);
}

.comment-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--sub-text-color);
    stroke-width: 2;
}
