/* === Inline reactions block (under content) === */
.reactions-block {
    text-align: center;
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}
.reactions-block .reactions-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0,0,0,.7);
    margin: 0 0 16px;
}
.reactions-block .reactions-emojis {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.reactions-block .reaction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 24px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}
.reactions-block .reaction-btn:hover {
    transform: scale(1.2);
    background: #eef3ff;
}
.reactions-block .reaction-btn.selected {
    border-color: #126df7;
    background: #eef3ff;
    transform: scale(1.15);
}
.reactions-block .reactions-signin {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(0,0,0,.5);
}
.reactions-block .reactions-signin a {
    color: #126df7;
    text-decoration: none;
}
.reactions-block .reactions-signin a:hover {
    text-decoration: underline;
}

/* === Comments CTA (not logged in) === */
.comments-cta {
    text-align: center;
    margin: 32px 0;
    padding: 40px 24px;
    background: #f8f9fa;
    border-radius: 12px;
}
.comments-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: rgba(0,0,0,.85);
    margin: 0 0 16px;
}
.comments-cta__text {
    font-size: 15px;
    color: rgba(0,0,0,.55);
    margin: 0 0 20px;
}
.comments-cta__btn {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    color: rgba(0,0,0,.45);
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid rgba(0,0,0,.15);
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.comments-cta__btn:hover {
    border-color: rgba(0,0,0,.3);
    color: rgba(0,0,0,.6);
}
.comments-cta__signin {
    margin: 12px 0 0;
    font-size: 13px;
    color: rgba(0,0,0,.4);
}
.comments-cta__signin a {
    color: rgba(0,0,0,.4);
    text-decoration: none;
    font-weight: 500;
}
.comments-cta__signin a:hover {
    color: rgba(0,0,0,.6);
    text-decoration: underline;
}
