.bizouk-events {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	align-items: stretch;
}

.bizouk-event {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	min-width: 0;
}

.bizouk-event__image {
	display: block;
	aspect-ratio: 1.44 / 1;
	overflow: hidden;
	background: #f2f2f2;
	flex: 0 0 auto;
}

.bizouk-event__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bizouk-event__body {
	padding: 20px 18px 22px;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.bizouk-event__type {
	display: block;
	margin-bottom: 12px;
	color: #f2303d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bizouk-event__title {
	margin: 0 0 16px;
	color: #1e1e1e;
	font-size: 19px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.bizouk-event__title a {
	color: inherit;
	text-decoration: none;
}

.bizouk-event__title a:hover,
.bizouk-event__title a:focus {
	text-decoration: underline;
}

.bizouk-event__date,
.bizouk-event__location {
	margin: 0 0 14px;
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}

.bizouk-event__price {
	margin: auto 0 0;
	padding-top: 18px;
	color: #17345d;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}

.bizouk-events__message {
	margin: 0;
	color: #666;
	font-size: 16px;
	line-height: 1.6;
}

@media (min-width: 1500px) {
	.bizouk-events {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) and (max-width: 1499px) {
	.bizouk-events {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (min-width: 820px) and (max-width: 1179px) {
	.bizouk-events {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 560px) and (max-width: 819px) {
	.bizouk-events {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.bizouk-events {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.bizouk-event__body {
		padding: 18px 16px 20px;
	}

	.bizouk-event__title {
		font-size: 18px;
	}
}
