/*

	ITEM > NEWS

*/
.reports-item {
	width: 233px;
	margin: 0 auto;
	display: block;
	position: relative;
}
	.reports-item .picture-wrapper {
		width: 100%;
		height: 300px;
		overflow: hidden;
		position: relative;
		z-index: 5;
	}
		.reports-item .picture-wrapper .libelle {
			position: absolute;
			top: 5px;
			left: 5px;
			z-index: 10;
		}
		.reports-item .picture-wrapper .picture {
			width: 100%;
			height: 300px;
			background-size: cover !important;
		}
	.reports-item .infos {
		padding: 10px;
		height: 85px;
		background-color: #000000;
		position: relative;
		font-family: 'Gibson-SemiBold';
		line-height: 1.1;
		color: #ffcb05;
		text-transform: uppercase;
	}
		.reports-item .infos .date {
			padding-bottom: 4px;
			font-size: 11px;
		}
		.reports-item .infos .title {
			font-size: 12px;
		}
		.reports-item .more {
			font-family: 'Gibson-Regular';
			font-size: 11px;
			font-weight: normal;
			text-transform: none;
			position: absolute;
			bottom: 10px;
			right: 10px;
			color: #FFF;
			text-decoration: underline;
		}

/* 	HOVER 	*/
.reports-item:hover .picture-wrapper .picture {
  	-moz-transform: scale(1.2);
  	-webkit-transform: scale(1.2);
  	transform: scale(1.2);	
}
.reports-item:hover .infos {
}

