.cmp-item.p-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.cmp-p-item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 3;
}
.cmp-p-item-img {
    padding: 15px;
}
.cmp-p-item-wrap .vs {
    position: absolute;
    border-radius: 2px;
    left: calc(50% - 11px);
    top: calc(50% - 11px);
    background: var(--s-secondary);
    font-size: 10px;
    font-weight: 700;
    line-height: 10px;
    color: #fff;
    padding: 5px;
}

.cmp-p-item-wrap:after {
    content: "";
    width: 1px;
    height: 90%;
    background: var(--s-b-bg);
    position: absolute;
    left: 50%;
    z-index: -1;
    top: 5%;
}

.cmp-item-inner {
    padding: 15px  15px 0 15px;
}

.cmp-item-inner .actions {
    padding-bottom: 15px;
}

@media (max-width: 1279px) {
    .cmp-item.p-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 580px) {
    .cmp-item.p-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}