.section-post .section-heading {
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.section-wrapper {
    display: flex;
    align-items: stretch;
    gap: 90px;
}

.section-wrapper > div {
    flex: 1 1 0;
}

.logged-in .section-wrapper .section-aside {
    top: 142px;
}

.section-wrapper .section-aside {
    width: 100%;
    max-width: 425px;
    position: sticky;
    top: 110px;
    height: 100%;
    margin-top: 10px;
}

.section-wrapper .aside-title {
    font-size: 26px;
    font-weight: 400;
    margin: 0;
    padding: 0 0 15px 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-gallery .section-heading {
    border-bottom: 0;
    padding-top: 0;
    padding-bottom: 30px;
    margin-bottom: 0;
}

.section-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
}

.section-images div {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .75s linear;
    transition: all .75s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.section-images div:hover img  {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}

@media (max-width: 1280px) {
    .section-wrapper {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .section-wrapper {
        flex-direction: column;
    }

    .section-wrapper .section-aside {
        max-width: 100%;
    }

    .section-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .posts-tiles {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .section-post .section-heading {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .section-images {
        gap: 10px;
    }

}