/* Blog */
.blog .main .item {
  position: relative;
}
.blog .main .item figure {
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
}
.blog .main .item figure img {
  transition: transform 0.3s;
}
.blog .main .item figure figcaption {
  text-align: center;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 1rem;
  width: 90%;
  background-color: rgba(var(--secondary-color-rgb), 0.55);
  backdrop-filter: blur(10px);
}
.blog .main .item figure figcaption h3 {
  font-size: 1.1rem;
  color: var(--text-color);
}
.blog .main .item figure:hover img {
  transform: scale(1.05);
}
.blog .main .item .date-posted {
  position: absolute;
  background-color: var(--cta-color);
  top: 0px;
  right: 2rem;
  color: var(--white-color);
  text-align: center;
  padding: 1rem;
}

/* Blog post */
.blog-post .main figure {
  overflow: hidden;
  position: relative;
}
.blog-post .main figure img {
  transition: all 0.3s ease;
  margin-bottom: 0px !important;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.blog-post .main figure figcaption {
  color: var(--white-color);
  background: rgba(var(--cta-color-rgb), 0.55);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
}
.blog-post .main figure:hover img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .blog-post .main figure figcaption {
    position: absolute;
    width: 80%;
    bottom: 30px;
    left: 50%;
    color: var(--white-color);
    background: rgba(var(--cta-color-rgb), 0.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
  }
  .blog-post .main figure figcaption::before, .blog-post .main figure figcaption::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(var(--primary-color-rgb), 0.55);
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    transition: all 0.3s;
    pointer-events: none;
  }
  .blog-post .main figure figcaption::before {
    top: -1.25rem;
    left: -1.25rem;
  }
  .blog-post .main figure figcaption::after {
    top: -0.75rem;
    left: -0.75rem;
  }
  .blog-post .main figure figcaption:hover::before, .blog-post .main figure figcaption:hover::after {
    top: -1rem;
    left: -1rem;
  }
  .blog-post .main figure figcaption::before, .blog-post .main figure figcaption::after {
    pointer-events: none;
  }
}

/* Post Detail */
.post-detail .main figure.thumb {
  border: 10px solid var(--primary-color);
}
.post-detail .main .comments .comment-list {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}
.post-detail .main .comments .comment-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.post-detail .main .comments .comment-item .avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.post-detail .main .comments .comment-item .avatar-reply {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.post-detail .main .comments .comment-item:last-child {
  border-bottom: none;
}
.post-detail .main .comments .reply-item {
  border-left: 2px solid #ddd;
  padding-left: 10px;
}
.post-detail .main .comments .reply-link {
  font-size: 0.9em;
  cursor: pointer;
}
.post-detail .main .social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 50%;
  color: #666;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.post-detail .main .social-icon a:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  text-decoration: none;
}

/* Blog Categories */
.categories {
  border: none;
}
.categories .list-group li {
  padding: 15px 20px;
}
.categories .list-group li::before {
  font-family: "bootstrap-icons";
  content: "\f280";
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.6em;
  transition: margin-left 0.3s ease-in-out;
}
.categories .list-group li:hover::before {
  margin-left: 1rem;
}

/* Popular Postes */
.popular-postes {
  border: none;
}
.popular-postes .list-group li {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.popular-postes .list-group li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.popular-postes .list-group li a {
  font-size: 0.95rem;
}

/* Tags */
.tags {
  border: none;
}
.tags .badge {
  font-size: 0.9rem;
  margin: 5px 5px 0px 0px;
  padding: 10px 15px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.tags .badge:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  text-decoration: none;
}/*# sourceMappingURL=blog.css.map */