.row-insight{
	 display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:24px;
	border: 0;
	box-shadow: none;
}

.swiper{
	width: 100%;
}

.col-insight{
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	/*gap: 10px;*/
	border: 0 !important;
	box-shadow: none !important;
	
}

.content-insight-element{
	align-items: flex-start;
	display: flex;
	gap: 25px;
	flex-direction: column;
	/*background: #222222 !important;*/
	box-shadow: none !important;
	border: 0;
}

.col-insight img{
	width: 100%;
	height: 356px;
	border-radius: 5px;
}
.col-insight:hover{
	color: var(--gray);
}
.col-insight h3, .col-insight h5{
	color: #FFF !important;
	font-family: 'Aeonik' !important;
}

.col-insight p{
	color: var(--gray) !important;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  
}

.btn-insight{
	color: #FFF;
	font-weight: bold;
	display: flex;
	transition: 1s;
}

.btn-insight:hover{
	color: #00BB7D;
}

.btn-insight::after{
	content: '';
	margin-left: 5px;
	width: 24px;
    height: 24px; 
    background: url('/wp-content/uploads/2024/03/arrow-g2r.png') no-repeat center center;
    background-size: contain;
	transition: 1s;
}

.btn-insight:hover::after {
    transform: translateX(20px); 
	color: #00BB7D;
}

.container-label-insight .insight-title{
	display: flex;
	gap: 11px;
	align-items: center;
}
.container-label-insight{
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 950px){
	.row-insight{
	 display: grid;
	 grid-template-columns: 1fr;
	}
	.col-insight h3, .col-insight h5{
		font-size: 20px !important;
		line-height: 22px !important;
	}
}
	