body.transactions-fresh {
    background: var(--page);
    color: var(--ink);
}

/* Transaction list ----------------------------------------------------- */
.tx-list {
    margin-top: 2.5rem;
    border-top: 1px solid var(--line-strong);
}

.tx-row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 1rem 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: box-shadow 0.3s ease;
}

.tx-row:hover {
    box-shadow: inset 0 -1px 0 var(--accent);
}

.tx-meta {
    display: grid;
    gap: 0.5rem;
    align-content: start;
}

.tx-category {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tx-date {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.tx-title {
    margin: 0 0 0.6rem;
    font-family: "Newsreader", serif;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.tx-desc {
    margin: 0;
    max-width: 46rem;
    color: var(--muted);
    font-size: 0.99rem;
    line-height: 1.74;
    transition: color 0.3s ease;
}

.tx-row:hover .tx-desc {
    color: var(--ink);
}

.tx-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.1rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tx-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 1.4rem;
    bottom: -0.35rem;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.tx-link:hover::after {
    transform: scaleX(1);
}

.tx-link .tx-arrow {
    transition: transform 0.3s ease;
}

.tx-link:hover .tx-arrow {
    transform: translateX(3px);
}

.tx-disclaimer {
    margin: 2rem 0 0;
    max-width: 46rem;
    color: rgba(102, 95, 88, 0.9);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Dark "approach" stage (carries the WebGL field into the page body) --- */
.tx-approach-stage {
    background:
        radial-gradient(circle at 78% 18%, rgba(52, 96, 170, 0.08), transparent 24%),
        linear-gradient(180deg, #0c2856 0%, #0a1f48 100%);
    color: var(--hero-ink);
    border-top: 0;
    position: relative;
    overflow: hidden;
}

.tx-approach-stage > .shell {
    position: relative;
    z-index: 1;
}

@media (max-width: 920px) {
    .tx-row {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .tx-meta {
        grid-auto-flow: column;
        justify-content: start;
        gap: 1rem;
        align-items: baseline;
    }
}

@media (max-width: 680px) {
    .tx-desc {
        font-size: 0.96rem;
    }
}
