/*
Theme Name: TechQor Ultra Lite Theme
Theme URI: https://techqor.in
Description: Ultra lightweight Genesis child theme (SEO + AdSense friendly, responsive).
Author: Krishna Sharma
Author URI: https://techqor.in
Version: 1.0.0
Template: genesis
Text Domain: techqor-ultra-lite
License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ======================================================
   Ultra Lite Base (keep tiny)
====================================================== */

:root{
  --tq-max: 1100px;
  --tq-gap: 16px;
  --tq-text: #111;
  --tq-muted: #666;
  --tq-bg: #fff;
  --tq-border: rgba(0,0,0,.10);
  --tq-link: #209cee;
}

html{
  scroll-behavior: smooth; /* smooth scrolling (no JS) */
}

body{
  margin:0;
  color: var(--tq-text);
  background: var(--tq-bg);
  line-height:1.65;
  -webkit-text-size-adjust:100%;
  text-rendering: optimizeLegibility;
}

a{ color: var(--tq-link); text-decoration: none; }
a:hover{ text-decoration: underline; }

.site-container{
  overflow-x:hidden;
}

.wrap,
.content-sidebar-wrap{
  max-width: var(--tq-max);
  margin: 0 auto;
  padding-left: var(--tq-gap);
  padding-right: var(--tq-gap);
}

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

/* Basic spacing */
.entry, .page .entry, .single .entry{
  padding: 16px 0;
}

.entry-title{
  margin: 0 0 10px;
}

.entry-content p{
  margin: 0 0 12px;
}

/* AdSense friendly: keep content clear */
.entry-content > *{
  max-width: 100%;
}

/* Small screens */
@media (max-width: 767px){
  :root{ --tq-gap: 14px; }
  .entry-title{ font-size: 1.35rem; }
}















