/*
Theme Name: Renovate
Author: Renovate
Description: A simple, lightweight WordPress theme for blog posts and static pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: renovate
*/

:root {
	--renovate-background: #ffffff;
	--renovate-surface: #ffffff;
	--renovate-soft: #f6f7f8;
	--renovate-text: #33383d;
	--renovate-muted: #747b82;
	--renovate-border: #e3e6e8;
	--renovate-link: #4f7f86;
	--renovate-link-hover: #365f65;
	--renovate-shadow: 0 1px 2px rgba(31, 41, 51, 0.05);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--renovate-background);
	color: var(--renovate-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

a {
	color: var(--renovate-link);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--renovate-link-hover);
}

img {
	height: auto;
	max-width: 100%;
}

.site-header,
.site-footer {
	background: var(--renovate-surface);
	border-color: var(--renovate-border);
	border-style: solid;
}

.site-header {
	border-width: 0 0 1px;
}

.site-footer {
	border-width: 1px 0 0;
	color: var(--renovate-muted);
	font-size: 0.9rem;
	margin-top: 1rem;
}

.site-header-inner,
.site-footer-inner,
.site-content {
	margin: 0 auto;
	max-width: 1180px;
	padding: 1.5rem;
}

.site-content {
	display: grid;
	gap: 2.25rem;
	grid-template-columns: minmax(0, 1fr) 300px;
	padding-bottom: 3rem;
	padding-top: 2rem;
}

.site-main {
	min-width: 0;
}

.site-main-narrow {
	margin: 0 auto;
	max-width: 760px;
	padding: 1.5rem;
}

.site-branding {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	justify-content: space-between;
}

.site-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}

.site-title a {
	color: inherit;
	text-decoration: none;
}

.site-description {
	color: var(--renovate-muted);
	margin: 0.25rem 0 0;
}

.main-navigation {
	align-self: center;
}

.main-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	border-radius: 4px;
	color: inherit;
	display: inline-block;
	padding: 0.25rem 0;
	text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
	color: var(--renovate-link);
}

.post,
.page {
	margin: 0 0 3rem;
}

.entry-title {
	color: #2f3439;
	font-size: 2.35rem;
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-meta {
	color: var(--renovate-muted);
	font-size: 0.85rem;
	margin: 0 0 0.75rem;
}

.post-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card {
	background: var(--renovate-surface);
	border: 1px solid var(--renovate-border);
	border-radius: 4px;
	box-shadow: var(--renovate-shadow);
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
}

.post-card-image {
	aspect-ratio: 16 / 10;
	background: var(--renovate-soft);
	display: block;
	overflow: hidden;
}

.post-card-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-card-body {
	padding: 1.15rem;
}

.post-card .entry-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.post-card .entry-summary {
	color: var(--renovate-muted);
	font-size: 0.96rem;
	margin-bottom: 1rem;
}

.read-more {
	font-size: 0.95rem;
	font-weight: 600;
}

.entry-featured-image {
	margin-bottom: 1.5rem;
}

.site-sidebar {
	min-width: 0;
}

.widget {
	background: var(--renovate-surface);
	border: 1px solid var(--renovate-border);
	border-radius: 4px;
	box-shadow: var(--renovate-shadow);
	margin-bottom: 1.25rem;
	padding: 1rem;
}

.widget-title {
	color: #2f3439;
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget li {
	border-bottom: 1px solid var(--renovate-border);
	padding: 0.5rem 0;
}

.widget li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.widget select {
	background: #ffffff;
	border: 1px solid var(--renovate-border);
	border-radius: 4px;
	color: var(--renovate-text);
	font: inherit;
	max-width: 100%;
	padding: 0.5rem;
	width: 100%;
}

.widget p {
	margin-top: 0;
}

.widget p:last-child {
	margin-bottom: 0;
}

.entry-content > *:first-child,
.entry-summary > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child,
.entry-summary > *:last-child {
	margin-bottom: 0;
}

.post-navigation,
.posts-navigation {
	border-top: 1px solid var(--renovate-border);
	padding-top: 1.5rem;
}

.post-navigation .nav-links,
.posts-navigation .nav-links {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.comments-area {
	background: var(--renovate-surface);
	border: 1px solid var(--renovate-border);
	border-radius: 4px;
	box-shadow: var(--renovate-shadow);
	margin: 2rem 0;
	padding: 1.25rem;
}

.comments-title,
.comment-reply-title {
	color: #2f3439;
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 1rem;
}

.comment-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	margin: 1rem 0 0 1.5rem;
	padding: 0;
}

.comment {
	border-top: 1px solid var(--renovate-border);
	padding: 1rem 0;
}

.comment:first-child {
	border-top: 0;
	padding-top: 0;
}

.comment-author,
.comment-metadata {
	color: var(--renovate-muted);
	font-size: 0.9rem;
}

.comment-author {
	color: #2f3439;
	font-weight: 600;
}

.comment-author .avatar {
	border-radius: 4px;
	float: left;
	margin: 0.2rem 0.75rem 0.5rem 0;
}

.comment-content {
	clear: both;
	margin-top: 0.75rem;
}

.reply {
	font-size: 0.9rem;
	font-weight: 600;
}

.comment-form p {
	margin: 0 0 1rem;
}

.comment-form label {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.comment-form input,
.comment-form textarea {
	background: #ffffff;
	border: 1px solid var(--renovate-border);
	border-radius: 4px;
	color: var(--renovate-text);
	font: inherit;
	padding: 0.65rem 0.75rem;
	width: 100%;
}

.comment-form textarea {
	min-height: 180px;
	resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--renovate-link);
	outline: 2px solid rgba(79, 127, 134, 0.15);
}

.comment-form .required {
	color: var(--renovate-link-hover);
}

.comment-form .submit {
	background: var(--renovate-soft);
	border: 1px solid var(--renovate-border);
	border-radius: 4px;
	color: var(--renovate-text);
	cursor: pointer;
	font-weight: 600;
	padding: 0.65rem 1rem;
	width: auto;
}

.comment-form .submit:hover,
.comment-form .submit:focus {
	background: #edf1f2;
	border-color: #d4dcde;
}

.wp-block-image,
.wp-block-gallery,
.wp-block-quote {
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}

.alignwide,
.alignfull {
	margin-left: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.alignwide > *,
.alignfull > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (max-width: 800px) {
	.site-content {
		grid-template-columns: 1fr;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.site-sidebar {
		border-left: 0;
		border-top: 1px solid var(--renovate-border);
		padding-left: 0;
		padding-top: 1.5rem;
	}

	.entry-title {
		font-size: 2rem;
	}
}
