.news-ten-block:has(.block-desc) .block-top {
  margin-bottom: 15px;
}
.news-ten-block .block-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.news-ten-block .block-tag {
  background: var(--bg-primary-second);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.news-ten-block .block-tag__icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-ten-block .block-tag__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-primary-main);
}
.news-ten-block .block-desc {
  margin-bottom: 40px;
}
.news-ten-block h2.block-title {
  margin-bottom: 0;
}
.news-ten-block .news {
  overflow: hidden;
}
.news-ten-block .news-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: var(--bg-primary-second);
}
.news-ten-block .news-card__image-holder {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.news-ten-block .news-card .hover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.news-ten-block .news-card .hover-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colors-main);
}
.news-ten-block .news-card__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
  aspect-ratio: 36/27;
  display: block;
}
.news-ten-block .news-card__date {
  display: block;
  width: fit-content;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--text-primary-main);
  padding: 20px 20px 10px;
  border-bottom: 1px solid var(--bg-primary-third);
  margin-bottom: 10px;
}
.news-ten-block .news-card__title {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-weight: 800;
  font-size: 20px;
  line-height: 110%;
  color: var(--bg-alt-main);
  padding: 0 20px 20px;
}
.news-ten-block a.news-card:hover .hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .news-ten-block .block-top {
    gap: 10px 20px;
  }
  .news-ten-block .news-card__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .news-ten-block .block-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .news-ten-block .block-desc {
    margin-bottom: 25px;
  }
  .news-ten-block .news-card__title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .news-ten-block .block-top {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=block.css.map */