/* ---- FRONT-END ---- */
#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper .brx-latest-news-border-top-left-container {
	display: flex;
	flex-direction: row;
	flex-basis: 50%;
	flex: 0 0 50%;
	height: 100px;
	border-radius: 0 100px 0 0;
}

#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper .brx-latest-news-border-top-right-container {
	display: flex;
	flex-direction: row;
	flex-basis: 50%;
	flex: 0 0 50%;
	height: 100px;
	border-radius: 100px 0 0 0;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 15px;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper {
	display: flex;
	flex-direction: column;
	flex-basis: calc( 33.33334% - 12px );
	flex: 0 0 calc( 33.33334% - 12px );
	padding: 20px 20px 65px 20px;
	margin-bottom: 35px;
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover {
	background-color: #F7F3F1;
	border-radius: 30px; /* 15px; */
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-image-container {
	display: flex;
	flex-direction: row;
	flex-basis: 100%;
	flex: 0 0 100%;
	aspect-ratio: 100/70;
	margin-bottom: 50px;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-image-container .brx-latest-news-single-item-image {
	height: 100%;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 15px;
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover .brx-latest-news-single-item-image-container .brx-latest-news-single-item-image {
	transform: scale(1.02);
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container {
	
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-date {
	font-weight: 600;
	font-style: normal;
	font-size: var(--font-size-24);
	color: #AA94F8;	
	margin-bottom: 15px;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container h3.brx-latest-news-single-item-content-title {
	font-family: 'Degular Semibold', sans-serif;
	/* font-weight: 600; */
	font-style: normal;
	font-size: var(--font-size-32);
	line-height: 1.2;
	color: #1E1E4B;
	margin-bottom: 1em;
	-ms-word-break: break-all;
	-ms-word-wrap: break-all;
	-webkit-word-break: break-word;
	-webkit-word-wrap: break-word;
	word-break: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-content {
	font-size: var(--font-size-24);
	line-height: 1.2;
	color: #1E1E4B;	
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-content p:last-of-type {
	margin-bottom: 30px;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-read-more-text {
	position: relative;
	display: inline;
	font-family: 'Degular Medium', sans-serif;
	font-style: normal;
	font-size: var(--font-size-24);
	color: #AA94F8;	
	margin-bottom: 15px;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-read-more-text::before {
	content: '';
	width: 0;
	height: 2px;
	background-color: #AA94F8;
	position: absolute;
	bottom: -.25rem;
	left: 0;
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-read-more-text::before {
	width: 100%;
	transition: all .3s ease-in-out;
}



/* ---- PAGINATION ---- */
#brx-latest-news-wrapper .brx-latest-news-container #pagination-container {
	font-size: var(--font-size-32);
	color: #A7A7A7;
	width: 100%;
	text-align: center;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a {
	color: #A7A7A7;
	margin: 0 10px;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.active {
	color: #1E1E4B;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link {
	position: relative;
	font-size: 0;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link::before {
	position: absolute;
	content: '';
	top: -60px;
	left: 15px;
	height: 100px;
	width: 100px;
	background-color: #FFFFFF;
	border-radius: 50px;
	background-image: url('images/Tetra - Bricks - Blue arrow right.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	box-shadow: 0 0 50px rgba( 0, 0, 0, .05);
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link:hover::before {
	transform: scale(1.2);
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link {
	position: relative;
	font-size: 0;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link::before {
	position: absolute;
	content: '';
	top: -60px;
	right: 15px;
	height: 100px;
	width: 100px;
	background-color: #FFFFFF;
	border-radius: 50px;
	background-image: url('images/Tetra - Bricks - Blue arrow left.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	box-shadow: 0 0 50px rgba( 0, 0, 0, .05);
	transition: all .3s ease-in-out;
}

#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link:hover::before {
	transform: scale(1.2);
	transition: all .3s ease-in-out;
}






@media( max-width: 767px ) {
				#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper {
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
				}

	#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper .brx-latest-news-border-top-left-container {
		display: flex;
		flex-direction: row;
		flex-basis: 50%;
		flex: 0 0 50%;
		height: 50px;
		border-radius: 0 50px 0 0;
	}

	#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper .brx-latest-news-border-top-right-container {
		display: flex;
		flex-direction: row;
		flex-basis: 50%;
		flex: 0 0 50%;
		height: 50px;
		border-radius: 50px 0 0 0;
	}
	
	#brx-latest-news-wrapper .brx-latest-news-container {
		padding: 35px 0!important;
	}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper {
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
					column-gap: 15px;
				}

	#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper {
		display: flex;
		flex-direction: column;
		flex-basis: 100%;
		flex: 0 0 100%;
		padding: 20px 20px 65px 20px;
		margin-bottom: 15px;
		transition: all .3s ease-in-out;
	}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover {
					background-color: #F7F3F1;
					border-radius: 15px;
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-image-container {
					display: flex;
					flex-direction: row;
					flex-basis: 100%;
					flex: 0 0 100%;
					aspect-ratio: 100/70;
					margin-bottom: 50px;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-image-container .brx-latest-news-single-item-image {
					height: 100%;
					width: 100%;
					background-position: center;
					background-repeat: no-repeat;
					background-size: cover;
					border-radius: 15px;
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover .brx-latest-news-single-item-image-container .brx-latest-news-single-item-image {
					transform: scale(1.02);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container {

				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-date {
					font-weight: 600;
					font-style: normal;
					font-size: var(--font-size-24);
					color: #AA94F8;	
					margin-bottom: 15px;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container h3.brx-latest-news-single-item-content-title {
					font-weight: 600;
					font-style: normal;
					font-size: var(--font-size-32);
					line-height: 1.2;
					color: #1E1E4B;
					margin-bottom: 1em;
					-ms-word-break: break-all;
					-ms-word-wrap: break-all;
					-webkit-word-break: break-word;
					-webkit-word-wrap: break-word;
					word-break: break-word;
					word-wrap: break-word;
					-webkit-hyphens: auto;
					-moz-hyphens: auto;
					hyphens: auto;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-content {
					font-size: var(--font-size-24);
					line-height: 1.2;
					color: #1E1E4B;	
				}


				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container {
					font-size: var(--font-size-32);
					color: #A7A7A7;
					width: 100%;
					text-align: center;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a {
					color: #A7A7A7;
					margin: 0 10px;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.active {
					color: #1E1E4B;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link {
					position: relative;
					font-size: 0;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link::before {
					position: absolute;
					content: '';
					top: -60px;
					left: 15px;
					height: 100px;
					width: 100px;
					background-color: #FFFFFF;
					border-radius: 50px;
					background-image: url('images/Tetra - Bricks - Blue arrow right.svg');
					background-position: center;
					background-repeat: no-repeat;
					background-size: 30px auto;
					box-shadow: 0 0 50px rgba( 0, 0, 0, .05);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link:hover::before {
					transform: scale(1.2);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link {
					position: relative;
					font-size: 0;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link::before {
					position: absolute;
					content: '';
					top: -60px;
					right: 15px;
					height: 100px;
					width: 100px;
					background-color: #FFFFFF;
					border-radius: 50px;
					background-image: url('images/Tetra - Bricks - Blue arrow left.svg');
					background-position: center;
					background-repeat: no-repeat;
					background-size: 30px auto;
					box-shadow: 0 0 50px rgba( 0, 0, 0, .05);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link:hover::before {
					transform: scale(1.2);
					transition: all .3s ease-in-out;
				}
}
				

@media only screen
  and (min-width: 768px) 
  and (max-width: 1200px) 
  and (orientation: portrait) {
	  				#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper {
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
				}

	#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper .brx-latest-news-border-top-left-container {
		display: flex;
		flex-direction: row;
		flex-basis: 50%;
		flex: 0 0 50%;
		height: 50px;
		border-radius: 0 50px 0 0;
	}

	#brx-latest-news-wrapper #brx-latest-news-border-top-wrapper .brx-latest-news-border-top-right-container {
		display: flex;
		flex-direction: row;
		flex-basis: 50%;
		flex: 0 0 50%;
		height: 50px;
		border-radius: 50px 0 0 0;
	}
	
	#brx-latest-news-wrapper .brx-latest-news-container {
		padding: 35px 0!important;
	}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper {
					display: flex;
					flex-direction: row;
					flex-wrap: wrap;
					column-gap: 15px;
				}

	#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper {
		display: flex;
		flex-direction: column;
		flex-basis: calc( 50% - 8px );
		flex: 0 0 calc( 50% - 8px );
		padding: 20px 20px 65px 20px;
		margin-bottom: 15px;
		transition: all .3s ease-in-out;
	}
	  
	#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:last-of-type {
		display: none!important;
	  }

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover {
					background-color: #F7F3F1;
					border-radius: 15px;
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-image-container {
					display: flex;
					flex-direction: row;
					flex-basis: 100%;
					flex: 0 0 100%;
					aspect-ratio: 100/70;
					margin-bottom: 50px;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-image-container .brx-latest-news-single-item-image {
					height: 100%;
					width: 100%;
					background-position: center;
					background-repeat: no-repeat;
					background-size: cover;
					border-radius: 15px;
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper:hover .brx-latest-news-single-item-image-container .brx-latest-news-single-item-image {
					transform: scale(1.02);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container {

				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-date {
					font-weight: 600;
					font-style: normal;
					font-size: var(--font-size-24);
					color: #AA94F8;	
					margin-bottom: 15px;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container h3.brx-latest-news-single-item-content-title {
					font-weight: 600;
					font-style: normal;
					font-size: var(--font-size-32);
					line-height: 1.2;
					color: #1E1E4B;
					margin-bottom: 1em;
					-ms-word-break: break-all;
					-ms-word-wrap: break-all;
					-webkit-word-break: break-word;
					-webkit-word-wrap: break-word;
					word-break: break-word;
					word-wrap: break-word;
					-webkit-hyphens: auto;
					-moz-hyphens: auto;
					hyphens: auto;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #brx-latest-news-all-items-wrapper #brx-latest-news-single-item-wrapper .brx-latest-news-single-item-content-container .brx-latest-news-single-item-content-content {
					font-size: var(--font-size-24);
					line-height: 1.2;
					color: #1E1E4B;	
				}


				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container {
					font-size: var(--font-size-32);
					color: #A7A7A7;
					width: 100%;
					text-align: center;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a {
					color: #A7A7A7;
					margin: 0 10px;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.active {
					color: #1E1E4B;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link {
					position: relative;
					font-size: 0;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link::before {
					position: absolute;
					content: '';
					top: -60px;
					left: 15px;
					height: 100px;
					width: 100px;
					background-color: #FFFFFF;
					border-radius: 50px;
					background-image: url('images/Tetra - Bricks - Blue arrow right.svg');
					background-position: center;
					background-repeat: no-repeat;
					background-size: 30px auto;
					box-shadow: 0 0 50px rgba( 0, 0, 0, .05);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.next-link:hover::before {
					transform: scale(1.2);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link {
					position: relative;
					font-size: 0;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link::before {
					position: absolute;
					content: '';
					top: -60px;
					right: 15px;
					height: 100px;
					width: 100px;
					background-color: #FFFFFF;
					border-radius: 50px;
					background-image: url('images/Tetra - Bricks - Blue arrow left.svg');
					background-position: center;
					background-repeat: no-repeat;
					background-size: 30px auto;
					box-shadow: 0 0 50px rgba( 0, 0, 0, .05);
					transition: all .3s ease-in-out;
				}

				#brx-latest-news-wrapper .brx-latest-news-container #pagination-container a.prev-link:hover::before {
					transform: scale(1.2);
					transition: all .3s ease-in-out;
				}
	  
}



@media only screen
  and (min-width: 768px) 
  and (max-width: 1200px) 
  and (orientation: landscape) {
}