.editor-container {
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .editor-card {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: transform 0.3s ease-in-out;
    }

    .editor-card:hover {
        transform: scale(1.01);
    }

    .editor-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .editor-info {
        text-align: left;
        flex-grow: 1;
        padding: 0;
        margin: 0;
    }

    .editor-info h5 {
        font-size: 18px;
        margin: 0 0 5px;
        color: #333;
    }

    .editor-info p {
        margin: 3px 0;
        font-size: 14px;
        color: #555;
    }

    .editor-links {
        margin-top: 6px;
    }

    @media (max-width: 768px) {
        .editor-card {
            flex-direction: column;
            text-align: center;
        }

        .editor-img {
            margin: 0 0 10px 0;
        }

        .editor-info {
            text-align: center;
        }
    }
	.scroll-box {
    height: 200px;
    overflow: hidden;
    position: relative;
   
    padding: 0 0px;
}

.scrolling-content {
    animation: scrollUp 180s linear infinite;
    animation-delay: 2s;
    margin: 0;
    padding: 0 0 0 20px; /* add left padding for bullets */
}

.scrolling-content li {
    position: relative;
    padding-left: 11px;
    font-size: 13px;
    margin-bottom: 15px;
    
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

 
.scrolling-content li a {
    text-decoration: none;
    color: #000;
}
.scrolling-content li a img{ width:40px; float:left; margin-right:10px; margin-bottom:10px; }
.scrolling-content li a span{ font-weight:300; }

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Optional: Pause on hover */
.scroll-box:hover .scrolling-content {
    animation-play-state: paused;
}
.journals-menu {    
    margin: 20px 0;
    padding: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.journals-menu h3 {
    margin: 0;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #1e3c72;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5a8a 100%);
    color: #fff;
    border-bottom: 2px solid #1a6091;
}   