.blog{
    padding:3rem 0;
}
.entry-meta{
    display: flex;
    justify-content: space-between;
}
.blog .entry-content{
    border:1px solid #ccc;
    padding: 15px;
    border-radius:8px;
    /* margin-bottom:2rem; */
}
.entry-more .btn{
    background-color: #1d4b98;
    color:#fff;
}
.entry-more .btn:hover{
    background-color: #1d4b98;
    color:#fff;
}
.entry-img {
    /*border: 8px solid #1d4b98;*/
    overflow: hidden;
    position: relative;
    border-radius:8px;
    box-shadow: 8px 10px 4px 1px #ccc;
}
.entry-category{
    padding-top:10px;
}

.image{
    width: 100% !important;
}

.entry-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
    transform: scale(1); /* Default scale */
}

.entry-img:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
    filter: brightness(1.2); /* Optional: Brighten the image slightly */
}

.entry-title h4{
    font-weight: 700;
}

