    .journal-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }
    .journal-card {
        text-align: center;
        max-width: 150px;
        background: #fff;
        padding: 5px;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    .journal-card:hover {
        transform: translateY(-5px);
    }
    .journal-card img {
        width: 120px;
        height: auto;
        border-radius: 6px;
        border: 2px solid #2f6b2f;
    }
    .journal-title {
        font-weight: bold;
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.3em;
    }
    .journal-title a {
        color: #2f6b2f;
        text-decoration: none;
    }
    .journal-title a:hover {
        text-decoration: underline;
    }