.content-subpage {
    max-width: 1300px;
	margin: auto;
}

h3 {
	color: var(--white);
	font-size: large;
}

ul.badges {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 20px;
	list-style-type: none;
}

ul.badges > li {
	display: inline-block;
	padding: 8px 16px;
	border: 2px solid var(--purple);
	border-radius: 8px;
}

/**********************************************************
 * Intro and Socials
 **********************************************************/

.intro {
	display: grid;
	grid-template-columns: 2fr 1fr;
}

.intro__left {
	border-top: var(--border-width) solid var(--border-colour);
	padding-right: 5px;
}

.intro__left__title {
	color: var(--white)
}

.intro__right {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0 20px 0 20px;
	border: var(--border-width) solid var(--border-colour);
	border-right: var(--border-width) solid var(--border-colour);
	border-left: none;
	border-bottom: none;
}

.intro__right__image {
	width: 16rem;
	height: 16rem;
}

.intro__drum:hover {
	cursor: url('assets/drum/drumstickbonk.svg'), default;
}

@media screen and (min-width: 1025px) {
	.about-footer {
		border: none;
	}
	.about-footer-link-home {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.content-subpage {
		align-items: center;
		text-align: center;
	}

	.intro {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(2, min-content);
	}
	.intro__left {
		grid-row: 2;
		padding: 0;
		border: none;
	}
	.intro__left__title {
		font-size: 2rem;
	}
	.intro__right {
		grid-row: 1;
		border: none;
	}

	.about-footer {
		border: none;
		display: block;
	}
	.about-footer-link-home {
		display: none;
	}

	h3 {
		padding-top: 1.5rem;
	}

	ul {
		list-style-type: none;
		padding: 0;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	ul > li {
		padding-bottom: 1rem;
	}
}
