.main-post {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4.5rem;
}

.post-title {
    display: inline-block;
    position: relative;
    text-transform: none;
    font-size: 5vw;
    line-height: 1.3;
    z-index: 1;
    backdrop-filter: blur(50px);
    backface-visibility: hidden;
    -webkit-backdrop-filter: blur(50px);
    -webkit-backface-visibility: hidden;
    padding: 0.25rem 1.5rem 0.25rem 0;
    margin-bottom: 1rem;
}

.post {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 4.5rem;
}

.post .post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post .post-title {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0;
    flex: 1;
}

.post-category {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.post .post-category {
    margin-top: 1rem;
    margin-bottom: 0;
}

.post-link,
.post-category-link {
    text-decoration: none;
    color: #121212;
}

.post .post-category-link {
    background: none;
    border: 1px solid #121212;
    color: #121212;
}

.post-category-link {
    display: inline-block;
    padding: 0.125rem 0.75rem;
    border-radius: 15rem;
    color: #fff;
    background-color: #121212;
    -webkit-font-smoothing: auto;
}

.post-meta {
    display: inline-flex;
    align-items: center;
}

.post-meta svg {
    margin-right: 0.5rem;
}

.post-date {
    font-size: 0.875rem;
    text-transform: none;
}

.post-details {
    order: 2;
}

.post-thumbnail {
    order: 1;
    transition: opacity 0.3s ease-in-out, transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-link:hover .post-thumbnail {
    transform: scale(1.05);
}

.post-thumbnail-holder {
    margin-bottom: 1.5rem;
}

h2.wp-block-heading {
    font-size: 1.5rem;
}

h3.wp-block-heading {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .post-title {
        font-size: 3.5vw;
    }
}

@media (min-width: 1280px) {
    .main-post {
        min-height: 420px;
    }

    .post-thumbnail-holder {
        position: absolute;
        width: 58%;
        top: 50%;
        right: 0;
        margin-top: 0;
        transform: translateY(-50%);
    }

    .main-post .post-category {
        margin-bottom: 2rem;
    }

    .post-meta {
        margin-top: 1rem;
    }

    .post-title {
        font-size: 2.5vw;
        max-width: 40vw;
    }

    .post-excerpt {
        max-width: 40%;
    }

    .post .post-title {
        font-size: 1.25rem;
    }

    .post-content .col-lg-3 {
        width: 20%;
    }

    .post-content .col-lg-6 {
        width: 60%;
    }

    h2.wp-block-heading {
        font-size: 2rem;
    }

    h3.wp-block-heading {
        font-size: 1.75rem;
    }
}