.usp-viewed-tiles{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
}
.usp-viewed-tile{
    display:block;
    background:linear-gradient(180deg,#141414,#1e1e1e);
    border:1px solid rgba(255,255,255,0.06);
    padding:14px;
    border-radius:12px;
    text-decoration:none;
    color:inherit;
    transition:transform .12s ease,box-shadow .12s ease;
}
.usp-viewed-tile:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(0,0,0,0.6);
}
.usp-viewed-tile-title{
    font-weight:700;
    margin-bottom:8px;
}
.usp-viewed-tile-date{
    font-size:12px;
    color:#9aa;
    margin-bottom:8px;
}
.usp-viewed-tile-summary{
    font-size:13px;
    color:#dfe;
}
