/*
Theme Name: TechQor Ultra Lite Child Theme
Theme URI: https://yourwebsite.com
Description: Ultra lite, fast, AdSense friendly Genesis child theme.
Author: Krishna Sharma
Author URI: https://yourwebsite.com
Template: genesis
Version: 1.0.0
Text Domain: techqor-ultra-lite
*/

/* Base Reset */
html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	background: #ffffff;
	color: #111111;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 1.6rem;
	line-height: 1.7;
}

/* No border radius anywhere */
button,
input,
select,
textarea,
img,
a,
.site-container,
.widget,
.sidebar .widget,
.archive-pagination a,
.archive-pagination .active a {
	border-radius: 0;
}

/* Links */
a {
	color: #209cee;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #209cee;
	text-decoration: underline;
}

/* Images */
img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Container */
.site-inner,
.wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 16px;
	line-height: 1.3;
	color: #111111;
	font-weight: 700;
}

/* Paragraphs */
p {
	margin-top: 0;
	margin-bottom: 16px;
}

/* Basic content spacing */
.content,
.sidebar {
	margin-top: 24px;
	margin-bottom: 24px;
}

/* Widget style */
.widget {
	margin-bottom: 24px;
	padding: 0;
	border: none;
	background: transparent;
}

/* Menu links */
.genesis-nav-menu a {
	color: #111111;
	padding: 14px 16px;
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu .current-menu-item > a {
	color: #209cee;
	text-decoration: none;
}

/* Entry titles */
.entry-title a {
	color: #111111;
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus {
	color: #209cee;
	text-decoration: none;
}

/* Footer */
.site-footer {
	border-top: 1px solid #e8e8e8;
	padding: 20px 0;
	font-size: 1.4rem;
	color: #555555;
}

/* Responsive */
@media (min-width: 768px) {
	.site-inner,
	.wrap {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (min-width: 1024px) {
	.site-inner,
	.wrap {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* Header */
.site-header {
	background: #ffffff;
	border-bottom: 1px solid #e8e8e8;
}

.site-header .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	padding-bottom: 16px;
}

/* Site branding */
.title-area {
	margin: 0;
	padding: 0;
}

.site-title {
	margin: 0;
	font-size: 2.8rem;
	line-height: 1.2;
	font-weight: 700;
}

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

.site-title a:hover,
.site-title a:focus {
	color: #209cee;
	text-decoration: none;
}

.site-description {
	margin: 6px 0 0;
	color: #555555;
	font-size: 1.4rem;
	line-height: 1.5;
}

/* Header widget area */
.header-widget-area {
	margin-top: 12px;
	width: 100%;
}

.header-widget-area .widget {
	margin-bottom: 0;
}

/* Navigation */
.nav-primary {
	background: #ffffff;
	border-bottom: 1px solid #e8e8e8;
}

.nav-primary .wrap {
	padding-top: 0;
	padding-bottom: 0;
}

.genesis-nav-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.genesis-nav-menu li {
	list-style: none;
}

.genesis-nav-menu a {
	display: block;
	padding: 14px 16px;
}

/* Mobile header adjustments */
@media (max-width: 767px) {
	.site-header .wrap {
		display: block;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.title-area {
		margin-bottom: 10px;
	}

	.site-title {
		font-size: 2.4rem;
	}

	.header-widget-area {
		margin-top: 8px;
	}
}