.slot-content .section + .section {
    border-top: solid 1px #29263D;
    margin-top: var(--spacing-m);
    padding-top: var(--spacing-m);
}

.tbl-zebra{
    display: flex;
    flex-direction: column;
    border: solid rgb(255 255 255 / 10%) 1px;
    border-bottom: 0;
    background: #35324F;
    border-radius: 12px;

    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF99;
}
.tbl-zebra .value{
    color: #fff;
    font-weight: 600;
}

.tbl-row{
    display: flex;
    padding: 10px 20px;
    gap: 10px;
    border-bottom: solid rgb(255 255 255 / 10%) 1px;
}
.tbl-row:nth-child(odd){
    background: #49456F;
}

.tbl-row > div{
    flex: 1;
    position: relative;
}

.tbl-zebra .value::before{
    content: '|';
    color:rgb(255 255 255 / 10%);
    position: absolute;
    left: -15px;
}



/* Neighbors */
.double-arrow{
    fill: none;
    stroke: #809FFF;
    width: 12px;
    min-width: 12px;
    height: 10px;
}

.neighbors-slot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.neighbor-slot.previous{
    display: grid;
    grid-template-columns: 12px auto;
    column-gap: 10px;
}
.neighbor-slot.previous .double-arrow{
    grid-row-start: 1;
    grid-row-end: 3;
    align-self: center;
}

.neighbors-slot .next{
    order: 1;
    display: grid;
    grid-template-columns: auto 12px ;
    column-gap: 10px;
    text-align: right;
}
.neighbor-slot.next .double-arrow{
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    align-self: center;
    transform: rotate(180deg);
}

a.neighbor-slot__link{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-secondary);
}
a.neighbor-slot__link:hover{
    text-decoration: none;
}

.neighbor-slot__note{
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color:  #B7B7C6;
    text-transform: uppercase;
}


@media (min-width: 768px) {
    .pros-cons-block{
        display: flex;
        gap: var(--gap);
    }
    .pros,.cons{
        flex: 1;
    }

    .tbl-zebra{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tbl-row{
        flex: 1 0 50%;
        position: relative;
    }
    .tbl-row:nth-child(odd){
        background: transparent;
    }
    .tbl-row:nth-child(4n),
    .tbl-row:nth-child(4n-1){
        background: #49456F;
    }

    .tbl-row:nth-child(2n)::before{
        content: '|';
        color:rgb(255 255 255 / 10%);
        position: absolute;
        left: 0;
    }
    .tbl-zebra .value::before{
        display: none;
    }
}