    .journal-container {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 20px;
     }

     .journal-box {
       background: #ffffff;
       border-radius: 20px;
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
       max-width: 300px;
       padding: 20px;
       flex: 1 1 280px;
       display: flex;
       flex-direction: column;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

     .journal-box:hover {
       transform: scale(1.02);
       box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
     }

     .cover-img {
       width: 100%;
       height: auto;
       border-radius: 12px;
       border: 2px solid #dde3ea;
       margin-bottom: 15px;
     }

     .journal-title {
       font-size: 16px;
       font-weight: 600;
       color: #003366;
       margin-bottom: 10px;
       min-height: 45px;
     }

     .journal-info {
       font-size: 14px;
       color: #333;
       margin-bottom: 6px;
     }

     .journal-info a {
       color: #007acc;
       text-decoration: none;
     }

     .journal-info a:hover {
       text-decoration: underline;
     }

     .open-access {
       background-color: #fff3e0;
       color: #f57c00;
       border: 1px solid #f57c00;
       padding: 5px 10px;
       border-radius: 6px;
       font-weight: bold;
       font-size: 13px;
       display: inline-block;
       margin: 10px 0;
     }

     .buttons {
       display: flex;
       gap: 10px;
       flex-wrap: wrap;
       margin-top: 10px;
     }

     .button {
       background: linear-gradient(135deg, #00aaff, #007acc);
       color: white;
       border: none;
       border-radius: 8px;
       padding: 10px 14px;
       font-size: 13px;
       font-weight: bold;
       cursor: pointer;
       transition: background 0.3s ease;
       flex: 1;
       text-align: center;
     }

     .button:hover {
       background: linear-gradient(135deg, #007acc, #005fa3);
     }