/**
 * plugins/pubIds/ark/css/ark.css
 * Lury Morais © 2026
 */
 
.pub_id.ark {
    margin: 0.5rem 0;
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pub_id.ark .type {
    background: #333;
    color: #fff;
    padding: 0 0.5rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.pub_id.ark .id {
    font-size: 0.8rem;
}

.pub_id.ark .id a {
    color: #2c6e9e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pub_id.ark .id a:hover {
    color: #1a4d6e;
    text-decoration: underline;
}

.issue-summary .pub_id.ark,
.obj_issue_summary .pub_id.ark,
.issue-item .pub_id.ark,
.ark-archive-injected {
    margin: 0.25rem 0;
    gap: 0.4rem;
}

.issue-summary .pub_id.ark .type,
.obj_issue_summary .pub_id.ark .type,
.issue-item .pub_id.ark .type,
.ark-archive-injected .type {
    font-size: 0.65rem;
    padding: 0 0.4rem;
}

.issue-summary .pub_id.ark .id,
.obj_issue_summary .pub_id.ark .id,
.issue-item .pub_id.ark .id,
.ark-archive-injected .id {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .pub_id.ark {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .pub_id.ark .type {
        white-space: normal;
    }
}

/* Style for ARK section on article page */
section.item.pubid {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-family: inherit !important;
}

section.item.pubid h2.label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333 !important;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem !important;
    border-radius: 12px !important;
    font-family: inherit !important;


}

section.item.pubid .value {
    font-size: 1rem;
    word-break: break-all;
}

section.item.pubid .value a {
    color: #2c6e9e;
    text-decoration: none;
    transition: color 0.2s ease;
}

section.item.pubid .value a:hover {
    color: #1a4d6e;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    section.item.pubid .value {
        font-size: 0.75rem;
        word-break: break-all;
    }
}