/* Shared disclosure contract. The scope is enabled by the standalone template.
   PSK popovers keep their compact tooltip presentation. */
.zayman-disclosures details:not(.zayman-mfo__hint) > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
    list-style: none;
    cursor: pointer;
    color: #315ca9;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.zayman-disclosures details:not(.zayman-mfo__hint) > summary::-webkit-details-marker { display: none; }
.zayman-disclosures details:not(.zayman-mfo__hint) > summary::marker { content: ''; }
.zayman-disclosures summary > :is(.zayman-mfo__chevron, .zayman-link-groups__chevron) { display: none; }
.zayman-disclosures details:not(.zayman-mfo__hint) > summary::after {
    content: '';
    position: static;
    display: block;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #edf3ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='m5 8 5 5 5-5' fill='none' stroke='%23315ca9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
    transform: rotate(0deg);
    transition: transform 240ms ease-in-out;
}
.zayman-disclosures details:not(.zayman-mfo__hint)[open] > summary::after { transform: rotate(180deg); }
.zayman-disclosures details:not(.zayman-mfo__hint)[data-zayman-expanded='false'] > summary::after { transform: rotate(0deg); }
.zayman-disclosures details:not(.zayman-mfo__hint) > summary:focus-visible {
    outline: 3px solid #234fa6;
    outline-offset: 4px;
    border-radius: 8px;
}
.zayman-disclosures details:not(.zayman-mfo__hint) > :not(summary, script, style) {
    box-sizing: border-box;
    min-width: 0;
    margin-block: 12px 0;
    padding: 20px;
    border-radius: 14px;
    background-color: #f5f8fc;
}
/* The desktop quotes panel is intentionally always visible. */
@media (min-width: 641px) {
    .zayman-disclosures .zayman-metals__current-quotes[data-enhanced] > summary { display: none; }
}
@media (max-width: 640px) {
    .zayman-disclosures details:not(.zayman-mfo__hint) > :not(summary, script, style) { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .zayman-disclosures details:not(.zayman-mfo__hint) > summary::after { transition: none; }
}
