.shows-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#main #shows-future {
	margin-bottom: 100px;
}

.show {
	display: flex;
	align-items: center;
	gap: 0 30px;
	background-color: var(--dark-blue);
	padding: 4px 9px;
	border-radius: 4px;
}

.show > div:not(:first-child):not(:last-child) {
	line-height: 1.6rem;
}

.date {
	text-align: center;
	font-size: 1rem;
	line-height: 1.6rem;
}

.date span {
	display: block;
	font-family: caviardreams-bold;
	font-size: 1.5rem;
}

.venue {
	width: 21%;
}

.geo {
	width: 14%;
}

.band {
	flex: 1;
}

.time {
	
}

.venue-url {
	white-space: nowrap;
	width: 10rem;
	text-align: right;
}

/* ===== MEDIA QUERIES ===== */

@media screen and (max-width: 1180px) {
	.shows-wrap {
		flex-wrap: wrap;
		flex-direction: row;
	}
	
	.show {
		display: block;
		width: calc(50% - 20px);
		align-items: start;
		padding-bottom: 11px;
	}
	
	.show > div {
		width: 100%;
		text-align: center;
	}
	
	.geo {
		margin-bottom: 10px;
	}
	
	.band span {
		display: block;
		margin-bottom: 10px;
	}
	
	.date {
		margin-bottom: 10px;
	}
	
	.venue-url a.button,
	body.is-mobile .venue-url a.button {
		margin-top: 10px;
	}
}

@media screen and (max-width: 700px) {
	h1,
	h2 {
		text-align: center;
	}
	
	.shows-wrap {
		display: block;
	}
	
	.show {
		display: block;
		width: auto;
		margin-bottom: 20px;
	}
}