
.blog-posts article {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #b8b8b8;
    padding: 30px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.blog-posts .post-img {
    max-height: 240px;
    margin: -30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.blog-posts .post-img img {
    display: block;
    width: 100%;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-top: 10px;
}

.blog-posts .title {
    font-size: 20px;
    font-weight: 500;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts .title a {
    color: rgb(1,10,141);
    transition: 0.3s;
    text-decoration: none;
}

.blog-posts .title a:hover {
    color: rgb(8, 21, 202);
}

.blog-posts .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-posts .meta-top ul li+li {
    padding-left: 20px;
}

.blog-posts .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, #212529, transparent 40%);
}

.blog-posts .meta-top a {
    color: color-mix(in srgb, #212529, transparent 40%);
    font-size: 15px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

.post-button {
    display: block;
    text-align: center;
    font-family: "Poppins";
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
    background-color: rgb(1,10,141);
    padding: 10px 10px 10px 10px;
}

.post-button:hover {
    color: white;
    background-color: rgb(5, 19, 214);
}