/*
Theme Name: TechQor Ultra Lite Theme
Theme URI: https://techqor.in/
Description: A lightweight, responsive, AdSense-friendly Genesis child theme built for blogs, content websites, and tool-based pages.
Author: Krishna Sharma
Author URI: https://techqor.in/
Template: genesis
Version: 1.0.2
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techqor-ultra-lite
Tags: blog, news, one-column, two-columns, right-sidebar, custom-logo, featured-images, custom-menu, threaded-comments, translation-ready
*/

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

:root {
    --techqor-container-width: 1280px;
    --techqor-container-padding: 16px;

    --techqor-content-width: 890px;
    --techqor-sidebar-width: 350px;
    --techqor-gap: 24px;
    --techqor-padding: var(--techqor-container-padding);
--techqor-font-primary: "Segoe UI", Arial, sans-serif;
--techqor-font-heading: "Segoe UI", Arial, sans-serif;
    --techqor-primary: #209cee;
    --techqor-primary-hover: #1689d7;

    --techqor-text: #1f2937;
    --techqor-light-text: #667085;
    --techqor-heading: #101828;

    --techqor-bg: #f9f8ff;
    --techqor-surface: #ffffff;
    --techqor-light-bg: #f5f7fb;
    --techqor-border: #e7eaf0;

    --techqor-shadow-sm: none;
    --techqor-shadow-md: none;

    --techqor-space-xs: 6px;
    --techqor-space-sm: 8px;
    --techqor-space-md: 16px;
    --techqor-space-lg: 24px;
    --techqor-space-xl: 32px;
    --techqor-space-2xl: 48px;
    --techqor-radius: 10px;
}

/* ======================================================
RESET / BASE
====================================================== */

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-width: thin;
    scrollbar-color: var(--techqor-primary) #eef1f6;
}

html,
body {
    overflow-x: hidden;
}

/* =========================
GLOBAL FONT FIX (CLEAN)
========================= */
body {
    font-family: var(--techqor-font-primary);
    color: var(--techqor-text);
    line-height: 1.75;
    font-size: 17px;
    letter-spacing: -0.01em;
    font-weight: 400;
    padding-top: 60px;
}

/* REMOVE duplicate font declarations everywhere */


/* images */

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

ul {
    list-style: none;
}

a {
    color: var(--techqor-primary);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
    color: var(--techqor-primary-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--techqor-font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--techqor-heading);
}

h1 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
}

h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}


strong,
b {
    font-weight: 700;
}

p {
    margin-bottom: 18px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    background: #f4f6fa;
    padding: 4px 6px;
    font-size: 14px;
    border-radius: var(--techqor-radius);
}

pre {
    padding: 16px;
    overflow-x: auto;
}

.site-title,
.site-description {
    display: none;
}

.custom-logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 36px;
    object-fit: contain;
    vertical-align: middle;
}

::selection {
    background: rgba(32, 156, 238, 0.16);
    color: var(--techqor-heading);
}

:focus-visible {
    outline: 2px solid rgba(32, 156, 238, 0.45);
    outline-offset: 2px;
}

@media (max-width: 1024px) {
    .custom-logo {
        max-height: 36px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.7;
        padding-top: 55px;
    }

    .custom-logo {
        max-height: 32px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 21px;
    }
}

/* ======================================================
LAYOUT
====================================================== */

.site-container {
    width: 100%;
    max-width: var(--techqor-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--techqor-container-padding);
    padding-right: var(--techqor-container-padding);
    box-sizing: border-box;
}



.content-sidebar-wrap {
    display: flex;
    gap: var(--techqor-gap);
    margin-top: var(--techqor-space-xl);
    align-items: flex-start;
}

.content {
    flex: 1 1 0;
    max-width: 100%;
}

.sidebar {
    flex: 0 0 var(--techqor-sidebar-width);
}

.entry {
    margin-bottom: 26px;
}

.entry-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--techqor-font-heading);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--techqor-heading);
}

.entry-meta {
    font-size: 14px;
    color: var(--techqor-light-text);
    margin-bottom: 18px;
}

.archive .content,
.blog .content,
.search .content,
.single .content,
.page .content {
    background: transparent;
}

@media (max-width: 768px) {
    .content-sidebar-wrap {
        flex-direction: column;
        gap: 24px;
    }

    .content,
    .sidebar {
        width: 100%;
    }

    .entry-title {
        font-size: 26px;
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: -0.02em;
    }
}




/* TechQor main.css — split from mixed CSS without removing original design */


/* ACCESSIBILITY FIX: Hide skip link */
.skip-link,
.screen-reader-shortcut {
    position: absolute;
    top: -100px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    z-index: 9999;
    text-decoration: none;
}

/* Show only on focus (for accessibility) */
.skip-link:focus,
.screen-reader-shortcut:focus {
    top: 10px;
    left: 10px;
}

/* ======================================================
HEADER
====================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid rgba(231,234,240,0.9);

    backface-visibility: hidden;
}



.site-header.tq-hide {
    transform: translateY(-100%);
}

.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 55px;
        padding: 0;
    }
}

.tq-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--techqor-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--techqor-container-padding);
    padding-right: var(--techqor-container-padding);
    min-height: 60px;
    height: 60px;
    box-sizing: border-box;
}

.tq-logo {
    display: flex;
    align-items: center;
    min-height: 55px;
    height: 55px;
    flex-shrink: 0;
}

.tq-nav {
    display: flex;
    align-items: center;
    min-height: 55px;
    height: 55px;
    margin-left: auto;
}

.tq-header-icons {
    position: relative;
    display: flex;
    align-items: center;
    height: 25px;
    gap: 16px;
    border-left: 1px solid var(--techqor-border);
    padding-left: 16px;
    margin-left: 16px;
}


/* ======================================================
DESKTOP MENU
====================================================== */

.tq-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.tq-menu li {
    position: relative;
}

.tq-menu a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--techqor-heading);
    transition: color 0.2s ease;
}

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

.tq-menu .current-menu-item > a,
.tq-menu .current-menu-parent > a,
.tq-menu .current-menu-ancestor > a {
    color: var(--techqor-primary-hover);
}

/* ======================================================
PARENT ARROW
====================================================== */

.tq-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 18px;
}

.tq-menu .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3px;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

/* ======================================================
SUBMENU (NO SHADOW + TIGHT PADDING)
====================================================== */

.tq-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--techqor-radius);
    padding: 4px 0; /* 🔥 reduced */

    min-width: 220px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(6px);

    transition: opacity 0.2s ease, transform 0.2s ease;

    z-index: 999;

    box-shadow: none; /* 🔥 removed */
}

/* hover fix */
.tq-menu li:hover > .sub-menu,
.tq-menu li:focus-within > .sub-menu,
.tq-menu .sub-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ======================================================
SUBMENU ITEMS
====================================================== */

.tq-menu .sub-menu li {
    position: relative;
    padding: 0 8px; /* 🔥 reduced */
}

.tq-menu .sub-menu li + li {
    margin-top: 0; /* 🔥 remove spacing */
}

.tq-menu .sub-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px; /* 🔥 reduced */
    border-radius: var(--techqor-radius);
    transition: none; /* 🔥 no hover effect */
}

/* ❌ remove hover background */
.tq-menu .sub-menu a:hover {
    background: transparent;
}

/* divider */
.tq-menu .sub-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

/* ======================================================
NESTED SUBMENU
====================================================== */

.tq-menu .sub-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}

.tq-menu .sub-menu .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
}

.tq-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.tq-menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ======================================================
SEARCH BUTTON
====================================================== */

.tq-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--techqor-radius);
}

.tq-search-btn:hover {
    background: transparent; /* 🔥 removed hover bg */
}

.tq-search-btn svg {
    width: 18px;
    height: 18px;
    stroke: #222;
    stroke-width: 2;
    fill: none;
}

/* ======================================================
SEARCH DROPDOWN (NO SHADOW + TIGHT)
====================================================== */

.tq-search-dropdown {
    position: absolute;
    top: 44px;
    right: 0;
    width: 320px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--techqor-radius);
    padding: 8px; /* 🔥 reduced */

    opacity: 0;
    visibility: hidden;

    transform: translateY(6px);

    transition: 0.2s ease;

    z-index: 999;

    box-shadow: none; /* 🔥 removed */
}

.tq-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tq-search-dropdown form {
    display: flex;
    gap: 6px; /* 🔥 reduced */
}

.tq-search-dropdown input {
    flex: 1;
    padding: 9px 10px; /* 🔥 reduced */
    border: 1px solid #d0d7e2;
    border-radius: var(--techqor-radius);
    font-size: 14px;
    background: #ffffff;
    color: var(--techqor-text);
}

.tq-search-dropdown input::placeholder {
    color: #888;
}

.tq-search-dropdown input:focus {
    border-color: rgba(32,156,238,0.5);
    outline: none;
}

.tq-search-dropdown button {
    background: var(--techqor-primary);
    border: none;
    border-radius: var(--techqor-radius);
    color: #fff;
    padding: 6px 10px; /* 🔥 reduced */
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.tq-search-dropdown svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

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

@media (max-width: 768px) {
    .tq-search-dropdown {
        width: calc(100vw - 20px);
        right: -6px;
        top: 58px;
    }
}
/* ======================================================
HAMBURGER / OFFCANVAS
====================================================== */

.tq-hamburger {
    display: none;
    position: relative;
    width: 24px;
    height: 18px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.tq-hamburger:hover,
.tq-hamburger:focus,
.tq-hamburger:active {
    background: transparent;
    box-shadow: none;
    outline: none;
}

.tq-hamburger span {
    position: absolute;
    right: 0;
    left: auto;
    display: block;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transform-origin: center;
    transition:
        transform 0.32s cubic-bezier(.4, 0, .2, 1),
        opacity 0.22s ease,
        width 0.32s cubic-bezier(.4, 0, .2, 1),
        top 0.32s cubic-bezier(.4, 0, .2, 1);
}

.tq-hamburger span:nth-child(1) {
    top: 0;
    width: 75%;
}

.tq-hamburger span:nth-child(2) {
    top: 8px;
    width: 100%;
}

.tq-hamburger span:nth-child(3) {
    top: 16px;
    width: 40%;
}

.tq-hamburger:hover span:nth-child(1) {
    width: 58%;
}

.tq-hamburger:hover span:nth-child(2) {
    width: 84%;
}

.tq-hamburger.active span:nth-child(1) {
    top: 8px;
    width: 100%;
    transform: rotate(45deg);
}

.tq-hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.tq-hamburger.active span:nth-child(3) {
    top: 8px;
    width: 100%;
    transform: rotate(-45deg);
}


/* ======================================================
FOUC FIX (CRITICAL)
====================================================== */

html:not(.tq-ready) .tq-offcanvas,
html:not(.tq-ready) .tq-offcanvas-overlay {
    display: none;
}


/* ======================================================
OFFCANVAS OVERLAY (BLUR GLASS)
====================================================== */

.tq-offcanvas-overlay {
    position: fixed;
    inset: 0;

    background: rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.28s ease, visibility 0.28s ease;

    z-index: 9998;
}

.tq-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ======================================================
OFFCANVAS PANEL
====================================================== */

.tq-offcanvas {
    position: fixed;
    top: 0;
    left: 0;

    width: 260px;
    max-width: 90%;
    height: 100vh;

    background: #ffffff;

    /* ❗ always hidden by default */
    transform: translate3d(-100%, 0, 0);

    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);

    z-index: 9999;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    will-change: transform;
    backface-visibility: hidden;
}

/* only visible when active */
.tq-offcanvas.active {
    transform: translate3d(0, 0, 0);
}


/* ======================================================
CLOSE BUTTON
====================================================== */

.tq-offcanvas-close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 16px 6px;
}

.tq-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    background: transparent;
    border: none;
    cursor: pointer;

    font-size: 22px;
    color: #111;

    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tq-close-btn:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}


/* ======================================================
LOGO
====================================================== */

.tq-offcanvas-logo {
    padding: 0 20px 10px;
    text-align: center;
}

.tq-offcanvas-logo img {
    max-width: 160px;
    height: auto;
}


/* ======================================================
NAV WRAP
====================================================== */

.tq-offcanvas-nav {
    flex: 1;
}


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

.tq-mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}


/* ======================================================
TOP LEVEL ITEMS
====================================================== */

.tq-mobile-menu > li {
    position: relative;
}

.tq-mobile-menu > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.tq-mobile-menu > li:last-child::after {
    display: none;
}


/* ======================================================
RESPONSIVE
====================================================== */

@media (max-width: 1024px) {
    .tq-hamburger {
        display: block;
    }
}
/* ======================================================
TOP LINK
====================================================== */

.tq-mobile-menu > li > a {
    display: block;
    padding: 16px 18px;

    font-size: 16px;
    font-weight: 600;

    color: #222;
    text-decoration: none;

    background: transparent;
    transition: color 0.2s ease;
}

.tq-mobile-menu > li > a:hover {
    color: var(--techqor-primary);
}

/* ======================================================
SUBMENU
====================================================== */

.tq-mobile-menu .sub-menu {
    display: none;
    margin: 0;
    padding: 0;
}

.tq-mobile-menu .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
}

/* ======================================================
SUBMENU ITEMS
====================================================== */

.tq-mobile-menu .sub-menu li {
    position: relative;
}

/* 🔥 SUBMENU DIVIDER */
.tq-mobile-menu .sub-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.tq-mobile-menu .sub-menu li:last-child::after {
    display: none;
}

/* ======================================================
SUBMENU LINK
====================================================== */

.tq-mobile-menu .sub-menu a {
    display: block;
    padding: 14px 18px 14px 36px;

    font-size: 14px;
    font-weight: 500;

    color: #555;
    text-decoration: none;
}

/* dash */
.tq-mobile-menu .sub-menu a::before {
    content: "—";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
}

/* ======================================================
ARROW
====================================================== */

.tq-mobile-menu .menu-item-has-children > a {
    padding-right: 44px;
    position: relative;
}

.tq-mobile-menu .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;

    width: 6px;
    height: 6px;

    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;

    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.2s ease;
}

.tq-mobile-menu .menu-item-has-children.submenu-open > a::after {
    transform: translateY(-50%) rotate(45deg);
}



/* mobile */
.tq-mobile-menu .current-menu-item > a,
.tq-mobile-menu .current-menu-parent > a,
.tq-mobile-menu .current-menu-ancestor > a {
    color: var(--techqor-primary);
    font-weight: 600;
}

/* submenu active */
.tq-mobile-menu .sub-menu .current-menu-item > a {
    color: var(--techqor-primary);
}

/* arrow bhi active color me */
.tq-mobile-menu .current-menu-item > a::after,
.tq-mobile-menu .current-menu-parent > a::after {
    border-color: var(--techqor-primary);
}

/* ======================================================
RESPONSIVE HEADER
====================================================== */

@media (max-width: 768px) {
    .tq-menu {
        display: none;
    }

    .tq-hamburger {
        display: block;
        margin-left: 8px;
        width: 24px;
        height: 18px;
        padding: 0;
        border-left: none;
    }

    .tq-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .tq-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 55px;
        height: 55px;
    }

    .tq-logo {
        min-height: 55px;
        height: 55px;
    }

    .tq-header-icons {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 55px;
        height: 55px;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
}

@media (min-width: 769px) {
    .tq-hamburger {
        display: none;
    }
}


/* ======================================================
TABLES / FORMS / MISC CONTENT
====================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background: #fff;
}

th,
td {
    padding: 12px 14px;
    border: 1px solid var(--techqor-border);
    text-align: left;
}

th {
    color: var(--techqor-heading);
    font-weight: 600;
    background: #f8fafc;
}

input,
textarea,
select {
    border: 1px solid var(--techqor-border);
    border-radius: var(--techqor-radius);
    padding: 12px 14px;
    color: var(--techqor-text);
    background: #fff;
    box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(32, 156, 238, 0.35);
}

/* ======================================================
ACCESSIBILITY
====================================================== */

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.screen-reader-text:focus {
    left: 20px;
    top: 20px;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    z-index: 9999;
    border-radius: var(--techqor-radius);
}


/* ======================================================
CUSTOM SCROLLBAR
====================================================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #eef1f6;
}

::-webkit-scrollbar-thumb {
    background: var(--techqor-primary);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--techqor-primary-hover);
}



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

body.tq-menu-open,
body.techqor-offcanvas-open {
    overflow: hidden;
}

body.techqor-offcanvas-open {
    height: 100vh;
    touch-action: none;
}

/* Additional shared/page CSS that was already part of main.css */


img{
  image-rendering: auto;
  backface-visibility: hidden;
}



/* containers */

.techqor-page-hero,
.techqor-post,
.techqor-card,
.techqor-tool-card,
.front-widget,
.techqor-search-card,
.techqor-no-results,
.techqor-inline-related{
  overflow: hidden;
  border-radius: var(--techqor-radius);
}

.widget,
.sidebar .widget,
.entry,
.entry-content,
.techqor-ad{
  border-radius: var(--techqor-radius);
}

/* buttons */

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

/* inputs */

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

/* =========================
LOGO VISIBILITY FIX
========================= */

.tq-logo img,
.tq-offcanvas-logo img,
.techqor-footer-logo img,
.custom-logo{
  display: block !important;
  max-width: 100% !important;
  width: auto;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: contain;
}




/* =========================
SINGLE PAGE SHELL
========================= */

.tq-single-post{
	width:100%;
	max-width:100%;
	overflow:hidden;
}

.tq-single-header{
	margin-bottom:28px;
}

/* =========================
BREADCRUMB
========================= */

.tq-single-breadcrumb{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:8px;
	margin:0 0 16px;
	font-size:12px;
	line-height:1.5;
	letter-spacing:.01em;
	color:var(--techqor-text-muted);
}

.tq-breadcrumb-link{
	color:var(--techqor-text-muted);
	text-decoration:none;
	transition:color .2s ease;
}

.tq-breadcrumb-link:hover{
	color:var(--techqor-primary);
}

.tq-breadcrumb-sep{
	color:#c7d0dc;
	line-height:1;
}

.tq-breadcrumb-current{
	color:var(--techqor-text-strong);
	font-weight:500;
	display:-webkit-box;
	-webkit-line-clamp:1;
	-webkit-box-orient:vertical;
	overflow:hidden;
	min-width:0;
	max-width:100%;
}

/* =========================
TITLE
========================= */

.tq-single-title{
	margin:0 0 18px;
	font-size:clamp(2rem, 1.35rem + 2.2vw, 3.15rem);
	line-height:1.12;
	letter-spacing:-0.035em;
	font-weight:780;
	color:var(--techqor-text-strong);
	max-width:720px;
	width:100%;
	text-wrap:balance;
}

/* =========================
META BOX
========================= */

.tq-single-meta-box{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	margin:18px 0 0;
	width:100%;
	padding:10px 0 0;
	background:none;
	border:none;
	border-radius:0;
	box-shadow:none;
}

.tq-single-meta-author{
	display:flex;
	align-items:center;
	gap:14px;
	min-width:0;
	flex:1 1 auto;
}

.tq-single-meta-avatar{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	flex:0 0 auto;
	width:56px;
	height:56px;
	border-radius:50%;
	overflow:hidden;
	text-decoration:none;
}

.tq-single-meta-avatar img{
	width:56px;
	height:56px;
	border-radius:50%;
	object-fit:cover;
	display:block;
}

.tq-single-meta-content{
	display:flex;
	flex-direction:column;
	min-width:0;
	flex:1 1 auto;
}

.tq-single-meta-top{
	display:flex;
	align-items:center;
	gap:8px;
	min-width:0;
}

.tq-single-meta-name{
	font-size:15px;
	font-weight:650;
	line-height:1.2;
	color:var(--techqor-text-strong);
	text-decoration:none;
	white-space:nowrap;
}

.tq-single-meta-name:hover{
	color:var(--techqor-primary);
}

.tq-single-meta-bottom{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:6px;
	margin-top:4px;
	font-size:12px;
	line-height:1.5;
	letter-spacing:.01em;
	color:var(--techqor-text-muted);
}

.tq-meta-label,
.tq-meta-date,
.tq-meta-reading-time{
	color:var(--techqor-text-muted);
}

.tq-meta-reading-wrap{
	display:inline-flex;
	align-items:center;
	gap:4px;
	flex-wrap:nowrap;
	min-width:0;
}

.tq-meta-bullet{
	color:#c7d0dc;
	font-size:12px;
	line-height:1;
	margin:0 2px;
}

.tq-meta-category-wrap{
	display:inline-flex;
	align-items:center;
	gap:4px;
	flex-wrap:nowrap;
	min-width:0;
}

.tq-meta-category{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:4px 10px;
	background:var(--techqor-primary-soft);
	color:var(--techqor-primary);
	text-decoration:none;
	font-weight:600;
	font-size:11px;
	line-height:1.2;
	letter-spacing:.04em;
	text-transform:uppercase;
	border-radius:999px;
	white-space:nowrap;
}

.tq-meta-category:hover{
	background:var(--techqor-primary-soft-hover);
	color:var(--techqor-primary-hover);
}

/* =========================
FEATURED IMAGE
========================= */

.tq-single-featured,
.tq-single-featured-image{
	margin-bottom:34px;
	aspect-ratio:16 / 9;
	overflow:hidden;
	border-radius:var(--techqor-radius-xl);
	background:#f3f5f8;
	box-shadow:var(--techqor-shadow-sm);
}

.tq-single-img,
.tq-single-featured img,
.tq-single-featured-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	border-radius:var(--techqor-radius-xl);
}

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

.tq-single-body{
	font-size:18px;
	line-height:1.92;
	letter-spacing:-0.011em;
	color:var(--techqor-text);
	word-wrap:break-word;
	overflow-wrap:break-word;
}

.tq-single-body > *{
	margin-bottom:24px;
}

.tq-single-body > *:last-child{
	margin-bottom:0;
}

.tq-single-body p{
	margin-bottom:22px;
	max-width:100%;
}

.tq-single-body h2{
	font-size:31px;
	line-height:1.16;
	letter-spacing:-0.03em;
	font-weight:760;
	margin:46px 0 14px;
	color:var(--techqor-text-strong);
	scroll-margin-top:90px;
}

.tq-single-body h3{
	font-size:25px;
	line-height:1.22;
	letter-spacing:-0.024em;
	font-weight:700;
	margin:36px 0 12px;
	color:var(--techqor-text-strong);
	scroll-margin-top:90px;
}

.tq-single-body h4{
	font-size:21px;
	line-height:1.3;
	letter-spacing:-0.018em;
	font-weight:650;
	margin:30px 0 10px;
	color:var(--techqor-text-strong);
	scroll-margin-top:90px;
}

.tq-single-body ul,
.tq-single-body ol{
	margin:0 0 24px 24px;
	padding:0;
}

.tq-single-body li{
	margin-bottom:10px;
}

.tq-single-body a{
	color:var(--techqor-primary);
	text-decoration:underline;
	text-underline-offset:2px;
	text-decoration-thickness:1px;
	word-break:break-word;
}

.tq-single-body a:hover{
	color:var(--techqor-primary-hover);
}

.tq-single-body blockquote{
	position:relative;
	margin:32px 0;
	padding:20px 22px;
	border:1px solid var(--techqor-border);
	background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border-radius:var(--techqor-radius-xl);
	box-shadow:var(--techqor-shadow-sm);
}

.tq-single-body blockquote::before{
	content:"“";
	display:block;
	margin-bottom:8px;
	font-size:34px;
	line-height:1;
	color:var(--techqor-primary);
}

.tq-single-body table{
	width:100%;
	border-collapse:collapse;
	margin:24px 0;
	font-size:15px;
	background:#fff;
	border:1px solid var(--techqor-border);
	border-radius:var(--techqor-radius-lg);
	overflow:hidden;
	box-shadow:var(--techqor-shadow-sm);
}

.tq-single-body th,
.tq-single-body td{
	padding:12px 14px;
	border:1px solid var(--techqor-border);
	text-align:left;
	vertical-align:top;
}

.tq-single-body th{
	font-weight:650;
	color:var(--techqor-text-strong);
	background:#f8fafc;
}

.tq-single-body img{
	max-width:100%;
	height:auto;
	margin:28px 0;
	border-radius:var(--techqor-radius-xl);
}

.tq-single-body iframe{
	max-width:100%;
	border-radius:var(--techqor-radius-lg);
}

.tq-single-body pre{
	background:#0f172a;
	color:#fff;
	padding:18px;
	overflow:auto;
	border-radius:var(--techqor-radius-lg);
	box-shadow:none;
}

.tq-single-body code{
	word-break:break-word;
}

/* =========================
CONTENT UX HELPERS
========================= */

.tq-single-body > h2:first-child,
.tq-single-body > h3:first-child{
	margin-top:0;
}

.tq-single-body hr{
	margin:32px 0;
	border:0;
	border-top:1px solid var(--techqor-border);
}

.tq-single-body strong{
	color:var(--techqor-text-strong);
}

/* =========================
AUTHOR BOX
========================= */

.tq-author-box{
	display:flex;
	gap:18px;
	align-items:center;
	margin-top:42px;
	padding:26px;
	background:linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
	border:1px solid var(--techqor-border);
	border-radius:var(--techqor-radius-xl);
	box-shadow:var(--techqor-shadow-sm);
}

.tq-author-avatar{
	width:96px;
	height:96px;
	border-radius:50%;
	overflow:hidden;
	flex:0 0 auto;
}

.tq-author-avatar img{
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:50% !important;
}

.tq-author-info{
	flex:1;
	min-width:0;
}

.tq-author-name{
	margin:0 0 8px;
	font-size:21px;
	font-weight:720;
	line-height:1.18;
	letter-spacing:-0.02em;
	color:var(--techqor-text-strong);
}

.tq-author-name a{
	color:inherit;
	text-decoration:none;
}

.tq-author-name a:hover{
	color:var(--techqor-primary);
}

.tq-author-bio{
	margin:0;
	color:var(--techqor-text-muted);
	line-height:1.8;
	font-size:14px;
}

/* =========================
COMMENTS
========================= */

.comments-area{
	margin-top:52px;
	padding:30px;
	border:1px solid var(--techqor-border);
	background:linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
	border-radius:var(--techqor-radius-xl);
	box-shadow:var(--techqor-shadow-sm);
}

.comments-title{
	font-size:25px;
	font-weight:700;
	line-height:1.2;
	letter-spacing:-0.02em;
	margin-bottom:26px;
	padding-bottom:12px;
	border-bottom:1px solid var(--techqor-border);
	color:var(--techqor-text-strong);
}

.comment-list{
	margin-top:20px;
}

.comment{
	display:flex;
	gap:16px;
	padding:18px;
	border:1px solid var(--techqor-border);
	background:#fff;
	margin-bottom:18px;
	border-radius:var(--techqor-radius-lg);
	box-shadow:none;
}

.comment:hover{
	border-color:var(--techqor-border-strong);
}

.comment-author img{
	border-radius:50%;
	width:42px;
	height:42px;
}

.comment-body{
	flex:1;
	min-width:0;
}

.comment-author{
	font-weight:650;
	margin-bottom:4px;
	color:var(--techqor-text-strong);
}

.comment-author .fn{
	position:relative;
}

.bypostauthor .fn::after{
	content:"Author";
	margin-left:8px;
	font-size:11px;
	padding:2px 6px;
	background:var(--techqor-primary);
	color:#fff;
	border-radius:999px;
}

.comment-meta{
	font-size:12px;
	color:var(--techqor-text-muted);
	margin-bottom:10px;
}

.comment-content{
	font-size:15px;
	line-height:1.7;
	color:var(--techqor-text);
}

/* =========================
REPLY BUTTON
========================= */

.reply{
	margin-top:10px;
}

.comment-reply-link{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:13px;
	padding:7px 12px;
	background:#f3f6fb;
	color:var(--techqor-text);
	text-decoration:none;
	white-space:nowrap;
	transition:.25s;
	border-radius:var(--techqor-radius);
	box-shadow:none;
}

.comment-reply-link:hover{
	background:var(--techqor-primary);
	color:#fff;
	transform:translateY(-1px);
	box-shadow:none;
}

.comment-list .children{
	margin-left:50px;
	margin-top:16px;
}

/* =========================
COMMENT FORM
========================= */

.comment-form{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:16px;
	margin-top:30px;
}

.comment-form-comment{
	grid-column:1 / -1;
}

.comment-form textarea{
	width:100%;
	min-height:150px;
	padding:12px 14px;
	border:1px solid var(--techqor-border);
	font-size:15px;
	border-radius:var(--techqor-radius);
	box-shadow:none;
	resize:vertical;
	background:#fff;
}

.comment-form input{
	width:100%;
	padding:11px 12px;
	border:1px solid var(--techqor-border);
	font-size:14px;
	border-radius:var(--techqor-radius);
	box-shadow:none;
	background:#fff;
}

.comment-form textarea:focus,
.comment-form input:focus{
	outline:none;
	border-color:var(--techqor-primary);
	box-shadow:0 0 0 4px rgba(32,156,238,.08);
}

.form-submit{
	grid-column:1 / -1;
}

.comment-form input[type="submit"]{
	background:var(--techqor-primary);
	color:#fff;
	border:none;
	padding:12px 22px;
	cursor:pointer;
	white-space:nowrap;
	transition:.25s;
	border-radius:var(--techqor-radius);
	box-shadow:none;
}

.comment-form input[type="submit"]:hover{
	background:var(--techqor-primary-hover);
	box-shadow:none;
}

/* =========================
LEAVE A REPLY TITLE
========================= */

.comment-reply-title{
	position:relative;
	font-size:22px;
	font-weight:700;
	text-align:center;
	margin:30px 0;
	letter-spacing:-0.02em;
	color:var(--techqor-text-strong);
}

.comment-reply-title::before{
	content:"";
	position:absolute;
	top:50%;
	left:0;
	width:34%;
	height:1px;
	background:var(--techqor-border);
	transform:translateY(-50%);
}

.comment-reply-title::after{
	content:"";
	position:absolute;
	top:50%;
	right:0;
	width:34%;
	height:1px;
	background:var(--techqor-border);
	transform:translateY(-50%);
}

/* =========================
JOIN BAR
========================= */

.techqor-join-bars{
	display:flex;
	flex-direction:column;
	gap:12px;
	margin:28px 0;
	width:100%;
}

.techqor-join-bar{
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-wrap:nowrap;
	gap:12px;
	width:100%;
	padding:14px 16px;
	background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-sizing:border-box;
	overflow:hidden;
	border-radius:var(--techqor-radius-lg);
	box-shadow:var(--techqor-shadow-sm);
}

.techqor-join-whatsapp{
	border:1px solid #7edc95;
}

.techqor-join-telegram{
	border:1px solid #6fb7ef;
}

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

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

.techqor-join-icon i,
.techqor-join-icon svg{
	font-size:22px;
	line-height:1;
	display:block;
	flex-shrink:0;
}

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

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

.techqor-join-text{
	display:block;
	flex:1 1 auto;
	min-width:0;
	font-size:16px;
	font-weight:600;
	line-height:1.35;
	color:var(--techqor-text-strong);
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

.techqor-join-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	flex:0 0 auto;
	width:auto !important;
	min-width:116px;
	height:40px;
	padding:0 18px;
	margin:0;
	border:none;
	text-decoration:none;
	text-align:center;
	font-size:14px;
	font-weight:650;
	line-height:1;
	white-space:nowrap;
	border-radius:var(--techqor-radius);
	box-shadow:none;
	transition:opacity .2s ease, transform .2s ease;
}

.techqor-join-whatsapp .techqor-join-btn{
	background:#19d463;
	color:#fff;
}

.techqor-join-telegram .techqor-join-btn{
	background:#1f8fda;
	color:#fff;
}

.techqor-join-btn:hover,
.techqor-join-btn:focus{
	color:#fff;
	opacity:.96;
	transform:translateY(-1px);
	box-shadow:none;
}

/* =========================
RELATED POSTS
========================= */

.tq-related-posts{
	margin-top:46px;
	padding-top:18px;
	border-top:1px solid var(--techqor-border);
}

.tq-related-title{
	position:relative;
	margin:0 0 26px;
	font-size:23px;
	line-height:1.2;
	font-weight:760;
	letter-spacing:-0.02em;
	text-align:center;
	color:var(--techqor-text-strong);
}

.tq-related-title::before,
.tq-related-title::after{
	content:"";
	position:absolute;
	top:50%;
	width:30%;
	height:1px;
	background:var(--techqor-border);
	transform:translateY(-50%);
}

.tq-related-title::before{
	left:0;
}

.tq-related-title::after{
	right:0;
}

.tq-related-list,
.tq-related-grid{
	display:grid !important;
	grid-template-columns:repeat(4,minmax(0,1fr)) !important;
	gap:18px !important;
	margin:0 !important;
	padding:0 !important;
	list-style:none !important;
}

.tq-related-item{
	display:block !important;
	width:100% !important;
	max-width:100% !important;
	margin:0 !important;
	padding:0 !important;
	border:none !important;
	background:transparent !important;
	box-sizing:border-box !important;
	overflow:hidden !important;
	cursor:pointer;
	transition:transform .18s ease, opacity .18s ease;
	border-radius:0;
	box-shadow:none;
}

.tq-related-thumb{
	display:block !important;
	width:100% !important;
	margin:0 0 12px !important;
	padding:0 !important;
	flex:none !important;
	overflow:hidden !important;
	position:relative;
	border-radius:var(--techqor-radius-lg);
	background:#f3f3f3;
}

.tq-related-thumb img,
.tq-related-img{
	display:block !important;
	width:100% !important;
	height:auto !important;
	aspect-ratio:16 / 9 !important;
	object-fit:cover !important;
	transition:transform .22s ease;
	border-radius:var(--techqor-radius-lg);
}

.tq-related-content{
	display:block !important;
	width:100% !important;
	min-width:0 !important;
	padding:0 !important;
}

.tq-related-post-title{
	margin:0 !important;
	font-size:16px !important;
	line-height:1.45 !important;
	font-weight:700 !important;
	letter-spacing:-0.015em;
}

.tq-related-post-title a{
	color:var(--techqor-text-strong) !important;
	text-decoration:none !important;
	display:-webkit-box !important;
	-webkit-line-clamp:2 !important;
	-webkit-box-orient:vertical !important;
	overflow:hidden !important;
	transition:color .18s ease;
	font-weight:600 !important;
}

.tq-related-meta{
	margin-top:6px;
	font-size:12px;
	line-height:1.4;
	color:var(--techqor-text-muted);
}

.tq-related-date{
	display:inline-block;
}

.tq-related-item:hover{
	transform:translateY(-3px);
}

.tq-related-item:hover .tq-related-post-title a{
	color:var(--techqor-primary) !important;
}

.tq-related-item:hover .tq-related-thumb img,
.tq-related-item:hover .tq-related-img{
	transform:scale(1.04);
}

/* =========================
HIDE META PARTS ON MOBILE
========================= */

@media (max-width:767px){
	.tq-meta-category-wrap{
		display:none !important;
	}

	.tq-meta-reading-wrap + .tq-meta-bullet{
		display:none !important;
	}
}

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

@media (max-width:1024px){
	.tq-single-title{
		font-size:28px;
		line-height:1.18;
		max-width:100%;
	}

	.tq-single-breadcrumb{
		font-size:12px;
		gap:7px;
		margin-bottom:10px;
	}

	.tq-single-meta-box{
		gap:14px;
		padding:8px 0 0;
	}

	.tq-single-meta-avatar,
	.tq-single-meta-avatar img{
		width:46px;
		height:46px;
	}

	.tq-single-meta-name{
		font-size:14px;
	}

	.tq-single-meta-bottom{
		font-size:12px;
	}

	.tq-single-body{
		font-size:17px;
		line-height:1.8;
	}

	.tq-single-body h2{
		font-size:26px;
	}

	.tq-single-body h3{
		font-size:21px;
	}

	.tq-related-list,
	.tq-related-grid{
		grid-template-columns:repeat(2,minmax(0,1fr)) !important;
		gap:16px !important;
	}

	.tq-related-title{
		font-size:20px !important;
	}

	.tq-related-post-title{
		font-size:15px !important;
		line-height:1.38 !important;
	}

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

	.techqor-join-btn{
		min-width:108px;
		height:38px;
		padding:0 16px;
		font-size:14px;
	}
}

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

@media (max-width:768px){
	.tq-single-header{
		margin-bottom:24px;
	}

	.tq-single-title{
		font-size:24px;
		line-height:1.22;
		letter-spacing:-0.03em;
		max-width:100%;
		width:100%;
		text-wrap:pretty;
	}

	.tq-single-breadcrumb{
		font-size:11px;
		gap:6px;
		margin:0 0 10px;
		line-height:1.45;
	}

	.tq-breadcrumb-current{
		-webkit-line-clamp:2;
	}

	.tq-single-meta-box{
		align-items:flex-start;
		margin-top:14px;
		padding-top:8px;
	}

	.tq-single-body{
		font-size:16px;
		line-height:1.82;
	}

	.tq-single-body h2{
		font-size:24px;
		margin:34px 0 12px;
	}

	.tq-single-body h3{
		font-size:20px;
		margin:28px 0 10px;
	}

	.tq-single-body h4{
		font-size:18px;
	}

	.tq-author-box{
		flex-direction:column;
		text-align:center;
		margin-top:34px;
		padding:22px;
	}

	.tq-author-avatar{
		width:88px;
		height:88px;
	}

	.comment{
		flex-direction:column;
	}

	.comment-list .children{
		margin-left:20px;
	}

	.comment-form{
		grid-template-columns:1fr;
	}

	.comments-area{
		margin-top:42px;
		padding:22px;
	}

	.comment-reply-title::before,
	.comment-reply-title::after{
		width:24%;
	}

	.tq-related-posts{
		margin-top:38px !important;
		padding-top:14px;
	}

	.tq-related-title{
		margin-bottom:20px !important;
		font-size:19px !important;
	}

	.tq-related-title::before,
	.tq-related-title::after{
		width:18% !important;
	}

	.tq-related-list,
	.tq-related-grid{
		grid-template-columns:repeat(2,minmax(0,1fr)) !important;
		gap:14px !important;
	}

	.tq-related-thumb{
		margin-bottom:8px !important;
	}

	.tq-related-post-title{
		font-size:14px !important;
		line-height:1.35 !important;
	}

	.tq-related-meta{
		font-size:11.5px;
		margin-top:5px;
	}

	.techqor-join-bar{
		display:flex !important;
		flex-direction:row !important;
		align-items:center !important;
		justify-content:space-between !important;
		flex-wrap:nowrap !important;
		gap:10px;
		padding:10px 12px;
	}

	.techqor-join-left{
		flex:1 1 auto !important;
		min-width:0 !important;
		gap:8px;
	}

	.techqor-join-icon i,
	.techqor-join-icon svg{
		font-size:20px;
	}

	.techqor-join-text{
		font-size:15px;
		white-space:nowrap !important;
		overflow:hidden !important;
		text-overflow:ellipsis !important;
	}

	.techqor-join-btn{
		flex:0 0 auto !important;
		width:auto !important;
		min-width:96px;
		height:36px;
		padding:0 14px;
		font-size:13px;
	}
}

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

@media (max-width:767px){
	.tq-single-meta-author{
		gap:12px;
		min-width:0;
	}

	.tq-single-meta-avatar,
	.tq-single-meta-avatar img{
		width:38px;
		height:38px;
	}

	.tq-single-meta-name{
		font-size:13px;
	}

	.tq-single-meta-bottom{
		gap:4px;
		font-size:12px;
		line-height:1.45;
	}
}

@media (max-width:480px){
	.tq-single-meta-box{
		flex-direction:column;
		align-items:flex-start;
	}

	.tq-single-meta-bottom{
		display:flex;
		flex-wrap:wrap;
	}

	.tq-single-breadcrumb{
		font-size:10.5px;
	}

	.tq-single-body{
		font-size:15.5px;
		line-height:1.72;
	}

	.tq-related-list,
	.tq-related-grid{
		grid-template-columns:repeat(2,minmax(0,1fr)) !important;
		gap:12px !important;
	}

	.tq-related-post-title{
		font-size:13px !important;
		line-height:1.32 !important;
	}

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

	.techqor-join-btn{
		min-width:88px;
		height:34px;
		padding:0 12px;
		font-size:12px;
	}
}










/* =========================
   TechQor Light Footer (Final Clean Version)
========================= */

.techqor-site-footer {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgb(243 246 255 / .97);
	color: #1a2a3a;
	clear: both;
}

.techqor-site-footer *,
.techqor-site-footer *::before,
.techqor-site-footer *::after {
	box-sizing: border-box;
}

/* Links */
.techqor-site-footer a {
	color: #1f3a5f;
	text-decoration: none;
	transition: all 0.25s ease;
}

.techqor-site-footer a:hover {
	color: #0073ff;
}

/* Layout */
.techqor-footer-inner {
	width: 100%;
	padding: 32px 0 28px;
}

.techqor-footer-wrap {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.techqor-footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.45fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(280px, 1.15fr);
	gap: 56px;
}

/* Logo */
.techqor-footer-logo {
	margin-bottom: 24px;
}

.techqor-footer-logo img {
	max-height: 54px;
}

/* Site Title */
.techqor-footer-site-title {
	font-size: 2.1rem;
	font-weight: 800;
	background: linear-gradient(90deg, #30aaff, #5ad3ff);
	-webkit-background-clip: text;
	color: transparent;
}

/* Text */
.techqor-footer-desc,
.techqor-footer-newsletter-desc {
	color: #5a6b7c;
	line-height: 1.8;
}

/* Titles */
.techqor-footer-title {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #0f1f2f;
	position: relative;
}

.techqor-footer-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #0073ff;
	margin-top: 10px;
	border-radius: 2px;
}

/* Menu */
.techqor-footer-menu,
.techqor-footer-fallback-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.techqor-footer-menu li {
	margin-bottom: 14px;
}

.techqor-footer-menu a {
	color: #4a5a6a;
}

.techqor-footer-menu a:hover {
	color: #0073ff;
	transform: translateX(3px);
}

/* Social */
.techqor-footer-social {
	display: flex;
	gap: 14px;
	margin-top: 20px;
}

.techqor-social-link {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(0,0,0,0.04);
	color: #1a2a3a;

	transition: all 0.35s ease;
	overflow: hidden;
}

/* subtle inner ring */
.techqor-social-link::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
	transition: all 0.35s ease;
}

/* hover gradient glow */
.techqor-social-link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, #0073ff, #00c6ff);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 0;
}

/* icon */
.techqor-social-link svg {
	position: relative;
	z-index: 1;
	width: 18px;
	height: 18px;
	transition: all 0.35s ease;
}


/* Newsletter */
.techqor-footer-newsletter-form {
	position: relative;
	margin-top: 20px;
}

.techqor-footer-newsletter-form input {
	width: 100%;
	height: 56px;
	padding: 0 70px 0 18px;
	border-radius: 999px;
	border: none;
	background: #ffffff;
	color: #1a2a3a;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.techqor-footer-newsletter-form input::placeholder {
	color: #7a8a9a;
}

.techqor-footer-newsletter-form button {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: #0073ff;
	color: #fff;
	cursor: pointer;
	transition: 0.25s;
}

.techqor-footer-newsletter-form button:hover {
	transform: scale(1.05);
}

/* Bottom */
.techqor-footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.techqor-footer-bottom p {
	color: #6b7c8f;
	font-size: 0.95rem;
}

/* Back to top */
#techqor-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #0073ff;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
	.techqor-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.techqor-footer-grid {
		grid-template-columns: 1fr;
	}
}





/* =========================
RECENT POSTS - FEATURED STYLE
========================= */

/* MAIN BOX */
.widget {
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

/* HEADER */
.widget-title {
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	padding: 14px;
	margin: 0;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	background: #fafafa;
}

/* WRAPPER */
.tq-recent-posts {
	padding: 12px;
}

/* =========================
FEATURED POST
========================= */

.tq-featured-post {
	margin-bottom: 12px;
}

.tq-featured-thumb {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.tq-featured-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tq-featured-content {
	margin-top: 10px;
}

.tq-featured-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
	text-decoration: none;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tq-featured-title:hover {
	color: #0073e6;
}

/* =========================
SMALL POSTS LIST
========================= */

.tq-post-list {
	margin-top: 10px;
	border-top: 1px solid rgba(0,0,0,0.05);
}

.tq-post-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tq-post-item:last-child {
	border-bottom: none;
}

/* SMALL IMAGE */
.tq-post-thumb {
	flex: 0 0 95px;
	aspect-ratio: 16/9;
	border-radius: 6px;
	overflow: hidden;
}

.tq-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* TEXT */
.tq-post-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #111;
	text-decoration: none;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tq-post-title:hover {
	color: #0073e6;
}

.tq-post-date {
	font-size: 11px;
	color: #888;
	margin-top: 5px;
}