/* Report artwork gallery; scoped so other feature galleries keep their layout. */
.reports-evidence {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin: 28px 0 18px;
}

.reports-evidence__card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #e0ddef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 28px -20px rgba(34, 23, 107, .24);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.reports-evidence__card:hover {
    border-color: #bcb3ee;
    box-shadow: 0 15px 36px -24px rgba(34, 23, 107, .36);
}

.feat-body .reports-evidence__image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eeebfc;
    text-decoration: none;
}

.reports-evidence__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.feat-body .reports-evidence__image:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
    border-radius: 0;
}

.reports-evidence__expand {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d3ee;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(34, 23, 107, .08);
}

.reports-evidence__expand .material-symbols-outlined {
    font-size: 18px;
}

.reports-evidence__card figcaption {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 21px 22px 23px;
    border-top: 1px solid #eeeaf8;
}

.reports-evidence__number {
    display: grid;
    place-items: center;
    align-self: start;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #efecfc;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
}

.reports-evidence__card strong {
    display: block;
    margin: 1px 0 5px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.4;
}

.feat-body .reports-evidence__card p {
    margin: 0;
    color: var(--secondary);
    font-size: .875rem;
    line-height: 1.65;
}

.feat-body .reports-evidence__note {
    max-width: 78ch;
    margin: 0;
    color: var(--secondary);
    font-size: .8125rem;
    line-height: 1.7;
}

@media (min-width: 1100px) {
    .reports-evidence {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reports-evidence__card--featured {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reports-evidence__card {
        transition: none;
    }
}
