/* ==============================================
   Article Meta — Reviewer, dates, sources
   ============================================= */

.cihos-article-meta {
    margin-top: 32px;
    padding: 16px 20px;
    background: #F9F9F9;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #8B8C8D;
}

/* Reviewer badge */
.cihos-article-meta__reviewer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: #3F4153;
}

.cihos-article-meta__reviewer svg {
    flex-shrink: 0;
    color: #2B7ACC;
}

.cihos-article-meta__reviewer strong {
    font-weight: 600;
}

/* Dates */
.cihos-article-meta__dates {
    margin-bottom: 2px;
}

.cihos-article-meta__separator {
    margin: 0 2px;
}

/* Author */
.cihos-article-meta__author {
    margin-bottom: 6px;
}

.cihos-article-meta__author a {
    color: #2B7ACC;
    text-decoration: none;
}

.cihos-article-meta__author a:hover {
    color: #4A9FE5;
    text-decoration: underline;
}

/* Collapsible sources */
.cihos-article-meta__sources {
    margin-top: 6px;
}

.cihos-article-meta__sources summary {
    cursor: pointer;
    font-weight: 600;
    color: #2B7ACC;
    padding: 6px 0;
    list-style: none;
}

.cihos-article-meta__sources summary::-webkit-details-marker {
    display: none;
}

.cihos-article-meta__sources summary::before {
    content: "\25B8";
    display: inline-block;
    margin-right: 6px;
    transition: transform 0.2s ease;
}

.cihos-article-meta__sources[open] summary::before {
    transform: rotate(90deg);
}

.cihos-article-meta__sources ol {
    margin: 8px 0 0;
    padding-left: 20px;
    color: #3F4153;
}

.cihos-article-meta__sources li {
    margin-bottom: 4px;
}

.cihos-article-meta__sources a {
    color: #2B7ACC;
    text-decoration: none;
}

.cihos-article-meta__sources a:hover {
    color: #4A9FE5;
    text-decoration: underline;
}
