body {
/*
  margin: 0;
  padding: 0;
*/
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
}

.list_4_container {
	border: 1px solid #ccc;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 900px;
	margin: 20px auto;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.list_4_left-section {
	display: flex;
	align-items: center;
	flex: 1 1 60%;
	min-width: 300px;
}

.list_4_image{
	display: flex;
	max-width: 120px;
	justify-content: center;
}
.list_4_image img{
	display: flex;
	max-width: 120px;
/*	max-height: 60px;*/
	justify-content: center;
}

.list_4_event{
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 5px;
}

.list_4_details {
	display: flex;
	flex-direction: column;
	width: 350px !important;
}

.list_4_date {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
	margin: 0px 15px 5px 15px;
	width: 100px;
}

.list_4_date_to{
	background-color: var(--green-primary);
	color: white;
	border: none;
	text-align: center;
	padding: 0px 25px 0px 25px;
	font-size: 0.75em;
	border-radius: 10px;
}

.list_4_location {
  color: #333;
  margin-bottom: 5px;
}

.list_4_featuring {
	color: #666;
	font-size: 0.9em;
}

.list_4_right-section {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
  max-width: 150px;
}

.list_4_right-section a {
  background-color: var(--green-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.list_4_right-section a:hover {
  background-color: var(--green-secondary);
}

@media (max-width: 600px) {
	.list_4_container {
		flex-direction: column;
		text-align: center;
	}

	.list_4_left-section {
		flex-direction: column;
		align-items: center;
		margin-bottom: 15px;
	}

	.list_4_left-section img {
		margin-bottom: 10px;
	}

	.list_4_right-section {
		justify-content: center;
	}
}
