.conf-edition {
	display: grid;
	grid-template-areas:
		"logo title"
		"logo conf-joint-conference"
		"logo chairmanship"
		"logo date"
		"logo actes";
	grid-template-columns: 10rem 1fr;
	grid-template-rows: auto min-content min-content 1fr;
	margin: 2rem 0;
	text-wrap: pretty;

	.conf-logo {
		grid-area: logo;
		justify-self: end;
		align-self: start;
		padding: 0.2rem 0;
		box-sizing: border-box;

		a {
			text-decoration: none;
			border: none;
		}

		img {
			max-width: 100%;
			max-height: 5rem;
		}
	}

	.conf-title {
		grid-area: title;
	}

	.conf-chairmanship {
		grid-area: chairmanship;
	}

	.conf-date {
		grid-area: date;
	}

	.conf-actes {
		grid-area: actes;

		.conf-acte::after {
			content: "·";
		}

		.conf-acte:last-child::after {
			content: "";
		}
	}

	.conf-title,
	.conf-chairmanship,
	.conf-date,
	.conf-joint-conference,
	.conf-actes {
		margin: 0.3rem 0 0 1rem;
		text-align: start;
	}

	.conf-name {
		text-transform: capitalize;
	}

	.conf-title {
		text-wrap: balance;
		margin-top: 0;
	}

	.conf-chair {
		white-space: nowrap;
	}
}

.conf-edition.next-conf-edition {
	margin-top: 0;
}