.linked-items {
    position: relative;
}
.linked-items .items {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.linked-items .items .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.item.bottom .text-box {
    margin-top: 80px;
}
.item.top .text-box {
    margin-bottom: 80px;
}

.linked-items .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--third-gray);
    padding: 10px;
    border: 3px solid var(--primary-blue);
    border-radius: 100%;
    z-index: 1;
}
.linked-items .circle img {
    width: 60px;
    height: 60px;
}

.linked-items .text-box {
    align-items: unset;
    max-width: 200px;
}
.linked-items .text-box .title {
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-blue);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.linked-items .text-box .text {
    font-size: 0.8rem;
    margin: 0;
}

.linked-items svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}