/* --------------------------
      Structure setting css
---------------------------- */
.items-col {
  padding: 0;
  padding-right: 30px;
}

.sidebar-col {
  padding: 0;
}

@media (max-width: 991px) {
  .items-col {
    padding: 0;
    padding-right: 0;
    margin-bottom: 50px;
  }
}

/* --------------------------
      Blog settings
---------------------------- */
/* Featured Image  */
.featured-img {
  width: 100%;
  border-radius: var(--main-bdr);
  transition: var(--Ltrns);
}
.featured-img:hover {
  transform: translateY(-5px);
}

/* Category  */
.post-category {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Title  */
.post-Title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-Dark);
  margin-bottom: 25px;
}

/* Blog Meta box  */
.post-meta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 30px;
}

.post-meta-box .itsMe img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 100%;
  border: 2px solid var(--primary);
  margin-right: 5px;
}
.post-meta-box .itsMe b {
  color: var(--primary);
}

.post-meta-box span {
  color: var(--txt-lite);
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.post-meta-box span:not(:last-child) {
  padding-right: 12px;
}
.post-meta-box span:not(:first-child) {
  padding-left: 12px;
}

.post-meta-box span:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: var(--txt-dim);
  opacity: 0.8;
}

/* ++++ Post Body  */
.post-body {
  padding: 30px 0;
}

.post-body .mylink {
  color: var(--primary-dark);
  transition: var(--Ltrns);
}
.post-body .mylink:hover {
  color: var(--secoundry);
}

.post-body img {
  width: 100%;
}

.post-body p:last-child {
  margin: 0;
}

.post-body .post-sub-hd {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.post-body .normal-post-hd {
  margin-bottom: 30px;
}

.post-body audio {
  margin: 17px 0;
}

.post-body video {
  width: 100%;
  margin: 0;
}

.post-body .grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}

/* Share box  */
.sharebox {
  border-top: var(--bdr-primary);
  padding: 15px 0;
}
@media (max-width: 768px) {
  .post-body .grid-row {
    gap: 17px;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 483px) {
  .post-Title {
    font-size: 20px;
  }

  /* Category  */
  .post-category {
    font-size: 13px;
  }

  .post-body .normal-post-hd {
    font-size: 19px;
  }
}

@media (max-width: 335px) {
  .post-body video {
    width: 97%;
  }
  .post-body audio {
    width: 97%;
  }
}
