.seoc-posts {
    display: flex;
    flex-wrap: wrap;
}
.seoc-posts div {
    width: 25%;
    border-right: 3px solid #272525;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
}
.seoc-posts div:last-child {
    /*border: none;*/
}
.seoc-posts h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}
.seoc-posts h3 a {
    color: #272525;
}
.seoc-posts h3 a:hover, .seoc-posts h3 a:focus {
    text-decoration: underline;
}
.seoc-posts p {
    margin: 0;
}
.seoc-posts p.posts-more {
    margin-top: auto;
    padding-top: 10px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.seoc-posts p.posts-more a {
    color: #272525;
    display: inline-block;
}
.seoc-posts p.posts-more a::after {
    content: '';
    display: block;
    height: 3px;
    background-color: #272525;
}
.seoc-posts p.posts-more a:hover::after {
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 1024px) {
    .seoc-posts {
        position: relative;
    }
    .seoc-posts::after {
        content: '';
        position: absolute;
        width: 3px;
        top: 0;
        left: 50%;
        bottom: 38px;
        background-color: #272525;
        transform: translateX(-50%);
    }
    .seoc-posts div {
        width: 50%;
        border: none;
        margin-bottom: 40px;
    }
    .seoc-posts div:nth-child(odd) {
        padding: 0 25px 0 0;
    }
    .seoc-posts div:nth-child(even) {
        padding: 0 0 0 25px;
    }
}
@media (max-width: 768px) {
    .seoc-posts::after {
        display: none;
    }
    .seoc-posts div {
        width: 100%;
        border-bottom: 3px solid #272525;
        padding-bottom: 20px !important;
        margin: 0 0 30px;
    }
    .seoc-posts div:nth-child(odd) {
        padding-right: 0;
    }
    .seoc-posts div:nth-child(even) {
        padding-left: 0;
    }
}