.cms_hb_box {
    --hbRValue: calc(calc(calc(100% - 1630px) / 2) + 30px);
    position: absolute;
    z-index: 11;
    top: 63px;
    right: max(30px,var(--hbRValue));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 282px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(34, 187, 218, 0.74);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
    transition: var(--transition);
    will-change: transform;
}
.cms_hb_box:hover { transform: rotate(8deg); }
.cms_hb_box > .full_article_link { border-radius: 50%; }
.cms_hb_imgContainer { position: relative; z-index: 1; width: 78px; }
.cms_hb_imgBox { width: 100%; }
.cms_hb_imgBox > picture { display: flex; width: 100%; padding: 0 0 150% 0; }
.cms_hb_imgBox > picture > img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-position: center; object-fit: cover; }
.cms_hb_text { max-width: 190px; width: 100%; color: var(--white); text-align: center; }
@media screen and (max-width: 959px) {
    .cms_hb_box { top: 30px; width: 200px; }
    .cms_hb_imgContainer { width: 40px; }
    .cms_hb_text { max-width: 125px; }
}