/* Flagship Features - replaces the old 2-card grid with an asymmetric pairing:
   a real trend-graph reading (proof of "Scan & Digitize" - what a scanned
   value becomes) beside a plain editorial statement (the "Share On Your
   Terms" consent story). Extends the hero phone-mockup's "show the real
   thing" idea instead of repeating the icon-square + heading + paragraph
   card formula used site-wide. */
.exhibit-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 56px;
    align-items: start;
    margin: 200px 0 100px;
}

@media (max-width: 900px) {
    .exhibit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* --- Visual: the trend-graph reading, unboxed, sitting directly on the section background --- */
.exhibit-tray {
    display: flex;
    justify-content: center;
}

.exhibit-reading {
    width: 90%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exhibit-reading-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
}

.exhibit-reading-header span:first-child {
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
}

.exhibit-reading-header span:last-child {
    font-size: 13px;
    color: var(--text-light);
}

.exhibit-graph-wrap {
    position: relative;
    width: 100%;
    height: 220px;
}

.exhibit-graph {
    width: 100%;
    height: 100%;
    display: block;
}

.exhibit-graph-label {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--widget-bp);
}

.exhibit-graph-label-start {
    top: 15%;
    left: 0;
    transform: translateY(-140%);
}

.exhibit-graph-label-end {
    top: 77%;
    right: 0;
    transform: translateY(-140%);
}

/* --- Statement: the consent/sharing editorial panel --- */
.exhibit-statement h3 {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.exhibit-statement p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}
