/* Copyright Label for Gallery Items */
.copyright-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
    font-family: 'SUIT Variable', sans-serif;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .copyright-label {
        right: 5px;
        bottom: 5px;
        font-size: 9px;
        padding: 2px 4px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}