.blogs-holder {
    position: relative;
    width: 100%;
    margin: 0 auto;

    .blog {
        padding: 10px 40px;
        display: block;
        position: relative;
        background-color: white;
        width: 50%;
        top: -17%;
        line-height: 2.0rem;

        img {
            width: 100%;
        }

        .title {
            font-weight: 500;
        }

        .date {
            position: absolute;
        }

        a {
            color: var(--color-accent);
            text-decoration: none;
            line-height: 2.5rem;
        }
    }

    .blog > .date {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--color-accent);
        right: -10px;
        z-index: 1;
    }

    .blog:nth-of-type(odd) {
        left: 0;
    }

    .blog:nth-of-type(even) {
        left: 50%;
    }

    .blog:first-of-type {
        margin-top: 0;
    }

    .blog:nth-of-type(even) > .date {
        left: -10px;
    }
}

.blogs-holder::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--color-accent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

@media screen and (max-width: 600px) {
    .blogs-holder {

        .blog {
            width: 100%;
            margin-top: 0;
        }

        .blog:nth-of-type(odd) > .date, .blog:nth-of-type(even) > .date {
            left: -10px;
        }

        .blog:nth-of-type(even) {
            left: 0;
        }
    }

    .blogs-holder::after {
        left: 0;
    }
}

.ql-editor {
    padding: 0;
}