/* .section[data-bg-img="true"] {
background-repeat: no-repeat; 
background-size: cover; 
background-position: center;
content-visibility: auto; 
} */
.header-container:has(+ .body-wrapper .changelog-hero-section ) {
	border-bottom: 1px solid var(--neutral-5, #4C4D4F);
}

.changelog-hero-section {
	padding-top: 79.75px;
	background-color: #d3d3d3;
	background-image: 
		url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/01_Backgrounds/Changelog-bg.webp"),
		linear-gradient(0deg, #010203 0%, #010203 100%);
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
	padding-bottom: 0;
	overflow: hidden;
	border-bottom: 1px solid var(--neutral-5,#4c4d4f);
}

.clh-layout-flex {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-top: 40px;
	position: relative;
	padding-bottom: 20px;
}

.clh-grid-rive {
	position: absolute;
	inset: 0 auto auto 50%;
	width: 100vw;
	height: 100%;
	z-index: 0; /* behind content */
	pointer-events: none;
	transform: translateX(-50%);
}


.clh-grid-decor {
	width: 100vw;
	height: calc(100% - 73px);
	position: absolute;
	content: '';
	inset: 53px auto auto -24px;
	background-image: url(https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/changelog-hero-grid-mobile.svg);
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
}

.clh-tr-rocket,
.clh-tr-galaxy {
	display: none;
}



.clh-copy-flex {
	width: 100%;
	max-width: 588px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 1;
	margin-top: -20px;
}

.clh-heading {
	color: var(--white, #FFF);
	font-size: 104px;
	font-style: normal;
	line-height: 100%;
	text-transform: uppercase;
  min-height: 104px;
	display: inline-block;
	white-space: pre-wrap;
	align-items: center;
	gap: 0.1ch; /* small gap between text and cursor */

	/* Fade in */
	opacity: 0;
	/*   transition: opacity 0.3s ease; */

	/*   white-space: nowrap; */
}

/* typed text */
.clh-heading .typed-text {
	min-width: 1ch; /* prevents collapse when empty */
	display: flex;
}

/* blinking underscore cursor */
.clh-heading .cursor {
	display: inline-block;
	width: 0.6ch;
	animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

.clh-subheading {
	color: var(--Text-Body, #F3F4F6);
	font-size: var(--Typography-Font-Size-Responsive-Text-LG, 18px);
	line-height: 170%; /* 30.6px */
	margin-top: -10px;
}

.clh-featured-flex {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 1;
}

.clh-featured-post {
	width: 100%;
	/* 	height: auto; */
	/*   padding: 1px; */
	/* 	background-color: #07F; */
	background: unset;
	border-radius: 8px;
	border: 1px solid #07F;
	position: relative;
	cursor: pointer;
	padding: 0;
	/* 	overflow: hidden; */
}

.clh-featured-post.active {
	height: 100%;
}


.clh-featured-post:focus-visible {
	outline: auto;
}

.clhfp-hover-decoration {
	display: none;
}



.clhfp-inner-flex {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
	border-radius: 8px;
	background: transparent;
	transition: background .3s ease;
}

.clh-featured-post.active .clhfp-inner-flex {
	border-radius: 8px;
	background: rgba(0, 44, 111, 0.50);
}

.clhfp-bg-layer {
	position: absolute;
	content: '';
	inset: 0;
	border-radius: 8px;
	background: rgba(0, 44, 111, 0.50);
	z-index: 3;
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}

.clh-featured-post:not(.active) .clhfp-bg-layer {
	opacity: 1;
}

.clhfp-blur-layer {
	position: absolute;
	content: '';
	inset: 0;
	border-radius: 8px;
	backdrop-filter: blur(6px);
	z-index: 1;
	pointer-events: none;
}

.clh-fp-timer {
	position: absolute;
	content: '';
	width: calc(50% - 10px);
	height: 1px;
	background-color: var(--neutral-5, #4C4D4F);
	pointer-events: none;
}

.clh-fp-timer.tl {
	inset: -1px auto auto 10px;
}

.clh-fp-timer.tr {
	inset: -1px 10px auto auto;
}

.clh-fp-timer.bl {
	inset: auto auto -1px 10px;
}

.clh-fp-timer.br {
	inset: auto 10px -1px auto;
}

@keyframes timer-fill {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.clh-fp-timer::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: #07F;
	transform: scaleX(0);
}

/* When card is active, start animation */
/* .clh-featured-post.active .clh-fp-timer::before {
animation: timer-fill 10s linear forwards;
} */

/* Stop animation when parent has timer-stopped */
/* .clh-featured-flex.timer-stopped .clh-fp-timer::before {
animation-play-state: paused !important;
} */

/* .clh-fp-timer.animate::before {
animation: timer-fill 15s linear forwards;
} */

/* .clh-featured-flex.active .clh-fp-timer.animate::before {
	animation: timer-fill 15s linear forwards;
} */


/* Top-left: fill left → right */
.clh-fp-timer.tl::before {
	transform-origin: left;
}

/* Top-right: fill right → left */
.clh-fp-timer.tr::before {
	transform-origin: right;
}

/* Bottom-left: fill left → right */
.clh-fp-timer.bl::before {
	transform-origin: left;
}

/* Bottom-right: fill right → left */
.clh-fp-timer.br::before {
	transform-origin: right;
}

/* When card is active, animate fill */
.clh-featured-post.active .clh-fp-timer.animate::before {
	transform: scaleX(1);
	transition: transform 15s linear;
animation: timer-fill 15s linear forwards;
	
}

/* .clh-featured-flex:not(.user-engaged) .clh-featured-post.active .clh-fp-timer::before {
	transform: scaleX(1);
	transition: transform 15s linear;
}

/* .clh-featured-flex:not(.user-engaged) .clh-featured-post.active .clh-fp-timer::before {
	transform: scaleX(1);
	transition: transform 15s linear;
}

.clh-featured-flex.user-engaged .clh-featured-post.active .clh-fp-timer::before {
	transform: scaleX(1);
	transition: transform 0s linear;
} */




.clhfp-detail-flex {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	text-align: left;
	z-index: 4;
}

.clh-fp-date {
	color: var(--neutral-3, #DADBE1);
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.clh-fp-title {
	color: var(--white, #FFF);
	font-size: 32px;
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
	transition: font-size .3s ease;
}

.clh-featured-container {
	display: flex;
	width: 100%;	
	position: relative;
	border-radius: 8px;
	/* 	aspect-ratio: 16/9; */
	/* 	padding: 29px 24px; */
	z-index: 2;
	overflow: hidden;
}

.clh-featured-post:not(.active) .clh-featured-container {
	position: absolute;
	content: '';
	inset: 0;
	width: 100%;
	height: 100%;
	/* 	z-index: 1; */
}

/* .clh-featured-post:not(.active) .clhfp-inner-flex::before {
position: absolute;
content: '';
inset: 0;
width: 100%;
height: 100%;
background: rgba(0, 44, 111, 0.50);
}
*/

.clh-featured-post.active .clh-featured-container {
/* 	background: url(https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/changelog-featured-asset-grid.webp) 50%/cover repeat, var(--neutral-2, #F3F4F6);
	background-size: 396px 396px; */
/* 	border-radius: 7.552px; */
	border: 1.027px solid var(--Colors-Primary-Electric-Blue, #07F);
/* 	padding: 29px 24px; */
}

.clh-fp-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 1;
	transition: opacity .3s ease;
}

.clh-featured-post:not(.active) .clh-fp-image {
	position: absolute;
	content: '';
	inset: 0;
	object-fit: cover;
	border-radius: 8px;
	opacity: .5;
}


.clh-badge-flex{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}

.clh-fp-badge {
	color: var(--Colors-Primary-Electric-Blue-Lite, #DAF2FF);
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 6px 8px;
	border-radius: 4px;
	background: var(--Colors-Extended-Navy, #002C6F);
}

.clh-post-link {
	gap: 4px;
	white-space: nowrap;
}

.clhfp-bottom-flex {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	z-index: 4;
}





.clh-bl-decoration {
	position: absolute;
	content: '';
	inset: auto auto -95px -148px;
	width: 276px;
	height: 158.12px;
	background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/molecule.svg");
	background-size: cover;
	background-repeat: no-repeat;
	transform: rotate(-27.096deg);
}



@media screen and (min-width: 768px) {
	.clh-layout-flex {
		padding-inline: 20px;
		border-left: 1px solid var(--neutral-5,#4c4d4f);
		border-right: 1px solid var(--neutral-5,#4c4d4f);
		overflow: hidden;
	}
	.clh-grid-rive {
	inset: 0;
	width: 100%;
	height: 100%;
		transform: unset;
}

	.clh-grid-decor {
		background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/changelog-hero-grid-tablet.svg");
		width: 100%;
		height: calc(100% - 18.01px);
		top: 8.97px;
		left: 0;
	}

	.clh-tr-rocket {
		display: block;
	}

	.clh-copy-flex {
		max-width: 558px;
		padding-right: 20px;
	}
	.clh-heading {
		font-size: 112px;
		min-height: 112px;
	}

	.clh-featured-post.active .clh-featured-container {
		border-radius: 7.552px;
/* 		padding: 38px 40px; */
	}

	.clhfp-bottom-flex {
		flex-direction: row;
		justify-content: space-between;
	}


	.clh-tr-rocket {
		position: absolute;
		content: '';
		inset: 19px auto auto 606px;
		width: 429.03px;
		height: 136.27px;
		background-image: url('https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/changelog-hero-rocket.svg');
		background-size: cover;
		background-repeat: no-repeat;
		/* 	transform: rotate(-27.096deg); */
	}
}

@media screen and (min-width: 992px) {
	.changelog-container{
		max-width: 830px;
	}

	.clhfp-hover-decoration {
		display: block;
		position: absolute;
		content: '';
		width: 20px;
		height: 20px;
		pointer-events: none;
		opacity: 0;
		z-index: -1;
		background-size: cover;
		transition: filter .2s ease, inset .2s ease, opacity .1s ease;
		/*   filter: drop-shadow(0 0 4px #8BE000) drop-shadow(-2px 2px 0 rgba(26, 143, 37, 0.50)) drop-shadow(0 4px 4px rgba(139, 224, 0, 0.50)); */
	}

	.clhfp-hover-decoration.top-left {
		inset: 0px auto auto 1px;
		background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/clh-card-tl-decor-x2.png");
	}

	.clhfp-hover-decoration.top-right {
		inset: 0px 2px auto auto;
		background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/clh-card-tr-decor-x2.png");

		/* 		transform: rotateY(-180deg); */
	}

	.clhfp-hover-decoration.bottom-right {
		inset: auto 2px 0 auto;
		background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/clh-card-br-decor-x2.png");

		/* 		transform: rotate(180deg); */
	}

	.clhfp-hover-decoration.bottom-left {
		inset: auto auto -2px 3px;
		background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/clh-card-bl-decor-x2.png");

		/* 		transform: rotate(-90deg);	 */
	}

	.clh-featured-post:hover .clhfp-hover-decoration {
		opacity: 1;
		/* 	filter: drop-shadow(0 0 4px #8BE000) drop-shadow(-2px 2px 0 rgba(26, 143, 37, 0.50)) drop-shadow(0 4px 4px rgba(139, 224, 0, 0.50)); */
		filter: drop-shadow(0 0 4px #8BE000);
	}


	.clh-featured-post:hover .clhfp-hover-decoration.top-left {
		/*   inset: -22px auto auto -18px; */
		inset: -10px auto auto -10px;
	}

	.clh-featured-post:hover .clhfp-hover-decoration.top-right {
		/*   inset: -22px -18px auto auto; */
		inset: -10px -10px auto auto;

	}
	.clh-featured-post:hover .clhfp-hover-decoration.bottom-right {
		/*   inset: auto -20px -10px auto; */
		inset: auto -10px -10px auto;

	}

	.clh-featured-post:hover .clhfp-hover-decoration.bottom-left {
		/*   inset: auto auto -14px -14px; */
		inset: auto auto -10px -10px;

	}
}




@media screen and (min-width: 1200px) {
	.changelog-container{
		max-width: 1170px;
	}
	
	.clh-layout-flex {
	  gap: 40px;	
	}
	.clh-tr-galaxy {
		display: block;
	}
	.clh-heading {
		font-size: 120px;
		min-height: 120px;
	}

	.clh-grid-decor {
		background-image: url("https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/changelog-hero-grid-desktop.svg");
		height: 100%;
		top: 0;
	}

	.clh-tr-galaxy {
		position: absolute;
		content: '';
		inset: 46px -142px auto auto;
		width: 269.44px;
		height: 167.44px;
		background-image: url('https://www.varonis.com/hubfs/2024%20Website%20Redesign/Decorations/changelog-galaxy-decoration.svg');
		background-size: cover;
		background-repeat: no-repeat;
		transform: rotate(42.339deg);

	}

	.clh-featured-flex {
		flex-direction: row;
	}

	.clh-featured-post {
		transition: max-width .3s ease;
	}

	.clh-featured-post.active {
		width: 100%;
		max-width: 648px;
	}


	.clh-featured-post:not(.active) {
		width: 100%;
		max-width: 221px;
	}

	.clhfp-inner-flex {
		height: 100%;
		justify-content: space-between;
		min-height: 579px;
	}


	.clh-fp-title {
		font-size: 24px;
		line-height: 120%;
	}

	.clh-featured-post.active .clh-fp-title {
		font-size: var(--Typography-Font-Size-Display-MD, 32px);
		line-height: 120%; /* 38.4px */
	}

	.clh-post-link {
		opacity: 0;
		visibility: hidden;
		margin-right: -127px;
		transition: opacity .3s ease, margin .3s ease;
	}

	.clh-featured-post.active	.clh-post-link {
		opacity: 1;
		visibility: visible;
		margin-right: 0;
		white-space: nowrap
	}
}








