/* There is no wrapper for items, so we have to add some styles directly to body. */
body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  align-content: flex-start;
}

/* Latest announcement item. */
a {
  margin: 16px;
  padding: 20px;
  background: #2a7da7;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  justify-content: center;
  font-family: sans-serif;
  text-decoration: none;
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
  flex-direction: column;
}

a:hover {
  background: #205e7e;
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

/* Improve accessibility. */
a:focus {
  outline: 3px solid #448fa3;
  outline-offset: 2px;
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

/* There is no title on the links so trying to improve the UX a bit. */
a:after {
    content: "(soubor MP3 ke stažení)";
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

@media (min-width: 48rem) {
  a {
    width: calc(100 / 3 * 1% - 32px);
  }
}

