/* Hero image credit styling */
.hero-image-credit {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.hero-image-credit:hover {
    opacity: 1;
}

.hero-image-credit a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

.hero-image-credit a:hover {
    border-bottom-color: white;
}

/* Ensure hero image container has relative positioning */
.article-hero-image {
    position: relative !important;
}