/*
 * RV_SOCIAL_COMMENTS_V1_PRODUCTION_STYLE_20260820
 */

.rvc1p-thread{
    width:100%;
}

.rvc1p-list{
    display:grid;
    gap:11px;
}

.rvc1p-comment{
    display:grid;
    grid-template-columns:34px minmax(0,1fr);
    gap:9px;
    align-items:start;
    min-width:0;
}

.rvc1p-comment.is-reply{
    grid-template-columns:29px minmax(0,1fr);
    margin-top:10px;
}

.rvc1p-avatar{
    width:34px;
    height:34px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    overflow:hidden;
    border-radius:50%;
    background:#eceef1;
    color:#616873;
    font-size:10px;
    font-weight:900;
}

.rvc1p-avatar.small{
    width:29px;
    height:29px;
    font-size:8px;
}

.rvc1p-avatar.composer{
    width:32px;
    height:32px;
}

.rvc1p-avatar img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.rvc1p-main{
    min-width:0;
}

.rvc1p-bubble{
    width:fit-content;
    max-width:min(620px,96%);
    padding:8px 11px 9px;
    border-radius:6px 15px 15px 15px;
    background:#f0f2f4;
}

.rvc1p-comment.is-reply .rvc1p-bubble{
    background:#f4f5f6;
}

.rvc1p-name-row{
    display:flex;
    align-items:center;
    gap:5px;
    min-height:16px;
}

.rvc1p-name-row strong{
    color:#25292f;
    font-size:11px;
    line-height:1.2;
    font-weight:900;
}

.rvc1p-verified{
    width:14px;
    height:14px;
    display:inline-grid;
    place-items:center;
    border-radius:50%;
    background:#d71920;
    color:#fff;
    font-size:8px;
    font-weight:950;
    flex:0 0 auto;
}

.rvc1p-bubble p{
    margin:3px 0 0;
    color:#343940;
    font-size:12px;
    line-height:1.45;
    overflow-wrap:anywhere;
}

.rvc1p-media{
    display:block;
    width:min(280px,100%);
    margin-top:8px;
    overflow:hidden;
    border-radius:11px;
}

.rvc1p-media img{
    width:100%;
    max-height:230px;
    display:block;
    object-fit:cover;
}

.rvc1p-meta{
    min-height:23px;
    padding:3px 6px 0;
    display:flex;
    align-items:center;
    gap:10px;
    color:#858b94;
    font-size:9px;
    font-weight:760;
}

.rvc1p-howl-form{
    margin:0;
    display:inline-flex;
}

.rvc1p-meta-action{
    border:0;
    margin:0;
    padding:0;
    display:inline-flex;
    align-items:center;
    gap:4px;
    background:transparent;
    color:#707781;
    font-size:9px;
    font-weight:900;
    line-height:1;
}

.rvc1p-meta-action:hover{
    color:#d71920;
}

.rvc1p-howl.is-howled{
    color:#d71920;
}

.rvc1p-howl-icon{
    width:14px;
    height:14px;
    display:inline-grid;
    place-items:center;
    line-height:0;
}

.rvc1p-howl-icon .rv4-howl-inline,
.rvc1p-howl-icon svg{
    width:100%!important;
    height:100%!important;
    display:block!important;
}

.rvc1p-count{
    color:inherit;
    font-variant-numeric:tabular-nums;
}

.rvc1p-replies{
    margin:1px 0 0 11px;
    padding-left:13px;
    border-left:1px solid #e1e3e7;
}

.rvc1p-reply-form{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:7px;
    max-width:500px;
    margin-top:5px;
    padding-left:5px;
}

.rvc1p-reply-form[hidden]{
    display:none;
}

.rvc1p-reply-form input[type="text"]{
    width:100%;
    height:34px;
    border:0;
    border-radius:999px;
    outline:0;
    padding:0 12px;
    background:#f1f3f5;
    color:#2f343a;
    font-size:10px;
}

.rvc1p-reply-form input[type="text"]:focus{
    background:#fff;
    box-shadow:
        inset 0 0 0 1px #e3a8aa,
        0 0 0 3px rgba(215,25,32,.045);
}

.rvc1p-reply-form button{
    height:34px;
    border:0;
    border-radius:9px;
    padding:0 12px;
    background:#d71920;
    color:#fff;
    font-size:9px;
    font-weight:900;
}

.rvc1p-compose{
    display:grid;
    grid-template-columns:32px minmax(0,1fr) auto;
    gap:8px;
    align-items:center;
    margin-top:9px;
}

.rvc1p-compose input[type="text"]{
    width:100%;
    height:37px;
    border:0;
    border-radius:999px;
    outline:0;
    padding:0 13px;
    background:#f1f3f5;
    color:#2f343a;
    font-size:12px;
}

.rvc1p-compose input[type="text"]:focus{
    background:#fff;
    box-shadow:
        inset 0 0 0 1px #e2a4a7,
        0 0 0 3px rgba(215,25,32,.05);
}

.rvc1p-compose button{
    height:34px;
    border:0;
    border-radius:9px;
    padding:0 6px;
    background:transparent;
    color:#d71920;
    font-size:10px;
    font-weight:900;
}

.rvc1p-compose button:hover{
    background:#fff1f2;
}

.rvc1p-empty{
    padding:18px 4px;
    color:#858b94;
    font-size:11px;
}

.rvc1p-thread.mode-feed{
    display:grid;
    gap:3px;
}

@media(max-width:560px){

    .rvc1p-comment{
        grid-template-columns:31px minmax(0,1fr);
        gap:8px;
    }

    .rvc1p-avatar{
        width:31px;
        height:31px;
    }

    .rvc1p-replies{
        margin-left:2px;
        padding-left:9px;
    }

    .rvc1p-bubble{
        max-width:100%;
    }

    .rvc1p-compose{
        grid-template-columns:31px minmax(0,1fr);
    }

    .rvc1p-compose button{
        grid-column:2;
        justify-self:end;
    }
}
