section.file-list .items{display:grid;gap:1rem;grid-template-columns:repeat(auto-fit,minmax(24rem,1fr))}section.file-list .item{align-items:center;color:inherit;display:grid;gap:0 1rem;grid-template-areas:"icon title" "icon filename";grid-template-columns:auto 1fr;line-height:1.5;transition:color .2s;width:max-content}section.file-list .item:hover{color:#e84e0e}section.file-list .item .icon{grid-area:icon;height:1.75em;width:1.75em}section.file-list .item .name{font-weight:700;grid-area:title}section.file-list .item .file-name{font-size:.875em;font-style:italic;grid-area:filename}