article {
  margin-top: 30px;
}
article a {
  font-weight: 600;
  text-decoration: underline;
}
.post-title {
  display: inline;
}
.post-image {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 230px;
  margin-left: 10px;
  margin-top: 10px;
  border-radius: 15px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0px 0px 10px #674388;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.post-navigation {
  margin: 20px 0;
}
.post-navigation a {
  font-family: "Montserrat Alternates", sans-serif;
  height: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: none;
  background: linear-gradient(170deg, #5a8ff0, #945af0);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-navigation a:hover {
  cursor: pointer;
  background: linear-gradient(-170deg, #5a8ff0, #945af0);
  -webkit-animation: invite 0.3s 1 ease;
  animation: invite 0.3s 1 ease;
}
.post-navigation a.disable {
  background: #aeaeae;
  animation: none !important;
}
.nav-next a {
  margin-right: 0;
  margin-left: auto;
}
.nav-arrow-left {
  margin-right: 10px;
  font-weight: 600;
  font-size: 23px;
}
.nav-arrow-right {
  margin-left: 10px;
  font-weight: 600;
  font-size: 23px;
}
@media (max-width: 768px) {
  .post-title {
    font-size: 30px;
    text-align: center;
    display: block;
  }
  .post-image {
    margin-left: 0;
    margin-bottom: 15px;
    width: 100%;
  }
}