.program_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.program_flex > a {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px;
	flex-basis: 48%;
	margin-bottom: 20px;
}

.image {
	margin-right: 20px;
}

.info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info > div:first-child {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 10px;
}

.info > div:not(:first-child) {
	font-size: 0.8em;
}

.card {
	display: flex;
	align-items: center;
	padding: 10px;
	max-width: 534px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #d2d2d2;
}

.card:hover {
	background-color: #f9f9f9;
}

.image img {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	object-fit: cover;
}

.program_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.program_flex .card {
	flex: 1 0 48%;
}

.program_flex .card:nth-child(odd) {
	margin-right: 0.5%;
}

.program_flex .card:nth-child(even) {
	margin-left: 0.5%;
}

.program_flex .card:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.program_flex .card:hover .image img {
	transform: scale(1.1);
}
.minilogo {
	width: 58px;
	height: 15px;
	margin-top: 10px;
}

@media screen and (max-width: 480px) {
	.program_flex {
		flex-direction: column;
	}
	
	.program_flex > a {
		flex-basis: 100%;
	}
	
	.image img {
		width: 100px;
		height: 100px;
	}

	.info > div:first-child {
		margin-bottom: 5px;
	}
	
}