/* University / units and departments */
.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}


.journal-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    margin-bottom: 1.5rem;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.journal-header {
    background: linear-gradient(135deg, var(--primary), #004080);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.journal-title {
    min-height: 3.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.journal-issn {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
/* .journal-issn i{
    color: var(--accent);
}
    */
.journal-body {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    /* margin-bottom: 2rem; */
}

.journal-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.journal-btn {
    margin-top: auto;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.journal-btn:hover {
    background: #001f3d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 45, 88, 0.2);
}

.journal-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #f8f9fa;
    font-size: 0.9rem;
}

/* .journal-location i {
    color: var(--accent);

} */

.journal-badge {
    background: var(--secondary);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Alternative color scheme for variety */
.journal-card:nth-child(even) .journal-header {
    background: linear-gradient(135deg, var(--secondary), #1a6459);
}

.journal-card:nth-child(even) .journal-btn {
    background: var(--secondary);
}

.journal-card:nth-child(even) .journal-btn:hover {
    background: #0e3a33;
}

@media (max-width: 768px) {
    
    .journal-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    
    .journal-header {
        padding: 1.25rem;
    }
    
    .journal-body {
        padding: 1.25rem;
    }
}
.main-content-body .container{
    padding: 0;
}


/* for sharepoint */
.page-content{
    padding: 0 0.7rem;
}

@media (max-width: 576px) {
    .page-content{
        padding: 0;
    }
}