/* Detail page cover image - same treatment as publication details (3/4 ratio, rounded, shadow) */
.detail-cover-image-container {
    position: relative;
    text-align: center;
}

.detail-cover-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-cover-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}
