.JournalCardWrapper {
    margin-bottom: 30px;
    width: 100%;
}

.JournalCard {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    align-items: flex-start;
    width: 100%;

}

.JournalCard_cover img {
    width: 160px;
    height: auto;
    border-radius: 5px;
}

.JournalCard_info {
    flex: 1;
    margin-top: 10px;
}

.JournalCard_title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;

}

.JournalCard_openAccess img {
    width: 18px;
    margin-left: 25px;
}


.JournalCard_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #333;
    width: 100%;
}



.metaItem + .metaItem {
    border-left: 1px solid #ccc;
}

.JournalCard_archive {
    margin-top: 10px;
}



.JournalCard_archive a {
    display: inline-block;
    padding: 10px 16px;
    background: #0a2440;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.JournalCard_archive a:hover {
    background: #0056b3;
}
.JournalCard {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.JournalCard_top {
    display: flex; /* left + right */
    background: #fff;

    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    width: 100%;
    padding-bottom: 8px;
    gap: 20px;
}

.JournalCard_cover img {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.JournalCard_info {
    flex: 1;
}
.JournalCard_volumes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.JournalCard_volumeLink {
    text-decoration: none;
    display: block;
}
.JournalCard.JournalCard--withInfo {
    padding: 15px !important;
}
.JournalCard_volumeBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 28px !important;
    border: 1.5px solid #E5E5E5;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    color: #555;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
}

.volumeText {
    display: inline-block;
    line-height: 1;
}

.arrowIcon {
    display: none;
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    color: green;
}

.JournalCard_volumeBtn:hover .arrowIcon {
    display: inline-block;
    color: green;
}
.JournalCard_volumeLink:hover .JournalCard_volumeBtn {
    border-color: green;
}

.JournalCard_volumeLink:hover span.volumeYear,
.JournalCard_volumeLink:hover strong.volumeName
 {
    color: green !important;
}
span.JournalCard_volumeBtn {
    font-size: 11px;
    font-weight: normal;
}
.JournalCard_volumeBtn .arrow {
    opacity: 0;

    transition: all 0.3s ease;
    color: #009b4d;
}

.JournalCard_volumeBtn:hover {
    border-color: #009b4d;
    color: #009b4d;
}

.JournalCard_volumeBtn:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}
.footerSection.archiveLink {
    transition: background-color 0.3s ease;
}

.footerSection:first-child {
    border-left: 1px solid gray;
}
.footerSection.archiveLink:hover {
    background-color: green;
}
.JournalFooter {
    display: flex;
    border-top: 1px solid #ccc;
    background-color: red;
    font-size: 14px;
    font-weight: 400;
    color: #333;

    overflow: hidden;
}

.footerSection {
    flex: 1;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border-right: 1px solid gray;
    background-color: #E5E5E5;
}

.footerSection strong {
    margin-right: 6px;
    font-weight: 600;
}

.footerSection:last-child {
    border-right: none;
}
.archiveLink {
    justify-content: flex-end;
    background-color: #0c2d52;
}

.archiveLink a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: center;
}


.footerLabel {
    color: #000;
    font-weight: bold;
    margin-right: 4px;
}

.footerValue {
    color: #282828;
    font-weight: 100;
}
@media screen and (max-width: 768px) {
    .JournalCard_top {
        flex-direction: column;
        align-items: center;
    }

    .JournalCard_cover {
        flex: none;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .JournalCard_info {
        width: 100%;
        text-align: center;
    }

    .JournalCard_title {
        justify-content: center;
        font-size: 1.2rem;
    }

    .JournalCard_volumes {
        justify-content: center;
        gap: 8px;
        margin-top: 15px !important;
    }

    .JournalCard_volumeBtn {
        font-size: 0.95rem;
        padding: 6px 10px;
        width: 100%;
        justify-content: space-between;
    }

    .arrowIcon {
        width: 14px;
        height: 14px;
    }

    .JournalFooter {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px ;
    }

    .footerSection {
        width: 100%;
        border-right: none;
    }
    .footerSection:first-child {
        border-left: none;
    }
    div {
        margin-top: 0 !important;
    }

}
/*span.volumeYear {*/
/*    color: gray;*/
/*}*/
/*strong.volumeName {*/
/*    color: grey;*/
/*}*/
