.tile-links {
	margin: 1em 0;
}

.tile-link {
    text-align: center;
    border-radius: 5px;
    border-width: 1px;
    border-style: groove;
    background: radial-gradient(farthest-corner, #fff, #ccc3 50%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-link > a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(120deg, #fffe 0%, #fff1 10%, #fff5 48%, #fff0 49%, #fff 51%, #fff0 52%); */
    background-size: 300%;
    background-position: 100%;
    /* transition: 600ms ease-out; */
    z-index: 1;
}

.tile-link :is(h4,h6) {
    position: absolute;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px black, -2px 2px 4px black, -2px -2px 4px black, 2px -2px 4px black, 0 0 8px black;
    padding: 8px 14px;
    transition: background-color 200ms;
    background-color: #0007;
    border: solid 1px #0009;
}

.tile-link h6 {
    bottom: 0;
}

.tile-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .tile-link:where(:focus-within,:hover) a {
    text-decoration: none;
    background-position: 0%;
    transition: 0.25s ease-out;
} */

.tile-link:where(:focus-within,:hover) h4 {
    background-color: #447a;
}

.tile-links.related-content::before {
  content: "Related content:";
  width: 100%;
  margin-top: 2em;
  margin-bottom: -0.75em;
  font-size: 12pt;
  font-weight: 600;
}