.wrapper-post {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 var(--out-padding);
}

.wrapper-post article {
  position: relative;
}

.wrapper-post article .cat-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  color: #069aa4;
  text-align: center;
  font-size: 16px;
}

.wrapper-post article .edit-link {
  position: absolute;
  right: 0px;
  top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.wrapper-post article .edit-link a {
  text-decoration: none;
  background: #081622;
  color: #fff6;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.wrapper-post article .edit-link a:hover {
  background: #041010;
  color: #fff;
}

.wrapper-post article img {
  max-width: 100%;
  height: auto;
}

.wrapper-post article h1 {
  text-align: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 6px 0 12px;
}

.wrapper-post article .entry-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #6bdfd5;
  font-size: 18px;
  margin-bottom: 60px;
}

.wrapper-post article h2,
.wrapper-post article h3,
.wrapper-post article h4,
.wrapper-post article h5 {
  color: #72ede1;
}

@media screen and (min-width: 760px) {
  .wrapper-post {
    margin: 100px auto;
  }
}