.news {
  background: #f0f2f5;
}
.news__content {
  padding: 50px 0px;
  padding-bottom: 148px;
  display: flex;
  flex-flow: column;
  gap: 64px;
}
.news__head {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
}
.news__title {
  max-width: 63%;
  width: 100%;
  font-family: Geist;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -2.8%;
  color: #001c36;
}
.news__title strong {
  font-weight: 400;
  color: #94a9b5;
}
.news__body {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(50%);
  opacity: 0;
  transition: 0.6s ease;
}
.news__body.visible {
  opacity: 1;
  transform: translateY(0);
}
.news__small-list {
  display: flex;
  flex-flow: row;
  gap: 32px;
  justify-content: space-between;
}
.news__small-item img {
  height: 230px;
}
.news__item {
  display: flex;
  flex-flow: column;
  gap: 16px;
  text-decoration: none;
  height: fit-content;
}
.news__date {
  font-family: Geist Mono;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -1%;
  vertical-align: middle;
  color: #607d8b;
}
.news__tilte {
  font-family: Geist;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.4%;
  color: #001c36;
}
.news__button {
  margin-top: 12px;
  border: 1px solid #94a9b5;
  border-radius: 30px;
  padding: 7px 18px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
	transition: 0.3s ease;
}

.news__button svg path {
	transition: 0.3s ease;
}

.news__item img {
	transition: 0.3s ease;
}

.news__item:hover .news__image-overlay {
	backdrop-filter: blur(2px);
}


.news__item:hover .news__button {
	background: #001C36;
}

.news__item:hover .news__button svg path {
	fill: #fff;
}
.news__image-container {
	position: relative;
	display: flex;
}

.news__image-overlay {
/* 	background: #00000026; */
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	transition: 0.3s ease;
}

@media (max-width: 1024px) {
  .news__content {
    padding: 48px 0;
    gap: 32px;
  }
  .news__head {
    flex-flow: column;
    align-items: flex-start;
	justify-content: space-between;
    gap: 8px;
  }
  .news__body {
    flex-flow: column;
    gap: 16px;
    transform: translateX(60%);
  }
  .news__small-list {
    flex-flow: column;
    gap: 48px;
  }
  .news__title {
    max-width: 100%;
	padding-top: 52px;
  }
  .news__big img {
    height: 250px;
  }
  .news__small-item {
    height: 100%;
  }
  .news__small-item img {
    height: 250px;
  }
}/*# sourceMappingURL=style.css.map */