.load_link {
 font-family: var(--mono);
 font-size: 14px;
 display: inline-flex;
}
 .load_link{
display: grid !important;
 grid-template-columns: repeat(3, 1fr);
 }
.load_link_hide{
 display: none!important;
}


/* =========================================================
 Htmlstart — лайк: сверху действие, снизу счётчик
 (одинаково до и после клика)
 ========================================================= */

#likesit{
 width:100%;
 margin:0 0 12px;
 background:var(--panel);
 border:1px solid var(--line);
 border-radius:var(--radius, 14px);
 overflow:hidden;
 font-family:var(--mono);
}

#likesit .like{
 display:flex;
 flex-direction:column;
 width:100%;
 margin:0;
 padding:0;
 font-weight:400;
}

#likesit .like > a{
 text-decoration:none;
 font-family:inherit;
 box-sizing:border-box;
 color:inherit;
}

/* ---------- ДО лайка: две ссылки ---------- */

/* верх: действие */
#likesit .like > a[title="Мне нравится"],
#likesit .like > a[onclick*="openfrwind"]{
 order:1;
 display:flex;
 align-items:center;
 justify-content:center;
 gap:8px;
 min-height:44px;
 padding:20px 12px;
 color:var(--text);
 font-size:13px;
 font-weight:700;
 border:none;
 background:transparent;
 transition:background .15s ease, color .15s ease;
}

#likesit .like > a[title="Мне нравится"]::before,
#likesit .like > a[onclick*="openfrwind"]::before{
 content:"↑";
 color:var(--mint);
 font-weight:800;
}

#likesit .like > a[title="Мне нравится"]:hover,
#likesit .like > a[onclick*="openfrwind"]:hover{
 background:rgba(111,255,196,.08);
 color:var(--mint);
}

/* низ: счётчик */
#likesit .like > a[title="Посмотреть"]{
 order:2;
 display:flex;
 flex-direction:column;
 align-items:center;
 justify-content:center;
 gap:4px;
 padding:4px 12px 6px;
 background:var(--panel-2);
 border:none;
 border-top:1px solid var(--line);
 color:var(--muted);
 transition:color .15s ease;
}

#likesit .like > a[title="Посмотреть"]::after{
 content:"";
 font-size:10px;
 letter-spacing:.08em;
 text-transform:uppercase;
 color:var(--muted);
}

#likesit .like > a[title="Посмотреть"]:hover #vvod11{
 color:var(--mint);
}

#likesit #vvod11,
#likesit b#vvod11{
 border:0;
 background:none;
 padding:0;
 margin:0;
 min-width:0;
 height:auto;
 font-size:28px;
 font-weight:800;
 color:var(--text);
 line-height:1;
}

/* ---------- ПОСЛЕ лайка: одна ссылка — тот же каркас ---------- */

#likesit .like > a[href="javascript:like_uwnd()"]:not([title="Посмотреть"]){
 display:flex;
 flex-direction:column;
 align-items:stretch;
 width:100%;
 min-height:0px;
 padding:0;
 color:var(--mint);
 font-size:13px;
 font-weight:700;
 background:transparent;
}

/* верхняя зона: текст «Мне нравится +» */
#likesit .like > a[href="javascript:like_uwnd()"]:not([title="Посмотреть"]){
 text-align:center;
}

/* прячем «+» как отдельный акцент — число и так внизу */
#likesit .like > a[href="javascript:like_uwnd()"] > b:not(#vvod11){
 display:none;
}

/* псевдо-верх: подпись действия */
#likesit .like > a[href="javascript:like_uwnd()"]:not([title="Посмотреть"])::before{
 content:"↑ Мне нравится";
 display:flex;
 align-items:center;
 justify-content:center;
 gap:8px;
 min-height:44px;
 padding:12px;
 color:var(--mint);
 background:rgba(111,255,196,.08);
 border-bottom:1px solid var(--line);
 font-size:13px;
 font-weight:700;
}

/* низ: счётчик внутри той же ссылки */
#likesit .like > a[href="javascript:like_uwnd()"] #vvod11{
 display:flex;
 flex-direction:column;
 align-items:center;
 justify-content:center;
 gap:4px;
 width:100%;
 padding:14px 12px 16px;
 background:var(--panel-2);
 font-size:28px;
 font-weight:800;
 color:var(--text);
 line-height:1;
 box-sizing:border-box;
}

#likesit .like > a[href="javascript:like_uwnd()"] #vvod11::after{
 content:"оценок";
 font-size:10px;
 letter-spacing:.08em;
 text-transform:uppercase;
 color:var(--muted);
 font-weight:500;
}

#likesit .like > a[href="javascript:like_uwnd()"]:not([title="Посмотреть"]):hover::before{
 background:rgba(111,255,196,.14);
}

#likesit .like > a[href="javascript:like_uwnd()"]:hover #vvod11{
 color:var(--mint);
}

/* светлая тема */
html[data-theme="light"] #likesit .like > a[title="Мне нравится"]:hover,
html[data-theme="light"] #likesit .like > a[onclick*="openfrwind"]:hover{
 background:rgba(15,169,104,.08);
}

html[data-theme="light"] #likesit .like > a[href="javascript:like_uwnd()"]:not([title="Посмотреть"])::before{
 background:rgba(15,169,104,.1);
}