.circle-section {
    --circle: 32vw;
    --dots:   calc(var(--circle) / 2);
    --top:    calc( var(--headerHeight) + (var(--circlePadd) / 2) );
    --circlePadd:200px;
    --color:var(--wp--preset--color--contrast);
    --circleRadius:50%;
    --dot:6px;
    --top: calc(var(--headerHeight) * 1.5);
}

.circle-grid {
    display: flex;
    align-items: start;
    gap:var(--wp--preset--spacing--m-xxl);
}


.circle-right { 
    display: grid;
    gap:10px;
    flex:1;
 }


.dot,
.circle,
.dots-list-row,
.dots-list-row::before {
    border-radius: var(--circleRadius);
}
.circle {
  width:  var(--circle);
  height: var(--circle);
  background: transparent;
  color: #fff;
  position: relative;
  border: 1px dashed var(--color);
 }

.circle,
.circle-left,
.circle-data  { 
    position: sticky;
    top: var(--top);
}
 
.circle-data  {
    min-height: calc(var(--circle));
    box-shadow: var(--shadow-4);
    border-radius: var(--cardRadius);
    overflow: clip;
}

.circle-data img { 
    display:block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.circle-data-text {
    padding: var(--wp--preset--spacing--m-xl);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-data-text > *:not(img) {
    position: relative;
    z-index: 2;
}

.circle-data-text h4,
.circle-data-text p  { color:white }
.circle-data-text h4 {
    margin-bottom: var(--wp--preset--spacing--xs);
    font-size:var(--wp--preset--font-size--h-3);
}

.circle-data-text img { 
    position: absolute;
    inset: 0;
    filter: brightness(.45) saturate(1.2); 
}
 
.circle-inner {
    position: absolute;
    inset:0;
    display: grid;
    align-items: center;
    z-index: 2;
    padding: var(--wp--preset--spacing--m-xl);
}

.circle-inner div {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 350ms ease;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap:var(--wp--preset--spacing--s);
}

.circle-inner div.active {
     opacity: 1;
     transform: translateY(0px);
}

.dots-list-row,
.dots-list-row::before {
    position: absolute;
    top:  50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dots-list-row {
    --circle:calc(100% + 2px);
    --p:0%;
    height: var(--circle);
    width:  var(--circle);
    background: conic-gradient(var(--color) var(--p, 0), 0, transparent);
}
 

.dots-list-row::before {
    content:'';
    display: block;
    height: calc(100% - 4px);
    width:  calc(100% - 4px);
    background-color: rgb(255 255 255 /1);
}
 
.dot {
    position: absolute;
    top:  50%;
    left: 50%;

    width:  var(--dot);
    height: var(--dot);

    background: var(--color);
    box-shadow: 0 0 0 6px transparent;
    transition: background 0.3s ease;
}

.dot.active {
  --dot:8px;
  --box: color-mix(in srgb, var(--color) 25%, transparent);
  box-shadow: 0 0 0 6px var(--box);
}

@media only screen and (max-width:768px) {
    .circle-grid {
        flex-direction: column;
        align-items: center;
    }
    .circle-section {
        --circle: 38vh;
        --top: calc(var(--headerHeight) * 1.5);
    }

    .circle-data  {
/*        max-height: calc(var(--circle) - var(--top));*/
        min-height: auto;
        --top: calc( (var(--headerHeight) * 2) + var(--circle) );
    }

}

@media only screen and (max-width:520px) {
    .circle-grid {
        flex-direction: column;
        align-items: center;
    }
    .circle-section {
        --circle: 42vh;
        --top: calc(var(--headerHeight));
    }
    .circle-data  {
        height: var(--circle);
        max-height: 300px;
        --top: calc( (var(--headerHeight) * 1.25) + var(--circle) );
    }
    
    .circle-data-text h4 { font-size:var(--wp--preset--font-size--h-4); font-weight:500 }
    .circle-data-text p  { font-size:var(--wp--preset--font-size--s); }

}


.is-style-expertise,
.is-style-expertise span,
.is-style-expertise figure,
.is-style-expertise svg {
     transition: all 350ms ease;
}

.is-style-expertise {
    --size:280px;
/*    border:4px solid red;*/
   
}

.is-style-expertise:hover span {
    background: var(--wp--preset--color--lightgrey)!important;
}

.is-style-expertise figure {
    border-radius: 12px;
    overflow: clip;
    border:1px solid var(--wp--preset--color--contrast);
    box-shadow: var(--shadow-5);
    position: absolute;
    width:  var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    top:50%;
    transform: translateY(-40%) rotate(0deg);
    opacity: 0;
    visibility: hidden;
}

.is-style-expertise figure img {
/*    border:2px solid black;*/
    object-fit: contain;
    object-position: center;
}

.is-style-expertise:hover figure {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) rotate(5deg);
}

.is-style-expertise svg {
        transform: rotate(-45deg);
}

.is-style-expertise:hover svg {
    transform: rotate(0);
}

 