.news2 h2 {
    text-align: center;
}

.news2 .item {
    box-shadow: none;
    overflow: visible;
}

.news2 .item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    height: 100%;
    width: 1px;
    background-color: #CCC;
}

.news2 .item:nth-of-type(3n+3)::after,
.news2 .item:last-child::after {
    display: none;
}

.news2 .content {
    padding-bottom: 3.5rem;
    text-align: center;
}

.news2 .item .link {
    background-color: var(--color4);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.news2 .link::after {
    display: none;
}

.news2 .primary-link {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

@media (max-width: 767px) {

    .news2 .item {
        margin-bottom: 20px;
    }

    .news2 .item::after {
        display: none;
    }
}

@media (max-width: 1023px) {
    .news2 .item:nth-of-type(2n+2)::after {
        display: none;
    }

    .news2 .item:nth-of-type(3n+3)::after {
        display: block;
    }
}