body {
  font-family: 'Poppins';
}

.blog-wrapper {
  box-sizing: border-box;
  width: 100%;
}
.inner-blog-list {
  padding: 5%;
}
.post-list {
  display: flex;
  flex-direction: column;
  margin-top: 120px;
}
.story {
  margin-bottom: 55px;
  display: block;
  color: black;
}
.story .title {
  font-family: 'Poppins', serif;
  display: block;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  letter-spacing: normal;
  color: #000;
  max-width: 850px;
  margin-bottom: 20px;
  position: relative;
}
.innerTitle {
  transition: 300ms;
}
.story .title:hover .innerTitle{
  transform: translateX(30px);
}
.story .title:hover .circle {
  opacity: 1;
  transform: translateY(32px);
}
.story .info {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.story .date {
  opacity: 0.3;
  padding-bottom: 8px;
}
.story .info > span {
  margin: 0 20px;
  padding-bottom: 8px;
}
.tag-container.single {
  margin-top: 12px;
}
.tag-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.tag-container > a {
  white-space: nowrap;
  margin-right: 20px;
  font-size: 12px;
  color: black;
  opacity: 0.3;
  transition: 300ms;
}
.tag-container > a:hover {
  opacity: 1;
}
.logo {
  filter: grayscale(100%);
  position: absolute;
  top: 5%;
  left: 5%;
  width: 60px;
  transition: 300ms;
}
.logo:hover {
  filter: grayscale(0%);
}
.circle {
  opacity: 0;
  top: 0px;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: black;
  transition: 300ms;
}


@media (min-width: 640px) {
  .story .title {
    line-height: 1.2;
    max-width: 500px;
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .story {
    margin-bottom: 55px;
    display: block;
    cursor: pointer;
  }
  .story .title {
    line-height: 1.2;
    max-width: 650px;
    font-size: 45px;
    margin-bottom: 30px;
  }
  .story .info {
    margin-bottom: 20px;
  }
  .logo {
    width: 80px;
  }
}
@media (min-width: 1024px) {
  .story {
    margin-bottom: 100px;
    display: block;
    cursor: pointer;
  }
  .story .title {
    font-size: 60px;
    max-width: 900px;
  }
  .story .info {
    margin-bottom: 25px;
  }
}
@media (min-width: 1440px) {
  .story .title {
    font-size: 60px;
    max-width: 900px;
  }
}
@media (min-width: 1850px) {
  .story {
    margin-bottom: 130px;
  }
  .story .title {
    font-size: 90px;
    max-width: 1400px;
  }
}
