.ei-ctw-wrap {
    --ei-ctw-size: 920px;
    --ei-ctw-image-size: 620px;
    --ei-ctw-inner-radius: 390px;
    --ei-ctw-outer-radius: 475px;
    position: relative;
    width: min(var(--ei-ctw-size), 100%);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    display: grid;
    place-items: center;
    overflow: visible;
    isolation: isolate;
}

.ei-ctw-image-link {
    width: min(var(--ei-ctw-image-size), 72vw);
    height: min(var(--ei-ctw-image-size), 72vw);
    display: block;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    line-height: 0;
}

.ei-ctw-image-link img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.ei-ctw-ring {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    transform: rotate(var(--ei-ctw-rotation, 0deg));
}

.ei-ctw-char {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    transform-origin: 0 0;
    white-space: pre;
    font-family: inherit;
    user-select: none;
}

.ei-ctw-ring-inner .ei-ctw-char {
    color: #dedede;
    font-size: 100px;
}

.ei-ctw-ring-outer .ei-ctw-char {
    color: rgba(255, 255, 255, .4);
    font-size: 60px;
}

@media (max-width: 767px) {
    .ei-ctw-wrap {
        --ei-ctw-size: 520px;
        --ei-ctw-image-size: 310px;
        --ei-ctw-inner-radius: 210px;
        --ei-ctw-outer-radius: 260px;
    }

    .ei-ctw-ring-inner .ei-ctw-char {
        font-size: clamp(36px, 12vw, 64px) !important;
    }

    .ei-ctw-ring-outer .ei-ctw-char {
        font-size: clamp(24px, 7vw, 42px) !important;
    }
}
