/* Preserve existing TRM typography in screen.css. */
.trm-latest { max-width: 1100px; margin: 64px auto; padding: 0 24px; }
.trm-latest > h1, .trm-latest > h2 { font-family: var(--font-sans); font-size: clamp(30px, 4vw, 44px); margin-bottom: 28px; }
.trm-list-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(100px, 28%); gap: 24px; padding: 28px 0; border-top: 1px solid #ddd; }
.trm-list-row h3 { font-family: var(--font-sans); font-size: clamp(20px, 2.5vw, 28px); line-height: 1.2; margin: 0 0 16px; }
.trm-list-row a { color: inherit; text-decoration: none; }
.trm-list-row a:hover { text-decoration: underline; }
.trm-list-row .trm-list-byline { font-size: 16px; margin: 0 0 8px; color: #666; }
.trm-list-row time { font-size: 13px; text-transform: uppercase; }
.trm-list-image img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.trm-archive-link { display: inline-block; margin-top: 24px; }
.trm-latest ~ .pagination, main > .pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin: 32px 16px; }
@media (max-width: 480px) { .trm-latest { padding: 0 20px; } .trm-list-row { gap: 18px; } }

/* Native Ghost paywall: fade only the public preview, never paid content. */
.trm-public-preview {
    position: relative;
    min-width: 0;
    width: 100%;
    grid-column: full-start / full-end;
}
.trm-public-preview::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: min(120px, 60%);
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
}
.trm-post-content .trm-paywall {
    width: 100%;
    margin: 0 auto 32px;
    padding: 36px 16px 40px;
    text-align: center;
    color: #090909;
    background: #fff;
}
.trm-post-content .trm-paywall-kicker {
    margin: 0 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .22em;
}
.trm-post-content .trm-paywall-title {
    margin: 0 0 18px;
    font-family: Baskerville, "Iowan Old Style", Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
}
.trm-post-content .trm-paywall-description {
    max-width: 440px;
    margin: 0 auto 26px;
    font-size: 19px;
    line-height: 1.5;
    color: #454545;
}
.trm-post-content .trm-paywall-button {
    display: inline-block;
    max-width: 100%;
    padding: 17px 25px;
    background: #090909;
    border: 1px solid #090909;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color .15s ease;
}
.trm-post-content .trm-paywall-button:hover { background: #333; }
.trm-paywall a:focus-visible { outline: 2px solid #090909; outline-offset: 5px; }
.trm-post-content .trm-paywall-signin { margin: 20px 0 0; font-size: 16px; }
.trm-paywall-signin a { color: inherit; text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .trm-post-content .trm-paywall-button { transition: none; } }
