:root {
  --header-height:104px;
  --header-height-sm:67px;
}

.blog-list {
  position: relative;
}
@media screen and (max-width: 575.98px) {
  .blog-list {
    overflow: visible;
  }
}
.blog-list-slider__scrollbar {
  height: 2px;
  background-color: var(--secondary-bg);
  margin-top: 65px;
  margin-bottom: 2px;
}
@media screen and (max-width: 991.98px) {
  .blog-list-slider__scrollbar {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767.98px) {
  .blog-list-slider__scrollbar {
    margin-top: 47px;
  }
}
.blog-list-slider__scrollbar .swiper-scrollbar-drag {
  background: var(--text-color);
  height: 4px !important;
  top: -1px;
  cursor: pointer;
}
@media (hover: hover) {
  .blog-list__card:hover img {
    transform: scale(1.05) !important;
  }
}
.blog-list__card--label {
  margin-bottom: 8px;
}
.blog-list__card--title {
  margin-bottom: 1.71875rem;
  line-height: 1.5555555556em;
}
.blog-list__card--image {
  margin-bottom: 2.375rem;
  overflow: hidden;
  padding-top: calc((202/240) * 100%);
  position: relative;
}
.blog-list__card--image img,
.blog-list__card--image video,
.blog-list__card--image iframe {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
}
@media screen and (min-width: 1200px) {
  .blog-list__card--image {
    cursor: none;
  }
}
.blog-list__card--image img {
  transition: 0.54s ease transform;
}
.blog-list__card .btn {
  --gl-btn-font-size: 14px;
}

.blog-cursor {
  position: fixed;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-bg);
  z-index: 9;
  pointer-events: none;
  transition: none !important;
}
@media screen and (hover: none) and (max-width: 1199.98px) {
  .blog-cursor {
    display: none;
  }
}
.blog-cursor__arrow .arrow-handle {
  width: 16px;
  height: 1px;
  display: block;
  background-color: var(--text-color);
}
.blog-cursor__arrow .arrow-head {
  width: 8px;
  height: 1px;
  display: block;
  margin-left: auto;
  background-color: var(--text-color);
  transform-origin: left;
}
.blog-cursor__arrow .arrow-head.top {
  transform: rotate(-90deg) translateX(-2px);
}
.blog-cursor__arrow .arrow-head.bottom {
  transform: rotate(90deg) translateX(-2px);
}