.post {
    padding: 3rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post#about {
    background-color: #cee2f2;
}
.post#privacy {
    background-color: #eff2f7;
}

.post__title {
    color: #04609a;
    margin-bottom: 2rem;
    font-family: 'Noto Serif Display', ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 4rem;
}
.post__body {
    font-size: 1rem;
    line-height: 1.75rem;
}
.post__body p,
.post__body ul,
.post__body h2 {
    margin-bottom: 1.25rem;
}
.post__body h2 {
    margin-top: 2.5rem;
    font-weight: bold;
}
.post__body ul {
    list-style-position: inside;
    list-style-type: disc;
}
.post__body li::marker {
    color: #04609a !important;
}

@media (min-width: 321px) {
    .post {
        padding: 3.5rem;
    }
}
@media (min-width: 768px) {
    .post {
        padding: 5rem;
    }
}
@media (min-width: 1024px) {
    .post {
        padding: 8rem;
        flex-direction: row;
    }
    .post__title {
        margin-top: -0.25rem;
        flex: 1 1 33.333%;
    }
    .post__body {
        flex: 1 1 66.777%;
    }
}
@media (min-width: 1536px) {
    .post__title {
        font-size: 3.5rem;
    }
}

.section_cols {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.75rem;
}

.section__col_img {
    position: relative;
    overflow: hidden;
    height: 18rem;
}

.section__col_txt {
    hyphens: auto;
}

.section__col_img img {
    object-fit: cover;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.section__col_txt > div {
    padding: 3rem;
}

.section_cols--left .section__col_img {
    order: 1;
}

.section_cols--left .section__col_txt {
    order: 2;
}



.section-title {
    color: #04609a;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 20px;
    line-height: 2.25rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-right: -1.5rem;
}
.section-txt,
.section-links,
.section-list {
    font-size: 1rem;
    line-height: 1.75rem;
}

.section-links,
.section-list {
    margin-top: 1.5rem;
}
.section-links a {
    text-decoration: underline;
}
.section-links a::before {
    content: '↳';
    display: inline-block;
    padding-right: 0.5rem;
    position: relative;
    top: 0.125rem;
}
.section-links a:hover {
    color: #04609a;
}
.section-list {
    margin-top: 1.5rem;
    list-style-position: inside;
    list-style-type: disc;
}
.section-list::marker {
    color: #04609a;
}

@media (min-width: 321px) {
    .section__col_txt > div {
        padding: 3.5rem;
    }

    .section-title {
        font-size: 21px;
        letter-spacing: 0.4em;
    }
}

@media (min-width: 768px) {
    .section__col_img {
        height: 32rem;
    }

    .section__col_txt > div {
        padding: 5rem;
    }
}

@media (min-width: 1024px) {
    .section_cols {
        flex-direction: row;
        align-items: stretch;
        min-height: 640px;
    }

    .section__col_img {
        height: auto;
        flex: 1 1 50%;
    }

    .section__col_txt {
        flex-grow: 0;
        width: 50%;
    }

    .section__col_img img {
        position: absolute;
        inset: 0;
    }

    .section_cols--left .section__col_img {
        order: 2;
    }

    .section_cols--left .section__col_txt {
        order: 1;
    }
}

@media (min-width: 1280px) {
    .section__col_img {
        flex: 2 1 66.666667%;
    }

    .section__col_txt {
        width: 33.333333%;
    }
}