.container {
  display: block;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.blog-post {
  margin-top: 21px;
  padding-bottom: 45px;
}

@media (min-width: 744px) {
  .blog-post {
    margin-top: 46px;
    padding-bottom: 107px;
  }
}

@media (min-width: 1261px) {
  .blog-post {
    margin-top: 114px;
    padding-bottom: 120px;
  }
}

.blog-post__top {
  margin: 24px 0 80px;
}

@media (min-width: 744px) {
  .blog-post__top {
    margin-bottom: 100px;
  }
}

@media (min-width: 1261px) {
  .blog-post__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 120px;
  }
}

@media (min-width: 1261px) {
  .blog-post__top-left {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.blog-post__info {
  gap: 0 32px;
  margin-bottom: 4px;
}

.blog-post__info-item {
  gap: 0 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--mid-700);
}

@media (min-width: 744px) {
  .blog-post__info-item {
    font-size: 16px;
    line-height: 28px;
  }
}

.blog-post__info-item-icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 744px) {
  .blog-post__info-item-icon {
    width: 24px;
    height: 24px;
  }
}

.blog-post__author {
  gap: 0 16px;
  margin-top: 16px;
}

@media (min-width: 744px) {
  .blog-post__author {
    margin-top: 24px;
  }
}

@media (min-width: 1261px) {
  .blog-post__author {
    gap: 0 24px;
  }
}

.blog-post__author-img {
  width: 44px;
  height: 44px;
}

.blog-post__author-img img {
  border-radius: 50%;
}

@media (min-width: 744px) {
  .blog-post__author-img {
    width: 48px;
    height: 48px;
  }
}

.blog-post__author-name {
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
}

@media (min-width: 744px) {
  .blog-post__author-name {
    font-size: 16px;
    line-height: 28px;
  }
}

.blog-post__author-link {
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-2);
}

.blog-post__top-image {
  height: 188px;
  margin-top: 24px;
}

.blog-post__top-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

@media (min-width: 1261px) {
  .blog-post__top-image img {
    border-radius: 16px;
  }
}

@media (min-width: 744px) {
  .blog-post__top-image {
    margin-top: 32px;
    height: 373px;
  }
}

@media (min-width: 1261px) {
  .blog-post__top-image {
    margin: 0 0 0 80px;
    width: 584px;
    height: 306px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.blog-post__content {
  color: var(--darkest);
}

@media (min-width: 1261px) {
  .blog-post__content {
    max-width: 800px;
    margin: 0 auto;
  }
}

.blog-post__content b {
  font-weight: 700;
}

.blog-post__content h2 {
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 1261px) {
  .blog-post__content h2 {
    margin-bottom: 32px;
  }
}

.blog-post__content p + h2 {
  margin-top: 80px;
}

@media (min-width: 744px) {
  .blog-post__content p + h2 {
    margin-top: 100px;
  }
}

@media (min-width: 1261px) {
  .blog-post__content p + h2 {
    margin-top: 120px;
  }
}

.blog-post__content h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 12px;
}

@media (min-width: 744px) {
  .blog-post__content h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }
}

@media (min-width: 1261px) {
  .blog-post__content h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

.blog-post__content h4 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 4px;
}

@media (min-width: 744px) {
  .blog-post__content h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
  }
}

.blog-post__content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 24px;
}

@media (min-width: 744px) {
  .blog-post__content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
  }
}

.blog-post__content a {
  color: var(--landing-primary);
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: 24px;
  list-style: none;
  padding-left: 0;
}

.blog-post__content ul li,
.blog-post__content ol li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 28px;
  position: relative;
}

.blog-post__content ul li:last-child,
.blog-post__content ol li:last-child {
  margin-bottom: 0;
}

@media (min-width: 744px) {
  .blog-post__content ul li,
  .blog-post__content ol li {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (min-width: 1261px) {
  .blog-post__content ul li,
  .blog-post__content ol li {
    margin-bottom: 24px;
  }
}

@media (min-width: 744px) {
  .blog-post__content ul,
  .blog-post__content ol {
    margin-bottom: 32px;
  }
}

@media (min-width: 1261px) {
  .blog-post__content ul,
  .blog-post__content ol {
    margin-bottom: 40px;
  }
}

.blog-post__content ul {
  margin-bottom: 24px;
}

.blog-post__content ul li {
  padding-left: 36px;
  position: relative;
}

.blog-post__content ul li::before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 11px;
  width: 6px;
  height: 6px;
  background-color: var(--grey-3);
  border-radius: 50%;
}

.blog-post__content ol {
  counter-reset: item;
}

.blog-post__content ol li {
  padding-left: 40px;
  counter-increment: item;
}

.blog-post__content ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: var(--grey-4);
}

.blog-post__content ol li:nth-child(n+10)::before {
  content: counter(item);
}

.blog-post__content ol li:last-child {
  margin-bottom: 0;
}

.blog-post__content blockquote {
  background-color: var(--mid-100);
  margin: 80px 0;
  border-radius: 20px;
  padding: 90px 16px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--black-2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.blog-post__content blockquote::before, .blog-post__content blockquote::after {
  content: '';
  display: block;
  position: absolute;
  background-color: var(--landing-primary);
  opacity: .2;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  border-radius: 50%;
}

.blog-post__content blockquote::before {
  width: 530px;
  height: 530px;
  left: 50%;
  bottom: 50%;
}

@media (min-width: 1261px) {
  .blog-post__content blockquote::before {
    width: 750px;
    height: 750px;
    left: 60%;
    bottom: 15%;
  }
}

.blog-post__content blockquote::after {
  width: 396px;
  height: 396px;
  right: 50%;
  top: 70%;
}

@media (min-width: 744px) {
  .blog-post__content blockquote::after {
    right: 65%;
  }
}

@media (min-width: 1261px) {
  .blog-post__content blockquote::after {
    width: 710px;
    height: 710px;
  }
}

.blog-post__content blockquote p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--black-2);
  margin: 0;
}

@media (min-width: 1261px) {
  .blog-post__content blockquote p {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (min-width: 744px) {
  .blog-post__content blockquote {
    margin: 48px 0 100px;
    padding: 44px 50px;
    min-height: 212px;
  }
}

@media (min-width: 1261px) {
  .blog-post__content blockquote {
    margin: 48px -224px 120px;
    padding: 70px 50px;
    min-height: 272px;
  }
}

.blog-post__banner {
  margin: 80px 0;
  background: url("/wp-content/themes/cryptonix/images/single-post/post-banner-bg_mob.webp") no-repeat 50% 50%;
  background-size: cover;
  padding: 112px 22px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 744px) {
  .blog-post__banner {
    margin: 100px 0;
    padding: 73px 15px;
    background-image: url("/wp-content/themes/cryptonix/images/single-post/post-banner-bg.webp");
  }
}

@media (min-width: 1261px) {
  .blog-post__banner {
    padding: 83px 50px;
    margin: 120px -224px;
  }
}

h2.blog-post__banner-title {
  margin-bottom: 16px;
}

@media (min-width: 744px) {
  h2.blog-post__banner-title {
    font-size: 32px;
    line-height: 44px;
  }
}

@media (min-width: 1261px) {
  h2.blog-post__banner-title {
    font-size: 40px;
    line-height: 56px;
  }
}

.blog-post__banner-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--grey-5);
}

@media (min-width: 744px) {
  .blog-post__banner-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}

.blog-post__banner-btn {
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.blog-post__placeholder {
  margin: 32px auto 80px;
  max-width: 508px;
}

.blog-post__placeholder img {
  width: 100%;
}

@media (min-width: 744px) {
  .blog-post__placeholder {
    margin: 40px auto 100px;
  }
}

@media (min-width: 1261px) {
  .blog-post__placeholder {
    margin-bottom: 120px;
  }
}

.blog-post__more {
  margin-top: 80px;
}

@media (min-width: 744px) {
  .blog-post__more {
    margin-top: 100px;
  }
}

@media (min-width: 1261px) {
  .blog-post__more {
    margin-top: 120px;
  }
}

.blog-post__more-title {
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 1261px) {
  .blog-post__more-title {
    margin-bottom: 32px;
  }
}

.blog-post__more-list {
  gap: 0 16px;
}

@media (max-width: 1260px) {
  .blog-post__more-list {
    overflow: auto;
  }
}

@media (min-width: 744px) {
  .blog-post__more-list {
    gap: 0 24px;
  }
}

@media (min-width: 1261px) {
  .blog-post__more-list {
    gap: 0 32px;
  }
}

.blog-post__more-item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 281px;
}

@media (min-width: 744px) {
  .blog-post__more-item {
    width: 312px;
  }
}

@media (min-width: 1261px) {
  .blog-post__more-item {
    width: -webkit-calc(33.333% - 21px);
    width: calc(33.333% - 21px);
  }
}

.blog-post__more-item-img {
  border-radius: 20px;
  width: 100%;
  height: 147px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 16px;
  -webkit-transition: .3s transform linear;
  -o-transition: .3s transform linear;
  transition: .3s transform linear;
}

@media (min-width: 744px) {
  .blog-post__more-item-img {
    height: 164px;
  }
}

@media (min-width: 1261px) {
  .blog-post__more-item-img {
    height: 207px;
    margin-bottom: 20px;
  }
  .blog-post__more-item:hover .blog-post__more-item-img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.blog-post__more-item-info {
  gap: 0 32px;
}

.blog-post__more-item-el {
  gap: 0 8px;
  font-size: 14px;
  line-height: 24px;
  color: var(--mid-700);
}

@media (min-width: 744px) {
  .blog-post__more-item-el {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (min-width: 1261px) {
  .blog-post__more-item-el {
    font-size: 18px;
  }
}

.blog-post__more-item-icon {
  width: 24px;
  height: 24px;
}

.blog-post__more-item-title {
  margin-top: 8px;
  font-size: 16px;
  line-height: 28px;
  color: var(--darkest);
}

@media (min-width: 744px) {
  .blog-post__more-item-title {
    font-size: 18px;
  }
}

@media (min-width: 1261px) {
  .blog-post__more-item-title {
    margin-top: 12px;
    font-size: 20px;
    line-height: 28px;
  }
}
