.blog_page_link a {
    align-items: center;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    font-family: "Fjalla One", sans-serif;
    font-size: 20.4px;
    font-weight: 400;
    line-height: 24.4833px;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    padding-bottom: 2.04px;
    padding-left: 2.04px;
    padding-right: 10.2px;
    padding-top: 2.04px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    transition-behavior: normal;
    transition-delay: 0s;
    transition-duration: 0.5s;
    transition-property: color;
    transition-timing-function: ease;
    z-index: 1;
    text-decoration: none;
}

.blog_page_title {
    box-sizing: border-box;
color: rgb(255, 255, 255);
display: block;
font-family: "Noto Sans", sans-serif;
font-size: 24.548px;
font-style: normal;
font-weight: 400;
letter-spacing: normal;
line-height: 34.3667px;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
text-transform: none;
}

.bloglist p {
    box-sizing: border-box;
color: rgb(255, 255, 255);
font-family: "Noto Sans", sans-serif;
font-size: 17px;
line-height: 30.6px;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
}

/** for zoom **/
/** only image 
.team-card {
    overflow: hidden;
}

.team-card img {
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}
**/
/* Blog Card Hover Effect */
.team-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden; /* important for image zoom */
    cursor: pointer;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Optional: Smooth image zoom inside card */
.team-card img {
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}
