header {
    display: flex;
    align-items: center;
    gap: 56px;
}

.posts-section {
    background: #3E3838;
    min-height: 100vh;
}

.posts-container {
    max-width: 550px;
    margin-inline: auto;
    padding: 20px 20px 170px;
}

.post {
    margin-top: 120px;
}

.post img {
    width: 100%;
}

.post-date {
    padding: 18px 0 0;
    color: #AAA;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.post-title {
    padding-top: 18px;
    color: #FFF;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.post .read {
    color: #333;
    font-family: Playfair Display;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 40px;
    margin-top: 22px;
    border-radius: 10px;
    border: none;
    background-color: #FFF;
    display: inline-block;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}

.post .read:hover {
    opacity: .8;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 30px;
    }
}

/* Post Page */

.post-container {
    max-width: 550px;
    padding: 20px;
    margin: 90px auto 120px;
    min-height: 100vh;
    color: #333;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8rem;
}

.post-container h1 {
    color: #333;
    font-family: Playfair Display;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.post-container img {
    width: 100%;
    height: 100%;
    margin: 60px 0;
    box-shadow: 20px 20px 0px #E3D6D6;
}

.post-container .separator a {
    margin: 0 !important;
    pointer-events: none;
}

.post-container h2,
.post-container h3 {
    color: #333;
    font-family: Playfair Display;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 20px;
}

.post-container p {
    color: #333;
    font-family: Arial;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8rem;
    padding-bottom: 30px;
    background-color: transparent !important;
}

.post-container li,
.post-container li span {
    font-size: 18px !important;
    background-color: transparent !important;
}

.post-container li {
    margin-left: 20px;
}

.post-container a {
    color: rgb(53, 89, 210);
}

.post-bottom {
    border-top: 1px solid #333;
}

.post-bottom img {
    width: 132px;
    margin: 30px 0 0;
    box-shadow: none;
}

.post-bottom p {
    font-size: 16px;
    color: #6a6a6a;
}

@media (max-width: 600px) {

    .post-container {
        margin: 40px auto 60px;
    }

    .post-container h1 {
        font-size: 24px;
    }

    .post-container img {
        margin: 30px 0;
        box-shadow: 10px 10px 0px #E3D6D6;
    }


    .post-bottom img {
        width: 132px;
        margin: 15px 0 0;
        box-shadow: none;
    }

    .post-bottom p {
        font-size: 16px !important;

    }
}