/*
Theme Name: TechQor Ultra Lite Theme
Theme URI: https://techqor.in
Description: Ultra lightweight Genesis child theme built for speed, SEO and AdSense friendliness.
Author: Krishna Sharma
Author URI: https://techqor.in
Template: genesis
Version: 1.0
Text Domain: techqor-ultra-lite
*/

/* =====================================================
   TechQor Ultra Lite Theme
   Genesis Child Theme
===================================================== */



/* =====================================================
   CSS RESET
===================================================== */

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

html,
body {
	margin: 0;
	padding: 0;
}

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

figure {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

button,
input,
textarea,
select {
	font: inherit;
}

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

	--tq-primary: #209cee;
	--tq-heading: #111111;
	--tq-text: #222222;
	--tq-meta: #666666;

	--tq-border: #e5e5e5;
	--tq-bg: #ffffff;
	--tq-light-bg: #f7f7f7;

	--tq-radius-sm: 4px;
	--tq-radius-md: 6px;
	--tq-radius-lg: 10px;

}

/* =====================================================
   BODY
===================================================== */

body {

	font-family:
	-apple-system,
	BlinkMacSystemFont,
	"Segoe UI",
	Roboto,
	Helvetica,
	Arial,
	sans-serif;

	font-size: 16px;
	line-height: 1.7;

	color: var(--tq-text);
	background: var(--tq-bg);

}

/* =====================================================
   SITE CONTAINER
===================================================== */

.site-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* =====================================================
   LINKS
===================================================== */

a {
	color: var(--tq-primary);
	text-decoration: none;
}

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

/* =====================================================
   HEADINGS
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

	color: var(--tq-heading);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 16px;

}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 18px;
}

/* =====================================================
   CONTENT
===================================================== */

p {
	margin: 0 0 20px;
}

.entry-content img {
	border-radius: var(--tq-radius-md);
	margin: 25px 0;
}

/* =====================================================
   BUTTONS
===================================================== */

button,
.button,
.wp-block-button__link {

	background: var(--tq-primary);
	color: #ffffff;

	padding: 10px 18px;
	border-radius: var(--tq-radius-sm);

	font-weight: 600;
	border: none;
	cursor: pointer;
}

button:hover,
.button:hover,
.wp-block-button__link:hover {

	background: #1785c7;

}

/* =====================================================
   IMAGES
===================================================== */

img {
	border-radius: var(--tq-radius-md);
}

/* =====================================================
   UTILITIES
===================================================== */

.tq-section {
	margin-bottom: 40px;
}

.tq-center {
	text-align: center;
}

