/* .ftco-animate {
    opacity: 0;
  }
  
  .ftco-animate.item-animate {
    opacity: 0;
  }
  
  .ftco-animated {
    opacity: 1;
  }
  
  .fadeIn {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
  }
  
  .fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  } */

/* =========================================
   0 All pages INITIAL STATE animation start
   ========================================= */

   .ftco-animate {
    opacity: 0;
    visibility: hidden;
  }
  
  
  /* =========================================
     ANIMATED STATE
     ========================================= */
  
  .ftco-animate.ftco-animated {
    opacity: 1;
    visibility: visible;
  }
  
  
  /* =========================================
     FADE IN UP
     ========================================= */
  
  .ftco-animate.fadeInUp {
    animation: ftcoFadeInUp 0.8s ease forwards;
  }
  
  @keyframes ftcoFadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* =========================================
     FADE IN LEFT
     ========================================= */
  
  .ftco-animate.fadeInLeft {
    animation: ftcoFadeInLeft 0.8s ease forwards;
  }
  
  @keyframes ftcoFadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  
  /* =========================================
     FADE IN RIGHT
     ========================================= */
  
  .ftco-animate.fadeInRight {
    animation: ftcoFadeInRight 0.8s ease forwards;
  }
  
  @keyframes ftcoFadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  
  /* =========================================
     FADE IN
     ========================================= */
  
  .ftco-animate.fadeIn {
    animation: ftcoFadeIn 0.8s ease forwards;
  }
  
  @keyframes ftcoFadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

  /* =========================================
   0 All pages INITIAL STATE animation ends
   ========================================= */

  /* =========================================
  1.. Article Detail right bar animate INITIAL STATE start
   ========================================= */

   .article-detail-animate {
    opacity: 0;
    visibility: hidden;
  
    transform: translate3d(50px, 0, 0);
  
    transition:
      opacity 0.8s ease,
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.8s;
  }
  
  
  /* =========================================
     Article Detail ANIMATED STATE
     ========================================= */
  
  .article-detail-animate.article-detail-animated {
    opacity: 1;
    visibility: visible;
  
    transform: translate3d(0, 0, 0);
  
    transition:
      opacity 0.8s ease,
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

    /* =========================================
  1.. Article Detail right bar animate INITIAL STATE ends
   ========================================= */

/* =========================================
   2 category page  IMAGE start
   ========================================= */

   .blog-feature-image {
    height: 702px;
    min-height: 702px;
  
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  
    display: block !important;
  
    position: relative;
    overflow: hidden;
  }
  
  
  /* =========================================
     GAP BETWEEN BLOG ITEMS
     ========================================= */
  
  .blog-wrap {
    position: relative;
    margin-bottom: 40px !important;
  }
  
  
  /* Prevent the last item from having extra space */
  
  /* .blog-wrap:last-child {
    margin-bottom: 0 !important;
  } */

  .blog-wrap:first-child {
    margin-top: 40px !important;
  }

  /* =========================================
   2 category page  IMAGE ends
   ========================================= */
  
  
  /* =========================================
     AUTHOR IMAGE
     ========================================= */
  
  /* .author-image {
    width: 60px;
    height: 60px;
  
    flex: 0 0 60px;
  
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  
    border-radius: 50%;
  } */
  
  
  /* =========================================
     MOBILE
     ========================================= */
  
  @media (max-width: 767px) {
  
    .blog-feature-image {
      height: 350px;
      min-height: 350px;
    }
  
    .blog-wrap {
      margin-bottom: 25px !important;
    }
  
  }

  /* =========================================
   3...Weather Header start
========================================= */

/* =========================================
   HEADER
   ========================================= */

   .header-main {
    position: relative !important;
  
    width: 100%;
  
    z-index: 10;
  
    display: block;
  
    /* IMPORTANT:
       keeps header in normal document flow */
    height: auto;
  
    overflow: visible;
  }
  
  
  /* =========================================
     WEATHER
     ========================================= */
  
  .header-weather {
    position: relative;
  
    width: 100%;
  
    z-index: 10;
  
    display: block;
  }
  
  
  /* =========================================
     HOME
     ========================================= */
  
  .colorlib-page-content {
    position: relative;
  
    width: 100%;
  
    z-index: 1;
  
    /* makes Home start after header */
    display: block;
  }
  
  
  /* =========================================
     SIDEBAR
     ========================================= */
  
  .colorlib-page-content .sidebar {
    position: relative;
  
    z-index: 1;
  }
  /* =========================================
   3...Weather Header ends
========================================= */

   /* =========================================
     Mobile Menu SIDEBAR
     ========================================= */
/* 
  @media (max-width: 991.98px) {

    #colorlib-aside {
      position: fixed;
      left: -300px;
      top: 0;
      width: 300px;
      height: 100vh;
      z-index: 9999;
  
      transition: left 0.3s ease;
    }
  
    body.offcanvas #colorlib-aside {
      left: 0;
    }
  
    .js-colorlib-nav-toggle {
      position: fixed;
      top: 20px;
      left: 20px;
  
      width: 45px;
      height: 45px;
  
      z-index: 10000;
  
      cursor: pointer;
    }
  
  } */

  /* display none in mobile view */

  /* @media (max-width: 767.98px) {
    .all-categories-menu {
      display: none !important;
    }
  } */

  /* =========================================
   ALL CATEGORIES DROPDOWN
========================================= */

/* =========================================
   4...ALL CATEGORIES start
========================================= */

#colorlib-main-menu ul li.has-dropdown {
    position: relative;
  }
  
  
  /* Main dropdown button */
  
  #colorlib-main-menu ul li.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    cursor: pointer;
  }
  
  
  /* =========================================
     ARROW
  ========================================= */
  
  .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    margin-left: 12px;
  
    font-size: 18px;
    line-height: 1;
  
    transition: transform 0.25s ease;
  }
  
  
  /* =========================================
     DROPDOWN
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu {
  
    display: none;
  
    position: relative;
  
    width: 100%;
  
    max-height: 300px;
  
    margin: 8px 0 12px;
    padding: 6px 0;
  
    overflow-y: auto;
    overflow-x: hidden; 
    /* overflow-x: hidden;  */
  
    list-style: none;
  
    background: rgba(0, 0, 0, 0.35);
  
    border-left: 2px solid rgba(255, 255, 255, 0.15);
  
    box-sizing: border-box;
  
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.35) transparent;
  }
  
  
  /* =========================================
     SHOW DROPDOWN
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown.dropdown-open
  > .dropdown-menu {
    display: block;
  }
  
  
  /* =========================================
     WEBKIT SCROLLBAR
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu::-webkit-scrollbar {
    width: 5px;
  }
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu::-webkit-scrollbar-thumb {
  
    background: rgba(255, 255, 255, 0.35);
  
    border-radius: 10px;
  
    transition: background 0.25s ease;
  }
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.65);
  }
  
  
  /* =========================================
     DROPDOWN ITEMS
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu
  li {
    margin: 0;
    padding: 0;
  }
  
  
  /* =========================================
     DROPDOWN LINKS
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu
  li
  a {
  
    display: block;
  
    padding: 9px 15px 9px 25px;
  
    font-size: 14px;
  
    line-height: 1.4;
  
    color: rgba(255, 255, 255, 0.85);
  
    text-decoration: none;
  
    white-space: nowrap;
  
    transition:
      background 0.2s ease,
      color 0.2s ease,
      padding-left 0.2s ease;
  }
  
  
  /* =========================================
     HOVER
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown
  .dropdown-menu
  li
  a:hover {
  
    color: #fff;
  
    background: rgba(255, 255, 255, 0.10);
  
    padding-left: 30px;
  }
  
  
  /* =========================================
     ACTIVE DROPDOWN ARROW
  ========================================= */
  
  #colorlib-main-menu
  ul li.has-dropdown.dropdown-open
  .dropdown-arrow {
  
    transform: translateY(-1px);
  }
  
  
  /* =========================================
     MOBILE
  ========================================= */
  
  @media (max-width: 991.98px) {
  
    #colorlib-main-menu
    ul li.has-dropdown
    .dropdown-menu {
  
      max-height: 260px;
  
      margin-top: 6px;
  
      background: rgba(0, 0, 0, 0.30);
    }
  
    #colorlib-main-menu
    ul li.has-dropdown
    .dropdown-menu
    li
    a {
  
      padding: 10px 15px 10px 25px;
  
      font-size: 14px;
    }
  
  }

   /* display none in mobile view */

  @media (max-width: 767.98px) {
    .all-categories-menu {
      display: none !important;
    }
  } 

  /* =========================================
   4...ALL CATEGORIES ends
========================================= */

/* 5..carausal start */

/* =========================================
   CAROUSEL
========================================= */

.carousel-blog {
  position: relative;
  width: 100%;
}


/* =========================================
   OWL STAGE
========================================= */

.carousel-blog .owl-stage-outer {
  position: relative;
  z-index: 1;
}


/* =========================================
   IMAGE
========================================= */

.carousel-blog .item > .img {
  display: block;

  width: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  z-index: 1;
}


/* =========================================
   OWL NAVIGATION
   KEEP ABOVE IMAGE
========================================= */

.carousel-blog .owl-nav {
  position: absolute;

  top: 50%;
  left: 0;

  width: 100%;

  transform: translateY(-400%);

  display: flex !important;

  justify-content: space-between;
  align-items: center;

  pointer-events: none;

  margin: 0 !important;
  padding: 0 !important;

  z-index: 999 !important;
}


/* =========================================
   ARROW BUTTONS
========================================= */

.carousel-blog .owl-nav button.owl-prev,
.carousel-blog .owl-nav button.owl-next {

  position: relative;

  width: 42px;
  height: 42px;

  min-width: 42px;
  min-height: 42px;

  margin: 0 !important;
  padding: 0 !important;

  border: none !important;
  outline: none !important;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65) !important;

  color: #fff !important;

  display: flex !important;

  align-items: center;
  justify-content: center;

  pointer-events: auto;

  cursor: pointer;

  z-index: 1000 !important;

  opacity: 1 !important;

  visibility: visible !important;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


/* =========================================
   LEFT ARROW
========================================= */

.carousel-blog .owl-nav button.owl-prev {
  margin-left: 12px !important;
}


/* =========================================
   RIGHT ARROW
========================================= */

.carousel-blog .owl-nav button.owl-next {
  margin-right: 12px !important;
}


/* =========================================
   ARROW ICON
========================================= */

.carousel-blog .owl-nav button span {

  display: block !important;

  position: relative;

  font-size: 22px;

  line-height: 1;

  color: #fff !important;

  z-index: 1001;

  opacity: 1 !important;

  visibility: visible !important;
}


/* =========================================
   HOVER
========================================= */

.carousel-blog .owl-nav button.owl-prev:hover,
.carousel-blog .owl-nav button.owl-next:hover {

  background: rgba(0, 0, 0, 0.9) !important;

  transform: scale(1.08);
}


/* =========================================
   PREVENT IMAGE FROM COVERING NAV
========================================= */

.carousel-blog .owl-item,
.carousel-blog .owl-item .item {
  position: relative;
}


/* =========================================
   TEXT
========================================= */

.carousel-blog .item .text {
  position: relative;

  z-index: 2;

  /* background: #fff; */
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .carousel-blog .owl-nav {
    top: 50%;
  }

  .carousel-blog .owl-nav button.owl-prev,
  .carousel-blog .owl-nav button.owl-next {

    width: 36px;
    height: 36px;

    min-width: 36px;
    min-height: 36px;
  }

  .carousel-blog .owl-nav button.owl-prev {
    margin-left: 8px !important;
  }

  .carousel-blog .owl-nav button.owl-next {
    margin-right: 8px !important;
  }

  .carousel-blog .owl-nav button span {
    font-size: 18px;
  }

}


/* =========================================
   EXTRA SAFETY
   ========================================= */

.carousel-blog .owl-nav,
.carousel-blog .owl-nav button,
.carousel-blog .owl-nav button span {
  visibility: visible !important;
}

/* 5..carausal ends */

.carousel-blog-image {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blurred background */
.carousel-blog-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: 0.45;
}

/* Main image */
.carousel-blog-image-main {
  position: relative;
  z-index: 2;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  cursor: pointer;

  transition: transform 0.3s ease;
}

/* Attractive hover */
.carousel-blog-image:hover .carousel-blog-image-main {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 767px) {
  .carousel-blog-image {
    height: 280px;
  }

  .carousel-blog-image-main {
    height: 280px;
  }
}

.content-preview {
  position: relative;
  height: 45px;
  overflow: hidden;
  text-align: left !important;
}

.content-preview > div {
  margin: 0;
  text-align: left !important;
}

.content-preview p {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: left !important;
}

.content-previewn {
  position: relative;
  height: 35px;
  overflow: hidden;
  text-align: left !important;
}

.content-previewn > div {
  margin: 0;
  text-align: left !important;
}

.content-previewn p {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: left !important;
}

 /* ==========================================
   CATEGORY BADGE
   X = CENTER
   Y = BOTTOM
========================================== */

.category-badge-n {
  position: absolute;

  left: 50%;
  bottom: 20px;

  /* X center only */
  transform: translateX(-50%);

  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;

  min-width: 90px;

  background: rgba(255, 255, 255, 0.94);

  color: #222;

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 1px;

  text-transform: uppercase;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* ==========================================
   SMALL RED DOT
========================================== */

.category-badge-n::before {
  content: "";

  width: 5px;
  height: 5px;

  margin-right: 8px;

  border-radius: 50%;

  background: #e53935;

  box-shadow:
    0 0 8px rgba(229, 57, 53, 0.6);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


/* ==========================================
   DESKTOP HOVER
========================================== */

@media (hover: hover) and (pointer: fine) {

  .category-badge-n:hover {

    /* Keep X centered while moving slightly upward */
    transform:
      translateX(-50%)
      translateY(-5px)
      scale(1.03);

    background: #e53935 !important;

    color: #fff !important;

    border-color: #e53935 !important;

    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.35),
      0 0 0 4px rgba(229, 57, 53, 0.18);
  }


  .category-badge-n:hover::before {

    transform: scale(1.5);

    background: #fff;

    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.7);
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

  .carousel-blog-image {
    height: 250px;
  }

  .blog-entry {
    position: relative;
  }


  .category-badge-n {

    left: 50%;

    bottom: 15px;

    transform: translateX(-50%);

    padding: 9px 18px;

    min-width: 80px;

    font-size: 11px;

    letter-spacing: 0.8px;

    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.25);
  }

}


/* ==========================================
   MOBILE TOUCH
========================================== */

@media (hover: none) and (pointer: coarse) {

  .category-badge-n:active {

    transform:
      translateX(-50%)
      scale(0.96);

    background: #e53935 !important;

    color: #fff !important;

    border-color: #e53935 !important;
  }


  .category-badge-n:active::before {

    background: #fff;

    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.7);
  }

}

.category-badge-nn {
  position: absolute;
  left: 75%;
  bottom: 15px;
  transform: translateX(-50%);

  z-index: 20;

  padding: 7px 16px;

  background: rgba(20, 20, 20, 0.88);
  color: #fff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;

  border-radius: 2px;

  white-space: nowrap;

  transition: 0.25s ease;
}

.category-badge-nn:hover {
  background: #61c613;
  transform: translateX(-50%) translateY(-3px);
}

.category-badge-n3 {
  position: absolute;
  left: 75%;
  bottom: 15px;
  transform: translateX(-50%);

  z-index: 20;

  padding: 7px 16px;

  background: rgba(216, 13, 60, 0.88);
  color: #fff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;

  border-radius: 2px;

  white-space: nowrap;

  transition: 0.25s ease;
}

.category-badge-n3:hover {
  background: #61c613;
  transform: translateX(-50%) translateY(-3px);
}

.blog-entry {
  position: relative;
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
}

.blog-image-wrapper .img {
  display: block;
  width: 100%;
}

.category-badge-n2 {
  position: absolute;

  /* X = middle of image */
  left: 50%;

  /* Y = bottom of image */
  bottom: 15px;

  transform: translateX(-50%);

  z-index: 10;

  padding: 7px 16px;

  background: #fff;
  color: rgba(0, 0, 0, 0.85);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;

  text-transform: uppercase;
  white-space: nowrap;

  border-radius: 3px;

  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  transition: all 0.25s ease;
}

.category-badge-n2:hover {
  background: #a60e88;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.35);
}

.category-breadcrumb-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 28px 20px 24px;
}

.category-breadcrumb {
  margin: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;

  background: #fff;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;

  border-radius: 3px;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.category-home {
  color: #999;
  text-decoration: none;

  transition: color 0.25s ease;
}

.category-home:hover {
  color: #000;
}

.category-separator {
  margin: 0 12px;

  color: #ccc;
  font-weight: 400;
}

.category-current {
  color: #222;
  font-weight: 700;
}

/* =========================================
   COMMENT
========================================= */

.comment {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* =========================================
   COMMENT ITEM
========================================= */

.comment-item {
  display: flex;
  align-items: flex-start;

  width: 100%;

  /* Balanced image/text spacing */
  gap: 12px;

  margin-bottom: 24px;

  padding-bottom: 20px;

  border-bottom: 1px solid #eeeeee;
}


/* =========================================
   COMMENT AVATAR
========================================= */

.comment-avatar {
  flex: 0 0 78px;

  width: 78px;
  height: 78px;

  display: block;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 5px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* Small elegant border */
.comment-avatar::after {
  content: "";

  position: absolute;

  inset: 0;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 5px;

  pointer-events: none;
}


/* Image hover */

.comment-avatar:hover {
  transform: translateY(-2px);

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.14);
}


/* =========================================
   COMMENT CONTENT
========================================= */

.comment-content {
  flex: 1;

  min-width: 0;

  padding-top: 1px;
}


/* =========================================
   HEADER
========================================= */

.comment-header {
  margin-bottom: 7px;
}


/* =========================================
   NAME
========================================= */

.comment-name {
  margin: 0 0 3px;

  padding: 0;

  font-size: 16px;

  font-weight: 600;

  line-height: 1.3;

  color: #222;
}


/* =========================================
   META / DATE
========================================= */

.comment-meta {
  margin: 0;

  font-size: 11px;

  line-height: 1.4;

  color: #999;

  letter-spacing: 0.1px;
}


/* =========================================
   COMMENT TEXT
========================================= */

.comment-text {
  margin: 0 0 9px;

  padding: 0;

  font-size: 13px;

  line-height: 1.65;

  color: #666;
}


/* =========================================
   REPLY
========================================= */

.comment-reply {
  display: inline-flex;

  align-items: center;

  padding: 0;

  font-size: 10px;

  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.8px;

  text-transform: uppercase;

  color: #333;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.comment-reply:hover {
  color: #f2b01e;

  transform: translateX(2px);

  text-decoration: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .comment-item {
    gap: 10px;

    margin-bottom: 20px;

    padding-bottom: 16px;
  }

  .comment-avatar {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;
  }

  .comment-name {
    font-size: 14px;
  }

  .comment-meta {
    font-size: 10px;
  }

  .comment-text {
    font-size: 12px;

    line-height: 1.55;
  }

}

/* =========================================
   BREADCRUMB WRAPPER
========================================= */

.category-breadcrumb-wrapn {
  width: 100%;

  padding: 18px 20px 22px;

  margin: 0;
}


/* =========================================
   BREADCRUMB
========================================= */

.category-breadcrumbn {
  width: 100%;

  margin: 0;

  padding: 0;
}


/* =========================================
   BREADCRUMB ROW
========================================= */

.breadcrumb-line {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 7px;

  width: 100%;

  font-size: 14px;

  line-height: 1.5;

  color: #999;
}


/* =========================================
   HOME / CATEGORY
========================================= */

.breadcrumb-link {
  flex: 0 0 auto;

  color: #999;

  font-size: 14px;

  font-weight: 500;

  text-decoration: none;

  white-space: nowrap;

  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #f2b01e;

  text-decoration: none;
}


/* =========================================
   ARROW
========================================= */

.breadcrumb-arrow {
  flex: 0 0 auto;

  width: 16px;

  height: 16px;

  color: #aaa;
}


/* =========================================
   ARTICLE TITLE
========================================= */

.breadcrumb-title {
  flex: 1 1 400px;

  min-width: 0;

  max-width: 750px;

  color: #222;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.55;

  white-space: normal;

  overflow-wrap: anywhere;

  word-break: break-word;
}

/* =========================================
   ARTICLE IMAGE
========================================= */

.article-figure {
  margin: 0;

  padding: 0;

  width: 100%;
}


/* =========================================
   IMAGE CAPTION
========================================= */

.article-image-caption {
  margin-top: 9px;

  padding: 0 8px;

  text-align: center;

  font-size: 12px;

  line-height: 1.5;

  font-style: italic;

  color: #888;
}


/* =========================================
   ARTICLE EXCERPT
========================================= */

.article-excerpt {
  margin-top: 18px;

  padding: 0 4px;

  color: #555;

  font-size: 15px;

  line-height: 1.75;

  text-align: left;
}


/* =========================================
   AUTHOR BOX
========================================= */

.article-author-box {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-top: 24px;

  padding: 18px 0 20px;

  border-top: 1px solid #eeeeee;

  border-bottom: 1px solid #eeeeee;
}


/* =========================================
   AUTHOR AVATAR
========================================= */

.article-author-avatar {
  width: 48px;

  height: 48px;

  flex: 0 0 48px;

  border-radius: 50%;

  background: #e5e5e5;

  position: relative;

  overflow: hidden;
}


/* Optional avatar icon */

.article-author-avatar::before {
  content: "👤";

  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 21px;

  opacity: 0.55;
}


/* =========================================
   AUTHOR INFO
========================================= */

.article-author-info {
  min-width: 0;
}


/* =========================================
   AUTHOR NAME
========================================= */

.article-author-name {
  margin: 0;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.4;

  color: #222;
}


/* =========================================
   AUTHOR ROLE
========================================= */

.article-author-role {
  margin-top: 2px;

  font-size: 12px;

  line-height: 1.4;

  color: #999;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .article-image-caption {
    font-size: 11px;

    padding: 0 4px;
  }

  .article-excerpt {
    margin-top: 15px;

    font-size: 14px;

    line-height: 1.65;
  }

  .article-author-box {
    gap: 10px;

    margin-top: 20px;

    padding: 15px 0 17px;
  }

  .article-author-avatar {
    width: 42px;

    height: 42px;

    flex-basis: 42px;
  }

  .article-author-name {
    font-size: 14px;
  }

  .article-author-role {
    font-size: 11px;
  }
}

 /* ==========================================
   POSTER CARD
   ========================================== */

   .poster-card {
    position: relative !important;
  
    width: 100%;
    max-width: 300px;
  
    margin: 0 auto;
  
    overflow: hidden !important;
  }
  
  
  /* ==========================================
     POSTER IMAGE
     ========================================== */
  
  .poster-image {
    width: 100%;
  
    aspect-ratio: 300 / 600;
  
    object-fit: cover;
  
    display: block;
  
    transition: transform 0.25s ease;
  }
  
  .poster-card:hover .poster-image {
    transform: scale(1.01);
  }
  
  
  /* ==========================================
     DELETE BUTTON
     ========================================== */
  
  .poster-card .poster-delete {
    position: absolute !important;
  
    top: 15px !important;
    right: 15px !important;
  
    width: 42px !important;
    height: 42px !important;
  
    min-width: 42px !important;
    min-height: 42px !important;
  
    padding: 0 !important;
    margin: 0 !important;
  
    border: none !important;
    border-radius: 50% !important;
  
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  
    background: rgba(0, 0, 0, 0.80) !important;
  
    color: #fff !important;
  
    cursor: pointer !important;
  
    opacity: 0;
    visibility: hidden;
  
    transform: translateY(-8px);
  
    z-index: 9999 !important;
  
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease;
  }
  
  
  /* ==========================================
     SHOW TRASH ON POSTER HOVER
     ========================================== */
  
  .poster-card:hover .poster-delete {
    opacity: 1 !important;
  
    visibility: visible !important;
  
    transform: translateY(0) !important;
  }
  
  
  /* ==========================================
     TRASH BUTTON HOVER
     ========================================== */
  
  .poster-card .poster-delete:hover {
    background: #dc3545 !important;
  
    color: #fff !important;
  
    /* Keep button completely inside image */
    transform: translateY(0) !important;
  }
  
  
  /* ==========================================
     TRASH ICON
     ========================================== */
  
  .poster-card .poster-delete svg {
    width: 16px !important;
  
    height: 16px !important;
  
    display: block !important;
  
    color: #fff !important;
  
    fill: currentColor;
  }
  
  
  /* ==========================================
     MOBILE
     ========================================== */
  
  @media (max-width: 767.98px) {
  
    .poster-card .poster-delete {
      top: 10px !important;
  
      right: 10px !important;
  
      width: 36px !important;
  
      height: 36px !important;
  
      min-width: 36px !important;
  
      min-height: 36px !important;
    }
  
    .poster-card .poster-delete svg {
      width: 14px !important;
  
      height: 14px !important;
    }
  
  }
  
  .poster-cardn {
    position: relative;
    width: 100%;
    max-width: 728px;
    margin: 0 auto;
    overflow: visible !important;
  }
  
  .poster-imagen {
    width: 100%;
    aspect-ratio: 728 / 90;
    object-fit: cover;
    display: block;
  }
  
  /* Trash button */
  .poster-cardn .poster-deleten {
    position: absolute !important;
  
    top: 10px !important;
    right: 10px !important;
  
    width: 36px !important;
    height: 36px !important;
  
    padding: 0 !important;
    margin: 0 !important;
  
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  
    border: none !important;
    border-radius: 50% !important;
  
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
  
    opacity: 0;
    visibility: hidden;
  
    transform: translateY(-8px);
  
    cursor: pointer !important;
  
    z-index: 999999 !important;
  
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }
  
  /* Show on banner hover */
  .poster-cardn:hover .poster-deleten {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  
  /* Trash hover */
  .poster-cardn .poster-deleten:hover {
    background: #dc3545 !important;
    color: #fff !important;
    transform: scale(1.1) !important;
  }
  
  /* Make icon visible */
  .poster-cardn .poster-deleten svg {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    color: #fff !important;
    fill: currentColor !important;
  }