.page_container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px
}

.post_content {
    box-shadow: 0 0 7.28px .72px rgba(130, 130, 130, .28);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    font-weight: 400;
    line-height: 1.5em
}

.post_content h1 {
    line-height: 1.3em;
}

.post_content img{
    width: 100%;
}

.post_content p {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}

.post_content h3 {
    margin-top: 10px;
    display: inline-block
}

.post_content ul {
    padding-left: 30px
}

.post_content__image img {
    width: 100%
}

.post_content h1 {
    text-align: center
}

.aligncenter {
    margin: auto
}

.aks_properties_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-end: span 2;
    margin-top: 20px
}

.previous_post,
.next_post {
    display: flex;
    align-items: center;
    gap: 20px
}

.next_post {
    justify-content: flex-end
}

.previous_post i,
.next_post i {
    font-size: 2rem;
    color: #15616d
}

.previous_post__text,
.next_post__text {
    display: flex;
    flex-direction: column
}

.previous_post__text span:first-child,
.next_post__text span:first-child {
    font-weight: 700;
    font-size: 1.2rem;
    color: #15616d
}

.previous_post__text span:nth-child(2),
.next_post__text span:nth-child(2) {
    color: #000
}

.next_post__text {
    align-items: flex-end
}

@media screen and (max-width: 860px) {
    .page_container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .footer {
        grid-column-end: span 1;
    }

    .aks_prop_card {
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .aks_prop_card__image {
        background-position: center top !important;
    }
}

@media screen and (max-width: 768px) {
    .post_content h1 {
        font-size: 1.5rem;
    }
}


@media screen and (max-width: 375px) {
    .post_content h1 {
        font-size: 1.2rem;
    }
}
