/*
Theme Name: FTECH
Author: FTECH
Description: Base WordPress theme for FTECH.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ftech
*/

:root {
  --ftech-color-text: #111827;
  --ftech-color-muted: #6b7280;
  --ftech-color-border: #e5e7eb;
  --ftech-color-primary: #0f766e;
  --ftech-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ftech-color-text);
  font-family: var(--ftech-font-body);
  line-height: 1.6;
  background: #ffffff;
}

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

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

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

.site-header,
.site-footer {
  padding: 24px;
  border-color: var(--ftech-color-border);
}

.site-header {
  border-bottom: 1px solid var(--ftech-color-border);
}

.site-footer {
  border-top: 1px solid var(--ftech-color-border);
  color: var(--ftech-color-muted);
}

.site-branding,
.site-content,
.site-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-content {
  padding: 40px 0;
}

.site-title {
  margin: 0;
  font-size: 24px;
}

.site-description {
  margin: 4px 0 0;
  color: var(--ftech-color-muted);
}

.primary-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.entry {
  margin-bottom: 40px;
}

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

.entry-meta {
  margin-bottom: 16px;
  color: var(--ftech-color-muted);
  font-size: 14px;
}
.sidebar-section .rpwe-block li{
      display: flex;
}
.sidebar-section ul li a{
  width: 40%;
}
.left_post{
  width: 60%;
}
.rpwe-title a{
  width: 100% !important;
}
.ez-toc-list{
  display: none;
}