.content-body {
  background: white;
  border-radius: 20px;
  padding: 50px;
}
@media screen and (max-width: 750px) {
  .content-body {
    padding: 30px;
  }
}

.blog-body {
  display: flex;
}
@media screen and (max-width: 750px) {
  .blog-body {
    flex-direction: column;
  }
}

.blog-header {
  color: var(--global--color--dark-purple);
  font-size: 35px;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 3px solid #FDDDED;
}

.blog-content {
  width: 100%;
  text-align: start;
  font-family: var(--global--font--m-plus);
}
.blog-content .blog {
  color: #8F8F8F;
  font-size: 20px;
  line-height: 23px;
}
@media screen and (max-width: 750px) {
  .blog-content {
    padding-top: 50px;
  }
}

.blog-footer {
  padding-top: 30px;
  width: 100%;
  font-family: var(--global--font--m-plus);
  text-align: start;
}
.blog-footer .tip-text {
  font-size: 14px;
  color: #8F8F8F;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 3px solid #FDDDED;
  font-family: var(--global--font--m-plus);
}
.blog-footer .article-links {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 10px;
  border-bottom: 3px solid #FDDDED;
}
.blog-footer .article-links .img {
  width: 200px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.blog-footer .article-links .split {
  background-color: #FDDDED;
  height: 60px;
  width: 3px;
}
.blog-footer .article-links .tip-text {
  border-bottom: none;
  text-align: start;
}
.blog-footer .article-links .before,
.blog-footer .article-links .after {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  width: 30%;
  text-decoration: none;
  color: #8F8F8F;
  align-items: center;
}
.blog-footer .article-links .title {
  font-size: 18px;
  font-weight: 800;
}
.blog-footer .article-links .text {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .blog-footer .tip-text {
    font-size: 18px;
  }
  .blog-footer .title {
    font-size: 18px;
    font-weight: 800;
  }
}

.left-block .content-element {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
  flex-shrink: 0;
  padding-right: 50px;
  font-family: var(--global--font--m-plus);
}
.left-block .content-element .link {
  display: block;
  text-decoration: none;
}
.left-block .content-element .link .thumbnail {
  height: 250px;
  width: 250px;
}
.left-block .content-element .link .thumbnail img {
  height: 100% !important;
  width: 100% !important;
}
.left-block .content-element .link .text {
  text-align: start;
  font-size: 20px;
  font-weight: 800;
  color: var(--global--color--dark-purple);
}
.left-block .content-element .other {
  display: flex;
}
.left-block .content-element .author,
.left-block .content-element .date {
  text-align: start;
  font-size: 15px;
  color: #8F8F8F;
  font-weight: 500;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  .left-block .content-element {
    padding-top: 20px;
    margin: auto;
    width: 500px;
    padding-right: 0;
  }
  .left-block .content-element .link {
    display: block;
    text-decoration: none;
  }
  .left-block .content-element .link .thumbnail {
    height: 500px;
    width: 500px;
  }
  .left-block .content-element .link .thumbnail img {
    height: 100% !important;
    width: 100% !important;
    background-color: black;
  }
  .left-block .content-element .link .text {
    text-align: start;
    font-size: 20px;
    font-weight: 800;
    color: var(--global--color--dark-purple);
  }
  .left-block .content-element .other {
    justify-content: end;
    align-items: center;
    width: 100%;
  }
  .left-block .content-element .other .flex-spacer {
    flex-grow: 1;
  }
  .left-block .content-element .author,
  .left-block .content-element .date {
    font-size: 20px;
  }
}

.play {
  font-family: var(--global--font--m-plus);
  color: var(--global--color--purple);
  font-weight: 800;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
}
.play::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../img/mic-icon.svg") no-repeat;
  padding-right: 5px;
  pointer-events: none;
}
.play.playing::before {
  background: url("../img/stop-icon.svg") no-repeat;
}

/*# sourceMappingURL=top-blog.css.map */
