.category-blog {

    .hero-wrapper {
        display: flex;
        gap: 3rem 6rem;
        align-items: center;
        padding-block: 4rem 3rem;
        justify-content: space-between;
        flex-wrap: wrap-reverse;
    }

    .hero__inner {
        flex: 1 1 300px;
        min-width: 0;
    }

    .hero__img-wrapper {
        flex: 0 0 auto;
    }

    .hero__img-wrapper img {
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 2px;
        border: solid var(--color-white);
        border-width: 8px 8px 56px 8px;
        box-shadow: 5px 3px 3px var(--color-purple);
        transform: rotate(2deg);
        width: 100%;
        max-width: 300px;
        min-width: 0;
    }

    .hero__title h1 {
        font-weight: 700;
        line-height: 120%;
        color: var(--color-blue);
        margin-bottom: .5rem;
        font-size: var(--h1);
    }

    .hero__title {
        margin-bottom: 1rem;
    }

    h2 {
        font-size: var(--h2);
        color: var(--color-blue);
        margin-bottom: 2rem;
    }

    .post-card__body {
        padding: 20px 0;
    }

    .blog-posts {
        margin-block: 5rem;
    }

    .post-grid {
        margin-bottom: 3rem;
    }

    .post-card__body {
        padding: 20px 0 0 0;
    }
}