.columns .column.main {
    width: 100%;
    float: unset;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.6rem !important;
}

.page-title {
    font-size: 1.8rem;
    margin: 3.6rem 0;
    text-transform: uppercase;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.page-title:after {
    content: "";
    display: block;
    background: url("../images/blog-rss.svg") no-repeat;
    width: 14px;
    height: 14px;
}

ol.post-list {
    list-style: none;
    margin: 0 0 4rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
ol.post-list .post-item {
    border: 1px solid rgba(128,128,128,.16);
    box-shadow: 0 1px 4px #8080801c;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}
ol.post-list .post-item .image-container {
    display: flex;
}
ol.post-list .post-item .image-wrap {
    height: 0;
    font-size: 0;
    padding-bottom: calc(400 / 800 * 100%);
    overflow: hidden;
}
ol.post-list .post-item .image-wrap img {
    transition: all 0.3s;
}
ol.post-list .post-item .image-wrap img:hover {
    transform: scale(1.05);
}
ol.post-list .post-item .post-title-wrap a {
    color: var(--body-text-color);
    text-decoration: none;
    font-size: 1.5rem;
}
ol.post-list .post-item .post-info {
    padding: 1.6rem;
}
.post-data-wrap {
    color: #949494;
}
.post-description {
    line-height: 1.6;
    letter-spacing: 0.05rem;
}
.post-description a {
    color: var(--a-text-hover);
}
.post-description a:hover {
    color: var(--primary-color-hover);
}
ol.post-list .post-item a.action.read {
    color: var(--a-text-hover);
    text-decoration: none;
}
ol.post-list .post-item .post-read-more {
    text-align: center;
}

/* pagination */
.pages .action.previous > span:last-child,
.pages .action.next > span:last-child {
    font-size: 1.5rem;
    position: unset;
    color: var(--a-text-hover);
}
.pages .action.next:before {
    content: unset;
}
.pages .action.previous:before,
.pages .action.previous:visited:before {
    color: var(--a-text-hover);
    font-size: 12px;
    font-weight: 700;
    padding-right: 6px;
}
.pages .action.next:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: inherit;
    color: var(--a-text-hover);
    content: '\e608';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: 700;
    overflow: hidden;
    speak: none;
    text-align: center;
    padding-left: 6px;
}
.pages .action {
    background: unset;
    border: unset;
    box-shadow: unset;
}
.pages .action:hover {
    background: unset;
}
.pages .action:hover:before,
.pages .action:hover:after,
.pages .action:hover > span:last-child {
    color: var(--primary-color) !important;
}
.pages a.page,
.pages a.page:visited {
    color: var(--a-text-hover);
    font-size: 1.6rem;
}
.pages a.page:hover,
.pages a.page:hover:visited {
    color: var(--primary-color);
}
.pages strong.page {
    background: unset;
    font-size: 1.6rem;
}
@media only screen and (max-width: 639px) {
    .pages .pages-items {
        white-space: nowrap;
    }
}
/* pagination end */
@media only screen and (min-width: 768px) {
    ol.post-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.6rem;
    }
    ol.post-list .post-item {
        width: calc((100% - 1.6rem) / 2);
    }
}
@media only screen and (min-width: 1024px) {
    ol.post-list {
        gap: 2rem;
    }
    ol.post-list .post-item {
        width: calc((100% - 2rem * 2) / 3)
    }
}


/* view */
.post-view-modern .post-holder {
    margin: auto;
    max-width: 800px;
}
.post-title h1 {
    font-size: 28px;
    line-height: 36px;
    margin: 3rem 0;
}
a.nextprev-link {
    font-size: 1.6rem;
    color: var(--body-text-color);
}
a.nextprev-link:hover {
    color: var(--a-text-hover);
}
.blog-post-view .post-nextprev .nextprev-link {
    font-size: 1.5rem;
    color: var(--body-text-color);
    opacity: unset;
    font-style: italic;
    font-weight: 400;
}
.blog-post-view .post-nextprev .nextprev-link:hover,
.blog-post-view .post-nextprev .nextprev-link span:hover {
    color: var(--primary-color);
}
.blog-post-view .post-nextprev .nextprev-link span {
    color: var(--a-text-hover);
    font-size: 1.6rem;
}
.c-reply textarea {
    border: 1px solid #dddddd;
    border-radius: 4px;
}
.c-reply input {
    border: 1px solid #dddddd;
    border-radius: 4px;
    height: 4rem;
}
.c-reply button {
    background-color: var(--primary-color);
}
.c-reply button:hover {
    background-color: var(--primary-color-hover);
}
/* view end */

