.column-title {
    display: flex;
    width: 240px;
    margin: 3em auto;
    justify-content: flex-start;
    align-items: end;
}

.column-title h2 {
    line-height: 1;
    font-weight: normal;
}

/* Category page */
.column-title .post-categories {
    border: .5px solid #707070;
    padding: 0 4px;
    font-size: 14px;
    color: #000;
    background: #fff;
    margin-top: 10px;
    margin-left: 10px;
}

/* mobile */
@media (max-width: 767px) {
    .column-title {
        flex-direction: row;
        align-items: center;
        gap: 0;
        justify-content: center;
        margin: 10px auto 15px;
    }

    .column-title .post-categories {
        border: .5px solid #707070;
        padding: 0 4px;
        font-size: 11px;
        color: #000;
        background: #fff;
        margin-top: 6px;
    }

    .breadcrumb {
        position: absolute;
        top: 60px;
        left: 20px;
        margin: 0;
    }

    .column-title h2 {
        text-align: center;
        font-size: 18px;
    }

    .post-wrap {
        padding: 10px 20px;
    }

    .list-wrapper,
    .post-wrapper {
        padding: 20px;
    }
}
