.news_bubble-anchor {
    width: 0px;
    height: 0px;
    pointer-events: none;
    visibility: hidden;
}

.news_bubble {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    padding: 8px 12px;
    overflow: clip;
    transform-origin: center center;
    transition: all 0.4s ease-in-out;
}

.news_bubble:hover {
    transform: translateY(-5px) scale(1.01);
}

.news_bubble.design-a {
    background: linear-gradient(180deg, var(--bs-primary) 26.92%, var(--bs-secondary) 83.65%);;
}

.news_bubble.design-b {
    background-color: var(--bs-secondary);
    color: var(--bs-light);

}

.news_bubble--title {
    color: var(--bs-light);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: 0.005em;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: rotate(8.803deg);
}

.news_bubble.design-b .news_bubble--title {
    color: var(--bs-light);
}

.news_bubble--img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.news_bubble--img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1940px) {
    .news_bubble.design-a {
        top: 170px;
        right: 44px;
    }
}

@media screen and (max-width: 1480px) {
    .news_bubble.design-a {
        top: auto;
        bottom: 220px;
        right: 5%;
    }
}

@media screen and (max-width: 1280px) {
    .news_bubble {
        transform: scale(0.9);
        transform-origin: bottom right;
    }
    .news_bubble:hover {
        transform: translateY(-5px) scale(0.9);
    }
}

@media screen and (max-width: 992px) {
    .news_bubble {
        transform: scale(0.9);
        transform-origin: bottom right;
    }
    .news_bubble:hover {
        transform: translateY(-5px) scale(0.9);
    }
}

@media screen and (max-width: 767px) {
    .news_bubble {
        transform: scale(0.8);
        transform-origin: bottom right;
    }
    .news_bubble:hover {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 575px) {
    .news_bubble {
        transform: scale(0.65);
        transform-origin: bottom right;
    }
    .news_bubble:hover {
        transform: scale(0.65);
    }
}
