/*
Theme Name: Radiate Child
Description: Child theme for the Radiate WordPress theme.
Author: Adam Mirkovich
Template: radiate
Version: 1.0.0
*/

/* Full-width layout for standard WordPress pages */
body.page #primary {
	float: none;
	width: 100%;
}

/* Main page container */
body.page #primary .hentry {
	max-width: 1080px;
	margin: 0 auto 48px;
	padding: 56px 72px;
	box-sizing: border-box;
}

/* Base page typography */
body.page .entry-content {
	font-size: 17px;
	line-height: 1.65;
	color: #3f3f3f;
}

/* Paragraph spacing */
body.page .entry-content p {
	margin-bottom: 18px;
}

/* Major section headings */
body.page .entry-content h2 {
	font-size: 28px;
	line-height: 1.25;
	margin-top: 42px;
	margin-bottom: 18px;
	padding-top: 0;
	font-weight: 500;
}

/* Subsection headings */
body.page .entry-content h3 {
	font-size: 19px;
	line-height: 1.35;
	margin-top: 24px;
	margin-bottom: 5px;
	font-weight: 500;
}

/* Keep subsection copy attached to its heading */
body.page .entry-content h3 + p {
	margin-top: 0;
}

/* Dividers */
body.page .wp-block-separator {
	height: 0;
	margin-top: 40px;
	margin-bottom: 30px;
	border: 0;
	border-top: 1px solid #b8b8b8;
	background: none;
}

/* Lists */
body.page .entry-content ul,
body.page .entry-content ol {
	padding-left: 28px;
	margin-bottom: 22px;
}

body.page .entry-content li {
	margin-bottom: 6px;
}

/* Keep images aligned cleanly */
body.page .entry-content img {
	height: auto;
}

/* Responsive spacing */
@media screen and (max-width: 768px) {
	body.page #primary .hentry {
		padding: 32px 24px;
	}

	body.page .entry-content {
		font-size: 16px;
	}

	body.page .entry-content h2 {
		font-size: 24px;
	}

	body.page .entry-content h3 {
		font-size: 18px;
	}
}