    .journal-grid{
        margin-top:20px;
        margin-bottom:20px;
    }

    .journal-grid [class*="col-"] { 
        margin-bottom: 20px;
    }

    .journal-grid .row {
        margin-left: -10px; 
        margin-right: -10px; 
    }

    .journal-grid [class*="col-"] {
        padding-left: 10px; 
        padding-right: 10px; 
        margin-bottom: 20px;
    }

    .journal-list{
        min-height: 720px !important;
    }    



    .category-card {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%; /* Ensure cards are same height within a row */
    }
    .card {
        border: 1px solid #034e87;
        box-shadow: 2px 1px 3px #85b8d7 !important;
        border-radius: 5px;
        transition: transform 0.2s, box-shadow 0.2s;
        height: 100%; /* Ensure card content fills the height */
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Distribute space vertically */
    }
    .card:hover {
        transform: translateY(-5px);
    }

    .card-body {
        padding: 10px;
        flex-grow: 1; /* Allow card body to expand */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically within body */
    }

    .card-img-top {
        width: 64px;
        height: 64px;
        object-fit: contain;
        margin: 15px auto 0px auto; /* Center image and add spacing */
        display: block;
    }
    
    .card-title {
        margin-top: 0 !important;
        margin: 5px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
        font-size: 20px !important;
        text-align:center;
        color:#0066b3;
    }
    .card-text {
        margin-top: 0 !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
        font-size: 16px !important;
        text-align:center;
        color: #555;
    }
