.community-card-shell{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.community-card-shell .card{
    margin-bottom:0;
}

.community-reactions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
    padding:0 4px 4px;
}

.community-reaction-btn{
    appearance:none;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.04);
    color:#cfe0e8;
    border-radius:999px;
    padding:8px 12px;
    font-size:12px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    transition:all 0.18s ease;
}

.community-reaction-btn:hover{
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.14);
    color:#f4f8fb;
}

.community-reaction-btn.is-active{
    background:rgba(37,211,102,0.14);
    border-color:rgba(37,211,102,0.34);
    color:#7ff0ae;
}

.community-reaction-label{
    font-size:11px;
    color:#89a0ad;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-right:2px;
}

@media (max-width: 768px){
    .community-reactions{
        gap:6px;
        padding:0 2px 2px;
    }

    .community-reaction-btn{
        padding:8px 10px;
        font-size:11px;
    }
}

.community-reaction-count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:18px;
    margin-left:6px;
    padding:2px 6px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    color:inherit;
    font-size:11px;
    line-height:1;
}

.community-reaction-link{
    text-decoration:none;
    display:inline-flex;
    align-items:center;
}

.community-reaction-btn{
    appearance:none;
    border:0;
    border-radius:999px;
    padding:10px 14px;
    font-size:12px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    transition:all 0.18s ease;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    color:#fff;
    box-shadow:0 8px 18px rgba(0,0,0,0.14);
}

.community-reaction-count{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:18px;
    padding:2px 6px;
    border-radius:999px;
    background:rgba(255,255,255,0.18);
    color:inherit;
    font-size:11px;
    line-height:1;
}

.community-reaction-btn[data-reaction="useful"]{
    background:#ea4335;
}

.community-reaction-btn[data-reaction="useful"]:hover,
.community-reaction-btn[data-reaction="useful"].is-active{
    background:#d93025;
}

.community-reaction-btn[data-reaction="interested"]{
    background:#1877f2;
}

.community-reaction-btn[data-reaction="interested"]:hover,
.community-reaction-btn[data-reaction="interested"].is-active{
    background:#1666d8;
}

.community-reaction-link{
    background:#25d366;
    color:#07110d;
}

.community-reaction-link:hover{
    background:#1ebe5a;
    color:#07110d;
}