@media (min-width: 769px) {
    .blog-grid > .post-card:first-child{
        grid-column: 1 / -1;
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items:center;
        padding: 0;
    }

    .blog-grid > .post-card:first-child .post-card__media{
        border-radius: 10px;
    }

    .blog-grid > .post-card:first-child .post-card__media img{
        aspect-ratio: 16/12;
    }

    .blog-grid > .post-card:first-child .post-card__body{
        justify-content: center;
    }

    .blog-grid > .post-card:first-child .post-card__title{
        font-size: 22px;
        margin-bottom: 8px;
    }

    .blog-grid > .post-card:first-child .post-card__excerpt{
        max-width: 520px;
        margin-bottom: 16px;
    }
    .blog-grid > .post-card:first-child  .btn-layout{
        background:var(--brand);
        border-color:var(--brand);
        color:#ffffff;
        box-shadow:0 12px 22px rgba(31,76,75,.28);
    }
    .blog-grid > .post-card:first-child  .btn-layout:hover {
        color:var(--brand);
        background:#fff;
        border-color:#fff;
    }

    @media (max-width: 991px){
        .blog-grid > .post-card:first-child{
            grid-template-columns: 1fr;
            gap: 18px;
        }
        .blog-grid > .post-card:first-child .post-card__body{
            padding-top: 2px;
        }
    }

}