.rvc-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.read-img .trending-no {
    display: none;
}

.rvc-counter {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 10px;
    background-color: aliceblue;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    min-width: 30px;
    justify-content: center;
    z-index: 10000;
}

.rvc-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.rvc-count {
    font-weight: 400;
    font-size: 12px;
    color: var(--rvc-text-color);
    line-height: 1;
}

/* Стили для кастомных изображений, которые не обрабатываются через post_thumbnail_html */
.wp-post-image.rvc-has-counter,
.webtecore-block-img.rvc-has-counter {
    position: relative;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .rvc-counter {
        min-width: 70px;
    }

    .rvc-icon {
        width: 16px;
        height: 16px;
    }

    .rvc-count {
        font-size: 12px;
    }
}