.blog-post {
    min-height: 70vh;
    display: flex;
    position: relative;
    padding: 4rem;

    @media only screen and (max-width: 1200px) {
        padding: 0 0 5vh;
        margin-top: 1rem;
        flex-direction: column;
    }
}

.blog-post-white-block {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.7rem;
    height: 50vh;
    align-self: center;
    display: flex;
    width: 70vw;

    @media only screen and (max-width: 1200px) {
        height: 75%;
        margin-right: 8%;
        border-radius: 0 0.7rem 0.7rem 0;
        padding-bottom: 7.5vh;
        align-self: flex-start;
        width: 95vw;
    }
}

.blog-post-text-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-self: center;
    gap: 2rem;
    margin-left: 2rem;

    @media only screen and (max-width: 1200px) {
        width: 100%;
        margin-left: 0;
        gap: 1rem;
    }
}

.blog-post-title {
    color: var(--main-text-color);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;

    @media only screen and (max-width: 1200px) {
        font-size: 1.5rem;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1500px) {
        font-size: 2rem;
    }
}

.blog-post-description {
    color: var(--secondary-text-color);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    @media only screen and (min-width: 1201px) and (max-width: 1500px) {
        font-size: 0.9rem;
    }
}

.blog-post-photo {
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 5%;
    border-radius: 1.25rem;
    border: 2px solid #000;
    height: 70vh;
    display: flex;
    width: 45%;
    justify-content: center;

    @media only screen and (max-width: 1200px) {
        position: static;
        border: 0;
        border-radius: 0;
        border-bottom: black solid 1px;
        width: 100vw;
        height: 40vh;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1600px) {
        right: 3%;
        width: 45%;
    }
}

.blog-post-orange-block {
    position: absolute;
    right: 4%;
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 0.7rem;
    height: 50vh;
    align-self: center;
    display: flex;
    width: 10vw;
    z-index: -10;

    @media only screen and (max-width: 1200px) {
        display: none;
    }
}

.reversed {
    transform: rotate(-180deg);
}

.blog-post-timestamp {
    color: #FF4C00;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.blog-post-body {
    margin: 5vh auto 20vh;
    color: #4A4A4A;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 50vw;

    @media only screen and (max-width: 1200px) {
        margin: 0 auto 5vh;
        width: 90vw;
    }

    @media only screen and (min-width: 1201px) and (max-width: 1500px) {
        font-size: 0.9rem;
    }
}

.blog-post-body h1 {
    color: #000;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    @media only screen and (max-width: 1200px) {
        font-size: 1.5rem;
    }
}

.blog-post-body h2 {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    @media only screen and (max-width: 1200px) {
        font-size: 1rem;
    }
}

.blog-post-body p,li {
    color: #4A4A4A;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;

    @media only screen and (max-width: 1200px) {
        font-size: 0.8rem;
    }
}

.blog-post-body img {
    border-radius: 8px;
    border: 1px solid #000;
    object-fit: cover;
    width: 48vw;

    @media only screen and (max-width: 1200px) {
        width: 90vw;
    }
}

.blog-post-body figcaption {
    color: #909090;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: 0.7px;
    text-align: center;

    @media only screen and (max-width: 1200px) {
        font-size: 0.6rem;
    }
}

.blog-post-body ul, ol {
    margin-left: 2rem;
}