/* University / units and departments */
.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}

.publication {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.pub-img {
    max-width: 190px;
    border-radius: 15px;
    box-shadow: 2px 2px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pub-img:hover {
    transform: scale(1.013);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.213);
}
.pub-title {
    color: var(--primary);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 600;
}

.pub-date {
    color: var(--light-text);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.pub-download-btn {
    background-color: var(--primary);
    color: var(--light);
    border-radius: 20px;
    padding: 0.5rem 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pub-download-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

@media (max-width: 455px){
    .pub-img {
        max-width: 140px;
    }
    .pub-download-btn {
        padding: 0.3rem 25px;
    }
}
