.specular-blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.specular-blog-posts .specular-card-two {
   max-width: none;
}

.specular-blog-posts .post-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 40px;
    background-color: #F96A2A;
    padding: 5px 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.specular-blog-posts .post-date .day {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
}

.specular-blog-posts .post-date .month {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

/* Tablet screens */
@media screen and (max-width: 768px) {
    .specular-blog-posts {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .specular-blog-posts .post-date {
        width: 70px;
        height: 70px;
        right: 30px;
    }

    .specular-blog-posts .post-date .day {
        font-size: 30px;
        line-height: 30px;
    }

    .specular-blog-posts .post-date .month {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Mobile screens */
@media screen and (max-width: 480px) {
    .specular-blog-posts .post-date {
        width: 60px;
        height: 60px;
        right: 20px;
        padding: 3px 8px;
    }

    .specular-blog-posts .post-date .day {
        font-size: 24px;
        line-height: 24px;
    }

    .specular-blog-posts .post-date .month {
        font-size: 12px;
        line-height: 18px;
    }
}
