div.statlib_list
{
color: #252525;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
}

div.statlib_list a.item
{
display: block;
width: 22%;
margin-top: 2rem;
margin-right: 2rem;
text-decoration: none;
flex-shrink: 0;
flex-grow: 0;
cursor: pointer;
border: solid 1px #000;
background-image: url('/assets/statlib-item-back.png');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
}

div.statlib_list a.item:before
{
content: '\20';
display: block;
padding-top: 100%;
}

div.statlib_list a.item h3
{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
font-size: 1.25rem;
line-height: 1.5rem;
text-transform: none;
margin-top: 0;
padding: 1rem;
color: #fff;
font-weight: 400;
}

@media (max-width: 800px)
{
div.statlib_list a.item { width: 42.5%; }
div.statlib_list a.item:before { padding-top: 75%; }
}

@media (max-width: 480px)
{
div.statlib_list a.item { width: 100%; }
div.statlib_list a.item:before { padding-top: 35%; }
}
