/* Layout */

.aurea-layout {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.aurea-main {
	flex: 1;
	min-width: 0;
}

.aurea-sidebar {
	width: 300px;
}

/* Header */

.aurea-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
}

.aurea-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

/* Branding */

.aurea-site-branding a {
	font-size: 1.25rem;
	font-weight: 600;
	text-decoration: none;
	color: inherit;
}

/* Navigation */

.aurea-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.aurea-menu li {
	position: relative;
}

.aurea-menu a {
	text-decoration: none;
	color: inherit;
}

.aurea-menu a:hover,
.aurea-menu a:focus {
	text-decoration: underline;
}

/* Submenu */

.aurea-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	background: #fff;
	border: 1px solid #eee;
	min-width: 180px;
	z-index: 10;
}

.aurea-menu .sub-menu li {
	padding: 0;
}

.aurea-menu .sub-menu a {
	display: block;
	padding: 8px 16px;
}

.aurea-menu li:hover > .sub-menu,
.aurea-menu li:focus-within > .sub-menu {
	display: block;
}

/* Active menu item */

.aurea-menu .current-menu-item > a,
.aurea-menu .current_page_item > a,
.aurea-menu .current-menu-parent > a {
	font-weight: 600;
	text-decoration: underline;
}

/* Content */

.aurea-content {
	overflow-wrap: break-word;
	word-wrap: break-word;
}

/* Full width layouts */

.page-template-page-canvas .aurea-content,
.page-template-page-fullwidth .aurea-content {
	max-width: none;
	padding: 0;
}

/* Articles */

article {
	margin-bottom: 80px;
}

.entry-title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 20px;
}
.entry-title a {
	color: #111;
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
	text-decoration: underline;
}
.entry-summary,
.entry-content {
	line-height: 1.7;
}

.entry-summary {
	max-width: 800px;
}

/* Featured images */

.post-thumbnail {
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 4px;
}

.post-thumbnail img {
	display: block;
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	height: auto;
}

/* Read more button */

.aurea-read-more {
	display: inline-block;
	padding: 12px 24px;
	background: #111;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	margin-top: 10px;
	transition: opacity 0.2s ease;
}

.aurea-read-more:hover,
.aurea-read-more:focus {
	color: #fff;
	text-decoration: none;
	opacity: 0.9;
}

/* Widgets */

.widget {
	margin-bottom: 30px;
	padding: 20px;
	border: 1px solid #eee;
	background: #fff;
}

.widget-title {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

/* Comments */

.comments-area {
	margin-top: 40px;
}

.comment-list {
	padding-left: 20px;
}

/* Footer */

.aurea-footer {
	margin-top: 40px;
	padding: 20px;
	border-top: 1px solid #eee;
	text-align: center;
	font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 768px) {

	.aurea-layout {
		flex-direction: column;
	}

	.aurea-sidebar {
		width: 100%;
	}

	.aurea-header-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.aurea-menu {
		flex-wrap: wrap;
	}
}