.home-hero-container {
	display: flex;
	height: 560px;
	padding: 120px 0;
	justify-content: center;
	align-items: center;
	font-size: 48px;
	font-weight: 600;
	line-height: 58px;
	letter-spacing: -0.02em;
}

.home-artworks-container {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 8px;
	row-gap: 16px;
}

.home-artworks-container .artwork-tile {
	grid-column: span 2; /* 2 per row by default */
	max-width: none;
}

.home-text-tile {
	grid-column: span 4; /* 1 per row by default */
	max-width: none;
	align-self: start;
}

.home-text-tile-container {
	height: 292px;
	background-color: var(--color-background-2-default);
	padding: 16px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	font: var(--font-l-regular);
}

.home-text-tile-container h2 {
	font-size: 34px;
	line-height: 46px;
}

.home-discover-artworks-button {
	text-align: center;
	padding: 80px 0 120px 0;
}

.step-number {
	font: var(--font-l-bold);
	color: var(--color-text-2-default);
	text-transform: uppercase;
}

.step-description {
	font: var(--font-m-regular);
	max-width: 400px;
}

.home-join-network-container {
	display: flex;
	flex-direction: column;
	padding-top: 120px;
	align-items: flex-start;
	gap: 40px;
}

.join-network-description {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 40px;
}

.join-network-description h2 {
	padding-bottom: 8px;
}

.home-artist-tile {
	display: flex;
}

.home-artist-divider {
	display: initial;
}

.home-artist-tile img {
	width: 64px;
	height: 64px;
}

.home-artist-tile:active img {
	transform: scale(0.975);
}

.home-artist-tile h6 {
	display: flex;
	align-items: center;
	padding: 8px 40px 8px 16px;
	font: var(--font-l-bold);
	letter-spacing: unset;
}

@media screen and (min-width: 600px) {
	.home-artworks-container {
		column-gap: 16px;
	}
}

@media screen and (min-width: 860px) {
	.home-hero-container {
		height: 632px;
		padding: 40px 0;
		font-size: 72px;
		line-height: 86px;
		text-align: center;
	}

	.home-artworks-container {
		grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
	}

	.home-artworks-container .artwork-tile {
		grid-column: span 1; /* 4 per row by default */
		max-width: none;
	}

	.home-text-tile {
		grid-column: span 1; /* 4 per row by default - regular card aspect */
		max-width: none;
	}

	.home-text-tile-container {
		aspect-ratio: 3 / 4;
		height: unset;
	}

	.home-discover-artworks-button {
		padding: 80px 0 160px 0;
	}

	.home-join-network-container {
		flex-direction: row;
		padding-top: 160px;
		gap: 80px;
	}

	.home-artist-divider {
		display: none;
	}
}