.cm-concert-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 16px;
	justify-items: stretch;
}

.cm-concert-card {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 640px;
	border: 1px solid #e0e0e0;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #fff;
	cursor: pointer;
}

.cm-concert-card:hover,
.cm-concert-card:focus,
.cm-concert-card:hover *,
.cm-concert-card:focus * {
	text-decoration: none;
}

.cm-concert-card:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

img.cm-concert-card__image {
	display: block;
	flex: 0 0 auto;
	align-self: stretch;
	width: auto;
	max-width: 200px;
	height: 200px;
	object-fit: cover;
	object-position: center;
	background: #f4f4f4;
}

div.cm-concert-card__image {
	display: block;
	flex: 0 0 160px;
	width: 160px;
	max-width: 200px;
	min-height: 200px;
	background: #f4f4f4;
}

.cm-concert-card__body {
	width: 100%;
	max-width: 420px;
	flex: 1 1 auto;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cm-concert-card__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	color: #111;
}

.cm-concert-card__details {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cm-concert-card__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 12px 18px;
}

.cm-concert-card__meta {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #444;
}

.cm-concert-card__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	color: #c33434;
}

.cm-concert-card__meta-icon svg {
	width: 20px;
	height: 20px;
	display: block;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.cm-concert-card__meta-icon svg circle:last-child {
	fill: currentColor;
	stroke: none;
}

.cm-concert-card__meta-text {
	min-width: 0;
}

.cm-concert-card__categories {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.cm-concert-card__category {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border: 1px solid #c33434;
	border-radius: 5px;
	background: transparent;
	color: #c33434;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.2;
}
