.journal-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden; 
    transition: box-shadow 0.3s ease-in-out;
}

.journal-card:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.journal-card h5 {
    color: #0040C1;
}

.journal-card img {
    width: 200px;
    height: auto;
    max-width: 200px;
    border-radius: 5px;
    display: block;
    flex-shrink: 0; 
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
}

@keyframes hoverEffect {
    0% { transform: scale(1) translateX(1); }
    100% { transform: scale(1.1) translateX(8px); }
}

.journal-card:hover img {
    animation: transform 0.3s forwards;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.open-access {
    color: #f74639;
    font-weight: bold;
}

.links a {
    /* text-decoration: none; */
    color:#18121C;
    font-weight: 500;
    margin-right: 10px;
}
.links a:hover {
   
    color: #f74639;
   
}


/* journal details */
.journal-cards {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden; 
    transition: box-shadow 0.3s ease-in-out;
}



.journal-cards h5 {
    color: #0040C1;
}

.journal-cards img {
    width: 500px; 
    height: 250px; 
    max-width: 500px;
    border-radius: 5px;
    display: block;
    flex-shrink: 0; 
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
}







   








