.img-circle {
    position: relative;
}

.img-circle::after {
    position: absolute;
    content: '';
    inset: -10px;
    width: calc(100% + 20px);
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    border: solid 20px rgba(255, 255, 255, 0.6);
}

.img-circle img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
}