.post {

}

.post-hero {
    padding-top: 80px;
    min-height: 100vh;
    background-color: #0D0D0D;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    overflow: hidden;
}

.post-hero-content {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100%;
    padding-left: 70px;
    max-width: 650px;
    margin: 0 auto;
    row-gap: 40px;
}

.post-hero-top {
    align-self: center;
    justify-self: center;
    width: 100%;
}

.post-hero-excerpt {
    grid-row: 2;
    justify-self: center;
}

.post-hero-cat {
    margin-bottom: 40px;
}

.post-hero-title {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 60px;
    line-height: 90%;
    text-align: center;
    text-transform: uppercase;
    color: #F2EEE6;
    margin: 0;
}

.post-hero-excerpt p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    color: #F2EEE6;
    text-transform: uppercase;
    margin: 0 0 40px;
}

.post-hero-image {
    position: relative;
    height: 100%;
}

.post-hero-image img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

@media (max-width: 768px) {
    .post-hero {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 68px;
        gap: 0;
    }

    .post-hero-content {
        padding: 100px 20px 0;
        row-gap: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .post-hero-image {
        height: 430px;
        padding: 10px;
    }

    .post-hero-image img {
        position: relative;
    }
}