@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,500;0,700;1,300;1,500;1,700&display=swap');

body {
  font-family: 'Barlow', sans-serif;
  background-color: #444;
}

/* *********   WEBSTORY LIST  *********** */

h1 {
  color: #eee;
  font-size: 3em;
}

h1 a {
  text-decoration: none;
  color: inherit;
}

h1 span {
  font-weight: 300;
  font-size: .5em;
  margin-left: .2em;
  color: #888;
  text-transform: uppercase;
}

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.ws-no-result {
  padding: 2em 0;
  color: #888;
  font-size: 2em;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.ws_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 25px;
}

.ws_card {
  background-color: #ffffff;
  box-shadow: 0 5px 6px rgb(0 0 0 / 20%);
  transition: all .1s ease-in;
  overflow: hidden;
  top: 0;
  border-radius: 5px;
}

.ws_card:hover {
  transform: translateY(-3px);
}

.ws_cards a {
  text-decoration: none;
}

.ws_thumb {
  width: 100%;
  aspect-ratio: 1.25;
  display: block;
  background-color: #eee;
  position: relative;
}

.ws_thumb img{
  position: absolute;
  inset: 0 0 0 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.ws_info {
  padding: 1em;
  color: #666;
  font-size: .9em;
}

.ws_info .ws_title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: .5em;
  color: #000;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 860px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}