.bodynav {
    margin-bottom: 1rem;
}

.blog {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    min-height: 800px;
    margin-bottom: 3rem;
}

.blog .banner {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
}

.blog .post {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1rem;
}

.blog .post .left,
.blog .post .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box; /* Adjust box-sizing */
}

.blog .post .left {
    width: 200px;
}

.blog .post .right {
    flex: 1;
}

.blog .post .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--brighter75);
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box; /* Adjust box-sizing */
}

.blog .post .left .imgcont,
.blog .post .left .imgcont img {
    border-radius: 50%;
}

.blog .post .left .imgcont {
    width: 150px;
    height: 150px;
}

.blog h1:not(.parsedown h1) {
    color: var(--brighter5);
    width: 100%;
    text-align: center;
    margin: 0 !important;
}

.blog .post .row {
    font-size: 12px;
    gap: 1rem;
    color: var(--brighter35);
}

.blog .post .content .body {
    width: 100%;
}

.blog .post .parsedown {
    color: var(--brighter12) !important;
}

.blog .post hr {
    width: 100% !important;
}

.blog .attachments {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blog .attachments a {
    font-size: 15px;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.blog .attachments a strong {
    flex: 1;
}

/* dynamics for mobile */

@media only screen and (max-width: 800px) {
    .blog .post {
        flex-direction: column-reverse;
    }

    .blog .post .left,
    .blog .post .right {
        max-width: unset;
        width: 100%;
        height: unset !important;
    }
}