.scenic-container-small.blog-single {
  padding-bottom: 20px;
}
.blog-single,
.blog-post-header {
  position: relative;
  z-index: 5;
}
.blog-single .site-content p {
  font-weight: 400;
}
.blog-header {
  margin-top: 40px;
}
.blog-header h1,
.site-content h1,
.site-content h2,
.site-content h3,
.site-content h4 {
  font-size: 40px;
  font-weight: 600;
  color: rgba(51, 51, 51, 1);
  font-family: var(--primary-font);
  line-height: 38px;
  margin: 20px 0 20px 0;
  letter-spacing: -0.01em;
}
.site-content h2 {
  font-size: 34px;
}
.site-content h3 {
  font-size: 28px;
}
.site-content h4 {
  font-size: 24px;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;

  font-size: 14px;
  font-weight: 400;
  color: rgba(82, 82, 82, 1);
  line-height: 30px;
  position: relative;
}

.blog-name,
.blog-date,
.blog-post-share span {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--primary-font);
  line-height: 30px;
  padding-left: 26px;
  color: rgba(82, 82, 82, 1);
  position: relative;
}

.blog-name::before,
.blog-date::before,
.blog-post-share span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;

  background-size: contain;
  pointer-events: none;
}

.blog-name::before {
  background: url("../images/icons/name-icon.svg") no-repeat center center;
}
.blog-date::before {
  background: url("../images/icons/blog-calender.svg") no-repeat center center;
}

.blog-post-share span::before {
  background: url("../images/icons/share-icon.svg") no-repeat center center;
}

.blog-post-share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-post-share a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}
.blog-post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-post-share a .fa-brands {
  font-size: 18px;
}

.blog-post-share a[aria-label="Instagram"] {
  background: linear-gradient(
    224.43deg,
    #791cc9 -1.01%,
    #c938a8 24.13%,
    #fe5340 54.23%,
    #ffd854 95.27%
  );

  color: #fff;
}
.blog-post-share a[aria-label="Facebook"] .fa-brands {
  font-size: 24px;
}

.blog-post-share a[aria-label="Twitter"] {
  background: #000000;
  color: #fff;
  border-radius: 10px;
}
/* .blog-post-share a:hover {
  background: var(--secondary);
} */

.blog-post-image {
  margin: 20px 0;
  border-radius: 12px;

  height: 100%;
  overflow: hidden;
  position: relative;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .blog-post-title {
    font-size: 28px;
  }
  .blog-post-image img {
    height: 340px;
  }
}
@media (max-width: 768px) {
  .blog-post-title {
    font-size: 24px;
  }
  .blog-post-share {
    margin-left: 0;
  }
  .blog-post-image img {
    height: 270px;
  }
}
@media (max-width: 600px) {
  .blog-post-title {
    font-size: 22px;
  }
  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-post-image img {
    height: 210px;
  }
  .blog-post-image {
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .blog-post-title {
    font-size: 20px;
  }
  .blog-post-image img {
    height: 180px;
  }
}
.single.single-blog::before {
  content: "";
  position: absolute;
  left: 0;

  width: 100%;
  height: 100%;
  background: url("../images/single-pages/about-bg.png") 0 0 no-repeat;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
  top: 0;
}
