/* commons.css */

/* ハートボタンの初期状態：アウトライン（枠のみ）表示 */
.favorite-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

/* favorited 状態：塗りつぶしハート */
.favorite-btn.favorited svg {
    color: firebrick;
    stroke: none;
}
