/* section */
.page-content--section {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 40px;
}

/* section -- shell + canvas */
.shell .page-content--section,
.canvas .page-content--section {
	padding-top: 0;
	padding-bottom: 0;
}

/* section inner */
.page-content--section--inner {
	max-width: 1260px;
	padding: 0 10px;
	margin: 0 auto;
}

/* section inner -- shell + canvas */
.shell .page-content--section--inner,
.canvas .page-content--section--inner {
	max-width: none;
	padding: 0;
	margin: 0;
}

/* larger than 479px */
@media only screen and (min-width: 480px) {

	/* section inner */
	.page-content--section--inner {
		max-width: 1280px;
		padding: 0 20px;
	}

}

/* section header */
.page-content--section-header {
	text-align: center;
	margin-bottom: 20px;
}

/* section footer */
.page-content--section-footer {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

/* button */
.page-content--button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 200px;
	height: auto;
	min-height: 40px;
	padding: 0 20px;
	border: 1px solid;
	border-radius: var(--border-radius-pill);
	box-shadow: none;
	font-size: var(--body-font-size);
	line-height: var(--body-line-height);
	font-weight: 600;
	text-transform: none;
	text-decoration: none;
	transform: none;
	transition: none;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
	border-color: rgba(0, 0, 0, 0.18);
	background-color: rgba(0, 0, 0, 0);
	color: var(--text-color-primary);
	opacity: 1;
}

/* button focus visible */
.page-content--button:focus-visible {
	outline: 2px solid rgba(0, 0, 0, 0.18);
	outline-offset: 2px;
}

/* button hover */
.page-content--button:hover {
	border-color: rgba(0, 0, 0, 0.18);
	background-color: rgba(0, 0, 0, 0.06);
	text-decoration: none;
	color: var(--text-color-primary);
}

/* button active */
.page-content--button:active {
	border-color: rgba(0, 0, 0, 0.18);
	background-color: rgba(0, 0, 0, 0.12);
	text-decoration: none;
	color: var(--text-color-primary);
}
