:root {
	--main-color: #245988;
	--info-bubble: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
	-webkit-print-color-adjust: exact !important;
	color-adjust: exact !important;
	print-color-adjust: exact !important;
}

body {
	background: #111;
	color: #000;
	-webkit-font-smoothing: antialiased;
	margin: 0 auto;
	max-width: 1000px;
	overflow-x: hidden;
}

body,
input,
button {
	font-size: 1rem;
	font-family: "Roboto", sans-serif;
}

button {
	cursor: pointer;
}

main {
	background: #fff;
	width: 100%;
	min-height: 100vh;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-content: flex-start;
}

section.info {
	display: flex;
	flex-direction: column;
	width: fit-content;
	height: fit-content;
	background: #eee;
	background-image: url("assets/info-banner.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 5px 10px #11111122, inset 0 0 0 2px #fff;
}

section.info div.name h1 {
	font-family: "Quicksand", sans-serif;
	font-weight: 600;
	text-align: center;
	font-size: 1.5rem;
	z-index: 1;
	position: relative;
	padding-top: 2px;
	color: #fff;
}

section.info div.name p {
	max-width: 190px;
	margin: 18px auto 0;
	font-size: .8rem;
	background-color: var(--info-bubble);
	padding: 7px 12px;
	border-radius: 15px;
	box-shadow: 0 0 5px #11111166;
	position: relative;
}

section.info div.name p::before {
	display: block;
	content: '';
	background: var(--info-bubble);
	box-shadow: 0 -2px 2px #11111122;
	border-radius: 100%;
	width: 16px;
	height: 16px;
	position: absolute;
	top: -10px;
	left: 15px;
}

section.info div.name p::after {
	display: block;
	content: '';
	background: var(--info-bubble);
	box-shadow: 0 0 3px #11111144;
	border-radius: 100%;
	width: 8px;
	height: 8px;
	position: absolute;
	top: -18px;
	left: 32px;
}

section.info div.name p span {
	font-weight: 600;
}

section.info div.info-box div {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 15px;
}

section.info div.info-box a {
	text-decoration: none;
	color: #000;
}

section.info div.info-box i {
	color: var(--main-color);
}

section.listing {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

section.listing.sided {
	max-width: 665px;
	width: calc(100% - 325px);
}

section.listing p.title {
	font-family: "Quicksand", sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	text-decoration: underline;
	text-decoration-color: #ccc;
	text-underline-offset: 4px;
}

section.listing div {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	max-width: fit-content;
	width: 100%;
}

section.listing div p:first-child {
	font-family: "Quicksand", sans-serif;
	font-weight: 900;
	font-size: 1.2rem;
	color: var(--main-color);
	width: 100%;
}

section.listing div p.place {
	color: #666;
	font-size: .8rem;
}

section.listing div p.place i {
	padding-right: 3px;
}

section.listing div p.date {
	color: #666;
	font-size: .8rem;
	padding-left: 15px;
	font-weight: 500;
}

section.listing div p.details {
	width: 100%;
}


@media print {
	body {
		background-color: #fff;
	}

	main {
		padding: 0px;
	}
}

@media only screen and (max-width: 755px) {
	section.listing.sided, section.listing {
		width: 100%;
	}
	main {
		justify-content: center;
	}

	section.info {
		margin-bottom: 20px;
	}
}