/* Publication Badge Styles */

.publication-image-container {
    position: relative;
    overflow: hidden;
}

.publication-image-container img {
    transition: filter 0.3s ease;
}

.publication-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.publication-badge img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.custom-card .publication-badge {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100%;
    position: unset;
}
.custom-card .publication-badge {
    mix-blend-mode: darken;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .publication-badge img {
        max-height: 70px;
    }
}
