/* =====================
GLOBAL BORDER RADIUS SYSTEM
===================== */

:root{
  --techqor-radius: 0px;
}

@media (max-width:1024px){

  :root{
    --techqor-radius:10px;
  }

}

.techqor-default-thumb{
	width:100%;
	height:auto;
	display:block;
	object-fit:cover;
}

/* containers */

.techqor-page-hero,
.techqor-post,
.techqor-card,
.techqor-tool-card,
.front-widget,
.widget,
.sidebar .widget,
.entry,
.entry-content,
.techqor-ad{
  overflow:hidden;
}

/* images */

.techqor-thumb img,
.wp-post-image,
.entry img,
.techqor-post img{
  border-radius:var(--techqor-radius);
}

/* buttons */

.techqor-btn-primary,
.techqor-btn-outline,
.techqor-btn-glass{
  border-radius:var(--techqor-radius);
}

/* inputs */

input,
textarea,
select{
  border-radius:var(--techqor-radius);
}

/* ============================== SEARCH PAGE ============================== */
.techqor-search-main{padding:50px 0;}
.techqor-search-header{margin-bottom:35px;}
.search-title{font-size:30px;font-weight:700;}
.search-title span{color:var(--techqor-primary-hover);}
.search-count{color:#777;margin-top:6px;}

/* ============================== SEARCH LIST ============================== */
.techqor-search-list{display:flex;flex-direction:column;gap:22px;}
.techqor-search-item{border-bottom:1px solid #eee;padding-bottom:18px;}
.techqor-search-link{display:flex;gap:16px;text-decoration:none;color:#111;align-items:center;transition:.25s ease;position:relative;}

/* ============================== THUMBNAIL ============================== */
.techqor-search-thumb{width:160px;aspect-ratio:16/9;flex-shrink:0;border-radius:12px;overflow:hidden;}
.techqor-search-thumb img{width:100%;height:100%;object-fit:cover;display:block;}

/* ============================== CONTENT ============================== */
.techqor-search-content{flex:1;}
.techqor-search-title{font-size:18px;margin-bottom:6px;transition:.2s;}
.techqor-search-link:hover .techqor-search-title{color:var(--techqor-primary-hover);}
.techqor-search-title mark{background:#fff3b0;padding:0 2px;}
.techqor-search-meta{font-size:13px;color:#777;margin-bottom:6px;}
.techqor-search-excerpt{font-size:14px;color:#555;line-height:1.6;}

/* ============================== DESKTOP ============================== */
@media(min-width:1025px){

.techqor-search-item{padding:0;border:none;}

.techqor-search-link{
display:flex;
gap:26px;
align-items:flex-start;
background:#fff;
border-radius:18px;
padding:22px;
border:1px solid #e5e7eb;
position:relative;
overflow:hidden;
transition:.25s;
}

/* animated border */
.techqor-search-link::before{
content:"";
position:absolute;
inset:0;
border-radius:18px;
border:1px solid transparent;
background:linear-gradient(120deg,transparent,var(--techqor-primary-hover),transparent) border-box;
-webkit-mask:linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
mask-composite:exclude;
opacity:0;
transition:.35s;
}

.techqor-search-link:hover::before{opacity:1;}

.techqor-search-thumb{width:320px;aspect-ratio:16/9;border-radius:16px;overflow:hidden;}

.techqor-search-content{display:flex;flex-direction:column;}

.techqor-search-title{font-size:26px;line-height:1.35;margin-bottom:10px;}

.techqor-search-meta{font-size:14px;margin-bottom:12px;}

.techqor-search-excerpt{font-size:15px;line-height:1.7;}

}

/* ============================== MOBILE ============================== */
@media(max-width:600px){
.techqor-search-link{align-items:flex-start;gap:12px;}
.techqor-search-thumb{width:110px;aspect-ratio:16/9;}
.techqor-search-title{font-size:16px;}
.techqor-search-excerpt{display:none;}
}

/* ============================== NO RESULTS ============================== */
.techqor-no-results h2{font-size:24px;margin-bottom:8px;}
.techqor-no-results p{color:#666;margin-bottom:18px;max-width:520px;}

/* ============================== SEARCH FORM ============================== */
.techqor-search-form-wrap{max-width:420px;margin-top:10px;}
.techqor-search-form-wrap form{display:flex;gap:10px;align-items:center;}
.techqor-search-form-wrap input[type="search"]{flex:1;padding:10px 14px;border-radius:8px;border:1px solid #ddd;}
.techqor-search-form-wrap input[type="submit"]{padding:10px 18px;border-radius:8px;border:none;background:var(--techqor-primary-hover);color:#fff;cursor:pointer;white-space:nowrap;}

/* ============================== RECENT POSTS ============================== */
.techqor-recent-posts{margin-top:28px;}
.techqor-recent-posts h3{font-size:18px;margin-bottom:14px;}
.techqor-recent-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.techqor-recent-item{display:flex;gap:10px;align-items:center;background:#f7f8fb;padding:10px;border-radius:10px;text-decoration:none;color:#111;transition:.2s;}
.techqor-recent-item:hover{background:#eef1f6;}
.techqor-recent-thumb{width:90px;aspect-ratio:16/9;border-radius:8px;overflow:hidden;flex-shrink:0;}
.techqor-recent-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.techqor-recent-title{font-size:14px;line-height:1.4;}
@media(max-width:768px){.techqor-recent-list{grid-template-columns:1fr;}}

/* =========================
GLOBAL FEATURED IMAGE SYSTEM
========================= */

/* main content cards */
.techqor-post .techqor-thumb,
.techqor-card .techqor-thumb,
.archive .techqor-thumb,
.category .techqor-thumb,
.blog .techqor-thumb,
.search .techqor-thumb,
.tq-single-featured,
.tq-related-thumb{
	width:100%;
	aspect-ratio:360 / 200;
	overflow:hidden;
	display:block;
	position:relative;
}

.techqor-post .techqor-thumb img,
.techqor-card .techqor-thumb img,
.archive .techqor-thumb img,
.category .techqor-thumb img,
.blog .techqor-thumb img,
.search .techqor-thumb img,
.tq-single-img,
.tq-related-img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	display:block;
}

/* widget thumbnails */
.tq-recent-posts li{
display:flex;
gap:12px;
align-items:center;
padding:10px 0;
border-bottom:1px solid var(--techqor-border);
}

.tq-recent-posts .tq-thumb{
flex:0 0 90px;
width:90px;
aspect-ratio:16/9;
overflow:hidden;
border-radius:6px;
background:#f5f5f5;
}

.tq-recent-posts .tq-thumb img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
}

.tq-recent-posts li:last-child{
border-bottom:none;
}

.tq-post-content{
flex:1;
min-width:0;
}

.tq-post-content a{
display:block;
font-size:14px;
font-weight:600;
line-height:1.3;
margin-bottom:6px;
color:var(--techqor-heading);
text-decoration:none;
}

.tq-post-content a:hover{
color:var(--techqor-primary);
}

.tq-recent-posts .tq-post-meta{
font-size:12px;
color:var(--techqor-light-text);
}

.tq-recent-posts .tq-post-meta span + span::before{
content:"|";
margin:0 6px;
color:var(--techqor-border);
}

/* mobile archive/front card fix */
@media (max-width:768px){

	.techqor-post,
	.archive .techqor-post,
	.category .techqor-post,
	.blog .techqor-post,
	.search .techqor-post{
		display:block;
	}

	.techqor-post .techqor-card,
	.archive .techqor-card,
	.category .techqor-card,
	.blog .techqor-card,
	.search .techqor-card{
		display:block !important;
	}

	.techqor-post .techqor-thumb,
	.archive .techqor-thumb,
	.category .techqor-thumb,
	.blog .techqor-thumb,
	.search .techqor-thumb{
		width:100% !important;
		max-width:100% !important;
		margin:0 0 14px !important;
		flex:0 0 auto !important;
		aspect-ratio:360 / 200 !important;
	}

	.techqor-post .techqor-card-content,
	.archive .techqor-card-content,
	.category .techqor-card-content,
	.blog .techqor-card-content,
	.search .techqor-card-content{
		width:100%;
	}
}

.techqor-404-page{
max-width:900px;
margin:60px auto;
text-align:center;
}

/* robot animation */

.techqor-robot{
font-size:70px;
animation:robotFloat 3s ease-in-out infinite;
}

.techqor-404-page h1{
font-size:80px;
color:var(--techqor-primary-hover);
margin:10px 0;
}

/* post cards */

.techqor-404-post-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:20px;
}

.techqor-404-post{
display:flex;
gap:14px;
align-items:left;
background:#fff;
border-radius:14px;
padding:12px;
text-decoration:none;
color:#111;
border:1px solid #eee;
transition:.25s;
}

.techqor-404-post:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* thumbnail */

.techqor-404-thumb{
width:110px;
aspect-ratio:16/9;
border-radius:10px;
overflow:hidden;
flex-shrink:0;
}

.techqor-404-thumb img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* content */

.techqor-404-content h4{
font-size:15px;
margin-bottom:6px;
line-height:1.4;
}

.techqor-404-meta{
font-size:12px;
color:#777;
align-items:left;
}

/* button */

.techqor-404-btn{
display:inline-block;
margin-top:30px;
padding:12px 26px;
background:var(--techqor-primary-hover);
color:#fff;
border-radius:8px;
text-decoration:none;
}

/* mobile */

@media(max-width:600px){

.techqor-cat-grid{
grid-template-columns:1fr;
}

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

}

/* =====================
PAGE HERO
===================== */

.techqor-page-hero{
  background:linear-gradient(135deg,#020617,#0f172a,#111827);
  padding:26px 16px;
  margin:18px auto;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-sizing:border-box;
  width:100%;
  max-width:var(--techqor-container, 1240px);
}

/* glow effect */
.techqor-page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(
    circle at 50% 30%,
    rgba(255,255,255,.06),
    transparent 60%
  );
  pointer-events:none;
}

/* keep content above glow */
.techqor-page-hero > *{
  position:relative;
  z-index:1;
}

/* title row */
.techqor-page-title-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

/* icon */
.techqor-page-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  background:rgba(255,255,255,.08);
  border-radius:10px;
  font-size:24px;
  flex:0 0 auto;
}

/* title */
.techqor-page-title{
  font-size:32px;
  font-weight:700;
  margin:0;
  color:#fff;
  line-height:1.2;
}

/* post count badge */
.techqor-post-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.1);
  padding:4px 10px;
  border-radius:20px;
  font-size:13px;
  color:#cbd5f5;
  line-height:1;
  white-space:nowrap;
}

/* breadcrumb */
.techqor-breadcrumb{
  text-align:center;
  font-size:14px;
  opacity:.85;
  margin-top:8px;
  position:relative;
  z-index:1;
  line-height:1.6;
}

.techqor-breadcrumb a{
  color:#cbd5f5;
  text-decoration:none;
}

.techqor-breadcrumb a:hover{
  text-decoration:underline;
}

.tq-sep{
  margin:0 6px;
  opacity:.6;
}

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

.techqor-page-content{
  font-size:16px;
  line-height:1.8;
}

/* =====================
FULL WIDTH PAGE
===================== */

.techqor-page-full{
  max-width:1100px;
  margin:auto;
}

/* =====================
ADS
===================== */

.techqor-ad{
  margin:35px auto;
  text-align:center;
  max-width:100%;
  overflow:hidden;
}

.techqor-ad ins{
  max-width:100%!important;
}

/* =====================
TABLET
===================== */

@media (max-width:1024px){

  .techqor-page-hero{
    width:calc(100% - 32px);
    margin:16px auto;
    padding:24px 16px;
  }

  .techqor-page-title{
    font-size:28px;
  }
}

/* =====================
MOBILE
===================== */

@media (max-width:768px){

  .techqor-page-hero{
    width:calc(100% - 24px);
    max-width:100%;
    margin:14px auto 18px;
    padding:22px 14px;
  }

  .techqor-page-title-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:10px;
  }

  .techqor-page-icon{
    width:34px;
    height:34px;
    font-size:20px;
    border-radius:10px;
  }

  .techqor-page-title{
    font-size:22px;
    line-height:1.25;
    text-align:center;
  }

  .techqor-post-count{
    margin-left:0;
    font-size:12px;
    padding:5px 10px;
  }

  .techqor-breadcrumb{
    margin-top:10px;
    font-size:13px;
    line-height:1.5;
  }

  .tq-sep{
    margin:0 5px;
  }
}

/* =====================
SMALL MOBILE
===================== */

@media (max-width:480px){

  .techqor-page-hero{
    width:calc(100% - 20px);
    padding:20px 12px;
  }

  .techqor-page-title{
    font-size:20px;
  }

  .techqor-breadcrumb{
    font-size:12px;
  }

  .techqor-post-count{
    font-size:11px;
    padding:5px 9px;
  }
}

/* =========================
INLINE CATEGORY POSTS BOX
========================= */

.techqor-inline-related{
margin:28px 0;
border:1px solid var(--techqor-border);
overflow:hidden;
background:#fff;
}

.techqor-inline-related-title{
padding:12px 16px;
font-size:18px;
font-weight:700;
background:#f3f5f7;
color:var(--techqor-heading);
}

.techqor-inline-related ul{
list-style:none;
margin:0;
padding:0;
}

.techqor-inline-related li{
border-top:1px solid var(--techqor-border);
}

.techqor-inline-related a{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
padding:14px 16px;
text-decoration:none;
color:var(--techqor-heading);
font-size:16px;
font-weight:500;
transition:all .2s ease;
}

.techqor-inline-related a:hover{
background:#f8f9fb;
color:var(--techqor-primary);
}

.techqor-inline-related .arrow{
font-size:22px;
line-height:1;
opacity:.65;
}

/* =========================
SINGLE POST JOIN BARS
========================= */

.techqor-join-bars{
display:flex;
flex-direction:column;
gap:12px;
margin:18px 0 24px;
}

.techqor-join-bar{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
padding:14px 16px;
border:1px solid #dbe3ea;
background:#eef4f8;
border-radius:6px;
}

.techqor-join-left{
display:flex;
align-items:center;
gap:10px;
min-width:0;
flex:1;
}

.techqor-join-icon{
display:inline-flex;
align-items:center;
justify-content:center;
font-size:18px;
line-height:1;
flex:0 0 auto;
}

.techqor-join-text{
font-size:16px;
font-weight:500;
line-height:1.3;
color:var(--techqor-heading);
}

.techqor-join-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:8px 16px;
font-size:14px;
font-weight:600;
line-height:1;
text-decoration:none;
color:#fff;
white-space:nowrap;
transition:all .2s ease;
flex:0 0 auto;
}

.techqor-join-btn:hover{
opacity:.92;
color:#fff;
}

/* WhatsApp */
.techqor-join-whatsapp{
border-color:#a9deb2;
}

.techqor-join-whatsapp .techqor-join-icon{
color:#25d366;
}

.techqor-join-whatsapp .techqor-join-btn{
background:#58c86d;
}

/* Telegram */
.techqor-join-telegram{
border-color:#9bcaee;
}

.techqor-join-telegram .techqor-join-icon{
color:#229ed9;
}

.techqor-join-telegram .techqor-join-btn{
background:#2e8bd8;
}

/* Tablet */
@media (max-width:768px){

.techqor-join-bar{
padding:12px;
gap:10px;
}

.techqor-join-text{
font-size:15px;
}

.techqor-join-btn{
padding:8px 12px;
font-size:13px;
}
}

/* Mobile */
@media (max-width:520px){

.techqor-join-bar{
flex-direction:column;
align-items:stretch;
}

.techqor-join-left{
width:100%;
}

.techqor-join-btn{
width:100%;
min-height:40px;
}
}

/* =========================
ARCHIVE POST IMAGE SYSTEM
========================= */

.tq-post-image{
	display:block;
	width:100%;
	aspect-ratio:360 / 200;
	overflow:hidden;
	position:relative;
}

.tq-post-image .tq-img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	display:block;
}

@media (max-width:768px){
	.tq-post-image{
		width:100%;
		max-width:100%;
		margin:0 0 14px;
		aspect-ratio:360 / 200;
	}
}