@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');
/*
Theme Name: ExamTune Blog
File: assets/css/main.css
Purpose: Clean production stylesheet for ExamTune Blog
*/

/* =========================================================
   01. Fonts, Tokens & Base
   ========================================================= */

:root {
  --et-font-primary: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --brand-red: #d71920;
  --brand-red-dark: #b51218;
  --brand-red-soft: #dc1f26;
  --brand-red-hover: #b91c1c;
  --brand-black: #111111;
  --brand-black-soft: #171717;
  --brand-charcoal: #1f2937;
  --brand-muted: #6b7280;
  --brand-border: #e5e7eb;
  --brand-bg: #f5f7fb;
  --brand-surface: #ffffff;
  --brand-soft-red: #fff1f2;
  --brand-soft-gray: #f3f4f6;
  --brand-cream: #fff8f0;
  --et-red: #ac1e23;
  --et-dark: #111827;
  --et-text: #374151;
  --et-muted: #6b7280;
  --et-border: #e2e0eb;
  --et-soft-bg: #f6f7fb;
  --primary: var(--brand-black);
  --primary-dark: var(--brand-black);
  --accent: var(--brand-red);
  --orange: var(--brand-black);
  --blue: var(--brand-red);
  --text: var(--brand-charcoal);
  --muted: var(--brand-muted);
  --border: var(--brand-border);
  --bg: var(--brand-bg);
  --white: var(--brand-surface);
  --radius: 14px;
  --et-radius-sm: 6px;
  --et-radius-md: 8px;
  --et-radius-lg: 12px;
  --container: 1280px;
  --et-wide-container: 1560px;
  --et-desktop-gutter: 40px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 8px 24px rgba(17, 17, 17, 0.045);
  --et-shadow-soft: 0 4px 10px rgba(17, 24, 39, 0.06);
  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.24);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: var(--brand-black-soft);
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-accent {
  background: var(--brand-red-soft);
  color: #ffffff;
}

.btn-accent:hover {
  background: var(--brand-red-hover);
}

.empty-section {
  padding: 16px;
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: 999px;
  background: var(--brand-soft-red);
  color: var(--brand-red);
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  padding: 5px 8px;
  font-size: 11px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: var(--et-font-primary);
}

button {
  font: inherit;
  cursor: pointer;
  font-family: var(--et-font-primary);
}

input,
select,
textarea {
  font: inherit;
  font-family: var(--et-font-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
  font-family: var(--et-font-primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.button,
.cta-button {
  font-family: var(--et-font-primary);
}

/* =========================================================
   02. Layout & Containers
   ========================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.header-search-panel .container {
  padding-top: 14px;
  padding-bottom: 14px;
}

.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--brand-red);
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 28px 0 60px;
}

/* =========================================================
   03. Header & Navigation
   ========================================================= */

body.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  color: var(--brand-black);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.logo-mark {
  display: inline-block;
  color: var(--brand-black);
}

.logo-sub {
  margin-left: 3px;
  color: var(--brand-red);
  font-size: 16px;
  font-weight: 900;
}

.site-logo-img {
  display: block;
  max-width: 230px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.primary-nav {
  min-width: 0;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li {
  margin: 0;
  padding: 0;
}

.primary-nav a {
  position: relative;
  display: inline-block;
  color: var(--brand-black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current-menu-ancestor > a::after,
.primary-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.header-search-toggle {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid var(--brand-border);
  background: #ffffff;
  color: var(--brand-black);
  transition: color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.header-search-toggle:hover,
.site-header.is-search-open .header-search-toggle {
  color: var(--brand-red);
  border-color: rgba(215, 25, 32, 0.3);
  background: var(--brand-soft-red);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.header-search-toggle:active {
  transform: translateY(0);
  box-shadow: none;
}

.header-search {
  display: none !important;
}

.header-search-panel {
  background: #ffffff;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.header-search-panel:not([hidden]) {
  animation: examtuneHeaderSearchDrop 0.22s ease both;
}

.header-search-form {
  display: flex;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.header-search-form:focus-within {
  border-color: rgba(215, 25, 32, 0.32);
  box-shadow: 0 10px 26px rgba(215, 25, 32, 0.08);
}

.header-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 13px 15px;
  font-size: 15px;
  outline: none;
}

.header-search-form button {
  border: 0;
  padding: 0 22px;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 900;
}

.header-search-form button:hover {
  background: var(--brand-red-dark);
}

.mobile-menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-black);
  padding: 9px;
  transition: background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.mobile-menu-toggle:hover {
  background: #000000;
}

.mobile-menu-toggle:active {
  transform: scale(0.96);
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  background: #ffffff;
  border-top: 1px solid var(--brand-border);
  box-shadow: 0 18px 30px rgba(20, 20, 50, 0.12);
}

.mobile-drawer:not([hidden]) {
  animation: examtuneMobileDrawerDrop 0.22s ease both;
}

.mobile-drawer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 20px 22px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  transition: border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.mobile-search:focus-within {
  box-shadow: 0 10px 26px rgba(215, 25, 32, 0.08);
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
}

.header-search-form input:focus,
.mobile-search input:focus {
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.24);
}

.mobile-search button {
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: var(--brand-black);
  color: #ffffff;
  font-weight: 800;
}

.mobile-nav ul,
.mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 0;
  border-bottom: 1px solid var(--brand-border);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--brand-black);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current_page_item > a,
.mobile-nav a:hover,
.mobile-nav .current-menu-item > a,
.mobile-nav .current-menu-ancestor > a,
.mobile-nav .current_page_item > a {
  color: var(--brand-red);
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mobile-actions .btn {
  width: 100%;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 4px 22px rgba(17, 17, 17, 0.08);
  backdrop-filter: saturate(180%) blur(12px);
  will-change: auto;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  min-height: 82px;
  margin-bottom: 22px;
  padding: 14px 22px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--brand-black);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.footer-logo-card img {
  display: block;
  max-width: 240px;
  max-height: 54px;
  width: auto;
  height: auto;
}

.nav-menu,
.main-navigation {
  font-family: var(--et-font-primary);
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--et-font-primary);
}

/* =========================================================
   04. Homepage
   ========================================================= */

.home-hero {
  background: radial-gradient(circle at top right, rgba(220, 31, 38, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff, #f9fafb);
  border-bottom: 1px solid var(--brand-border);
  padding: 36px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 8px 0 12px;
  color: var(--brand-black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.home-hero p {
  max-width: 760px;
  color: var(--muted);
}

.hero-search {
  display: flex;
  max-width: 660px;
  margin-top: 20px;
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--brand-border);
  border-radius: 10px 0 0 10px;
  padding: 15px;
  font-size: 16px;
}

.hero-search input:focus {
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.24);
}

.hero-search button {
  border: 0;
  border-radius: 0 10px 10px 0;
  padding: 0 24px;
  background: var(--brand-red-soft);
  color: #ffffff;
  font-weight: 900;
}

.hero-search button:hover {
  background: var(--brand-red-hover);
}

.hero-cta-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
}

.hero-cta-card h3 {
  margin-top: 0;
}

.home-content {
  padding: 30px 0 50px;
}

.update-section {
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
}

.section-heading {
  position: relative;
  border-bottom: 1px solid var(--brand-border);
  background: #ffffff;
  color: var(--brand-black);
  padding: 12px 16px 11px 20px;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  bottom: 11px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--brand-red);
}

.section-heading h2 {
  margin: 0;
  color: var(--brand-black);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.update-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding: 16px;
  background: #ffffff;
}

.update-link-item {
  border-bottom: 1px dashed var(--brand-border);
  padding: 8px 0;
}

.update-link-item a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--brand-black);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition: color 0.18s ease;
}

.update-title-wrap {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.new-badge {
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 4px;
  background: var(--brand-red);
  color: #ffffff;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.update-link-item a:hover .new-badge {
  transform: translateY(-1px);
}

.view-more-bar {
  display: block;
  border-top: 1px solid rgba(215, 25, 32, 0.16);
  background: #ffffff;
  color: var(--brand-red);
  padding: 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.view-more-bar:hover {
  background: var(--brand-red);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
}

.view-more-bar:active {
  transform: translateY(0);
  box-shadow: none;
}

.sidebar-update-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-update-list li {
  border-bottom: 1px solid var(--brand-border);
  padding: 9px 0;
}

.sidebar-update-list li:last-child {
  border-bottom: 0;
}

.sidebar-update-list a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--brand-black);
  font-weight: 800;
}

.update-link-item a:hover,
.update-link-item a:hover .update-title,
.sidebar-update-list a:hover {
  color: var(--brand-red);
}

.archive-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.home-card-image {
  display: block;
  margin: -6px -6px 14px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.home-card-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.24s ease;
}

.home-card-image:hover img {
  transform: scale(1.025);
}

.hero-cta-card .home-card-image {
  margin: -4px -4px 16px;
}

.sidebar-card .home-card-image {
  margin: -4px -4px 14px;
}

.promo-card .home-card-image,
.app-card .home-card-image,
.sidebar-alert-card .home-card-image {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* =========================================================
   05. Article Layout
   ========================================================= */

.article-content {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 38px;
}

.article-category {
  display: inline-flex;
  border-radius: 999px;
  background: var(--brand-soft-red);
  color: var(--brand-red-soft);
  padding: 6px 12px;
  font-weight: 900;
}

.article-header h1 {
  margin: 16px 0;
  color: var(--brand-black);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.single-post h1.entry-title,
.single h1.entry-title,
.single-post .entry-title,
.single .entry-title {
  font-family: var(--et-font-primary);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #111827;
}

/* =========================================================
   06. Article Typography
   ========================================================= */

.entry-content {
  font-size: 18px;
}

.entry-content h4 {
  scroll-margin-top: 96px;
}

.entry-content h2 {
  scroll-margin-top: 96px;
  margin-top: 36px;
  border-bottom: 1px solid var(--brand-border);
  color: var(--brand-red-soft);
  padding-bottom: 10px;
}

.entry-content h3 {
  scroll-margin-top: 96px;
  color: var(--brand-black);
}

.entry-content th {
  background: var(--brand-black-soft);
  color: #ffffff;
  border: 1px solid var(--brand-border);
  padding: 12px;
  text-align: left;
}

.entry-content td {
  border: 1px solid var(--brand-border);
  padding: 12px;
  text-align: left;
}

.single-post .entry-content h2,
.single .entry-content h2 {
  font-size: 25px;
  line-height: 1.35;
  font-weight: 800;
  color: #111827;
}

.single-post .entry-content h3,
.single .entry-content h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #1f2937;
}

.single-post .entry-content,
.single .entry-content {
  font-family: var(--et-font-primary);
  font-size: 16px;
  line-height: 1.72;
  color: var(--et-text, #374151);
}

.single-post .entry-content p,
.single .entry-content p {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--et-text, #374151);
  margin-top: 0;
  margin-bottom: 18px;
}

.single-post .entry-content strong,
.single .entry-content strong,
.single-post .entry-content b,
.single .entry-content b {
  font-weight: 700;
  color: #111827;
}

/* =========================================================
   07. Article Meta Bar & Quick Overview
   ========================================================= */

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.article-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: #f9fafb;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.article-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-trust-bar strong {
  color: var(--brand-black);
}

.quick-facts-box {
  margin: 26px 0;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #fbfbfc;
  padding: 20px;
}

.quick-facts-box h2 {
  margin-top: 0;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-facts-grid div {
  min-height: 78px;
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 3px 10px rgba(17, 17, 17, 0.025);
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
}

.quick-facts-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.quick-facts-grid strong {
  display: block;
  color: var(--brand-black);
  line-height: 1.35;
}

.quick-facts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  border-top: 1px solid var(--brand-border);
  padding-top: 16px;
}

.quick-facts-actions .btn {
  padding: 10px 14px;
  font-size: 13px;
}

.quick-official-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 25, 32, 0.25);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-red);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.article-trust-icon svg,
.quick-fact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-post .article-trust-bar,
.single .article-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid var(--et-border, #e2e0eb);
  border-radius: 12px;
  overflow: hidden;
  margin: 18px 0 24px;
}

.single-post .article-trust-item,
.single .article-trust-item {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-right: 1px solid #eceff3;
}

.single-post .article-trust-item:last-child,
.single .article-trust-item:last-child {
  border-right: 0;
}

.single-post .article-trust-icon,
.single .article-trust-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--et-red, #ac1e23);
}

.single-post .article-trust-text,
.single .article-trust-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.single-post .article-trust-value,
.single .article-trust-value {
  display: block;
  font-size: 13.5px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-post .article-trust-label,
.single .article-trust-label {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: #6b7280;
}

.single-post .quick-facts,
.single .quick-facts {
  margin: 28px 0 30px;
}

.single-post .quick-facts > h2,
.single .quick-facts > h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  color: #111827;
}

.single-post .quick-facts-grid,
.single .quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.single-post .quick-fact-card,
.single .quick-fact-card {
  min-width: 0;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--et-border, #e2e0eb);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.single-post .quick-fact-icon,
.single .quick-fact-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.single-post .quick-fact-icon-red,
.single .quick-fact-icon-red {
  background: #fef2f2;
  color: #dc2626;
}

.single-post .quick-fact-icon-green,
.single .quick-fact-icon-green {
  background: #ecfdf3;
  color: #16a34a;
}

.single-post .quick-fact-icon-purple,
.single .quick-fact-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.single-post .quick-fact-icon-blue,
.single .quick-fact-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.single-post .quick-fact-icon-orange,
.single .quick-fact-icon-orange {
  background: #fff7ed;
  color: #f97316;
}

.single-post .quick-fact-label,
.single .quick-fact-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 500;
  color: #6b7280;
}

.single-post .quick-fact-value,
.single .quick-fact-value {
  display: block;
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
}

/* =========================================================
   08. Table of Contents
   ========================================================= */

body.admin-bar .article-toc {
  top: calc(var(--header-height) + 63px);
}

.article-toc::-webkit-scrollbar {
  width: 6px;
}

.article-toc::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
}

.toc-card {
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.toc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--brand-border);
  padding: 16px;
  color: var(--brand-black);
  cursor: pointer;
}

.toc-list {
  margin: 0;
  list-style: none !important;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding: 12px 16px 16px;
}

.toc-list ul,
.toc-list li {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

.toc-list li::marker {
  content: "";
}

.toc-list a {
  position: relative;
  display: block;
  margin: 2px 0;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  padding: 8px 10px 8px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.toc-list a:hover {
  background: rgba(215, 25, 32, 0.045);
  color: var(--brand-red);
}

.toc-list a.is-active {
  background: rgba(215, 25, 32, 0.065);
  color: var(--brand-red);
  font-weight: 900;
}

.toc-list a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}

.toc-list .toc-level-3 a,
.toc-list .h3 a {
  padding-left: 28px;
  color: #7b8494;
  font-size: 13px;
  font-weight: 750;
}

.toc-list .toc-level-3 a:hover,
.toc-list .toc-level-3 a.is-active,
.toc-list .h3 a:hover,
.toc-list .h3 a.is-active {
  color: var(--brand-red);
}

.toc-list .toc-level-3 a.is-active::before,
.toc-list .h3 a.is-active::before {
  left: 14px;
  width: 2px;
}

.toc-card.is-collapsed .toc-list {
  display: none;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 31px);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
  will-change: auto;
}

/* =========================================================
   09. Article Content Elements: Tables, Images, Lists
   ========================================================= */

.entry-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 16px;
}

.single-post .entry-content .wp-block-table,
.single .entry-content .wp-block-table {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--et-border, #e2e0eb);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.04);
}

.single-post .entry-content table,
.single .entry-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  margin: 0;
  background: #ffffff;
  font-family: var(--et-font-primary, system-ui, sans-serif);
}

.single-post .entry-content > table,
.single .entry-content > table {
  margin: 22px 0;
  border: 1px solid var(--et-border, #e2e0eb);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.04);
}

.single-post .entry-content table tbody td:first-child,
.single .entry-content table tbody td:first-child {
  font-weight: 600;
  color: #111827;
}

.single-post .entry-content table tbody tr:nth-child(even) td,
.single .entry-content table tbody tr:nth-child(even) td {
  background: #fafafe;
}

.single-post .entry-content table a,
.single .entry-content table a {
  color: var(--et-red, #ac1e23);
  font-weight: 700;
  text-decoration: none;
}

.single-post .entry-content table a:hover,
.single .entry-content table a:hover {
  text-decoration: underline;
}

.single-post .entry-content .wp-block-table figcaption,
.single .entry-content .wp-block-table figcaption {
  padding: 10px 14px 12px;
  font-size: 12px;
  line-height: 1.45;
  color: #6b7280;
  text-align: center;
  border-top: 1px solid #e2e0eb;
}

.single-post .entry-content ul,
.single-post .entry-content ol,
.single .entry-content ul,
.single .entry-content ol {
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 22px;
}

.single-post .entry-content li,
.single .entry-content li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--et-text, #374151);
  margin-bottom: 8px;
}

.single-post .entry-content li::marker,
.single .entry-content li::marker {
  color: var(--et-red, #ac1e23);
  font-weight: 700;
}

.single-post .entry-content table thead th,
.single .entry-content table thead th {
  background: #201467;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  text-align: left;
  border: 1px solid #201467;
  white-space: nowrap;
  padding: 9px 12px !important;
}

.single-post .entry-content table tbody td,
.single .entry-content table tbody td {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #374151;
  border: 1px solid #e2e0eb;
  vertical-align: top;
  padding: 9px 12px !important;
}

/* =========================================================
   10. CTA, PDF Box, FAQ, Related Posts
   ========================================================= */

.exam-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  border: 1px solid rgba(220, 31, 38, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  padding: 20px;
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
}

.exam-cta-box p {
  margin: 5px 0 0;
  color: var(--muted);
}

.exam-cta-content {
  min-width: 0;
}

.exam-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.official-source-link {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
}

.article-faq-box {
  margin-top: 28px;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 5px 18px rgba(20, 20, 50, 0.04);
}

.article-faq-box h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--brand-red-soft);
  font-size: 26px;
}

.article-faq-list {
  display: grid;
  gap: 10px;
}

.article-faq-item {
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: #fafafa;
  transition: color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.article-faq-item summary {
  cursor: pointer;
  color: var(--brand-black);
  padding: 14px 16px;
  font-weight: 900;
  line-height: 1.4;
  transition: color 0.18s ease,
    background-color 0.18s ease;
}

.article-faq-item summary:hover,
.article-faq-item[open] summary {
  color: var(--brand-red);
}

.article-faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.article-faq-item[open] {
  border-color: rgba(215, 25, 32, 0.24);
  background: #ffffff;
}

.exam-pdf-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #fffafa, #ffffff);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.045);
}

.exam-pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--brand-red);
}

.exam-pdf-content h2 {
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  color: var(--brand-black);
  font-size: 20px;
  line-height: 1.25;
}

.exam-pdf-content p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 1.55;
}

.exam-pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--brand-red);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.18);
}

.exam-pdf-button:hover {
  background: var(--brand-red-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.related-posts {
  margin-top: 42px;
}

.related-posts h2 {
  margin-bottom: 22px;
}

.related-card:hover {
  border-color: rgba(225, 29, 46, 0.25);
  transform: translateY(-1px);
}

.related-grid {
  grid-template-columns: minmax(0, 520px) !important;
  justify-content: start !important;
  display: grid !important;
  gap: 18px !important;
  align-items: start !important;
}

.related-grid.related-count-1 {
  justify-content: start !important;
  display: grid !important;
  gap: 18px !important;
  align-items: start !important;
  grid-template-columns: minmax(0, 520px) !important;
}

.related-grid.related-count-2,
.related-grid.related-count-3 {
  justify-content: start !important;
  display: grid !important;
  gap: 18px !important;
  align-items: start !important;
  grid-template-columns: repeat(2, minmax(0, 520px)) !important;
}

.related-card {
  padding: 18px;
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
  width: 100% !important;
  max-width: 520px !important;
  min-height: 148px !important;
  height: auto !important;
  max-height: none !important;
  background: #fff !important;
  border: 1px solid #dfe3ea !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.related-card a {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 18px !important;
  width: 100% !important;
  min-height: 148px !important;
  height: auto !important;
  padding: 22px 28px !important;
  text-decoration: none !important;
}

.related-card h3 {
  margin-top: 0;
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  color: #1f2937 !important;
  display: block !important;
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;
  max-height: none !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.related-card span {
  margin-top: 0;
  display: inline-block !important;
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
  color: #374151 !important;
}

.related-card p {
  display: none !important;
}

/* =========================================================
   11. Archive, Category, Search & 404
   ========================================================= */

.archive-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sidebar-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-category-list li {
  border-bottom: 1px solid var(--brand-border);
}

.sidebar-category-list li:last-child {
  border-bottom: 0;
}

.sidebar-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: var(--brand-black);
  font-size: 14px;
  font-weight: 800;
}

.sidebar-category-list strong {
  display: inline-flex;
  min-width: 26px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-soft-red);
  color: var(--brand-red);
  font-size: 12px;
}

.archive-hero {
  background: radial-gradient(circle at top right, rgba(215, 25, 32, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8fafc);
  border-bottom: 1px solid var(--brand-border);
  padding: 42px 0;
}

.archive-hero h1 {
  color: var(--brand-black);
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.archive-description {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}

.archive-search {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.archive-search input,
.empty-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 14px;
  font-size: 15px;
}

.archive-search input:focus,
.empty-search-form input:focus {
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.24);
}

.archive-search button,
.empty-search-form button {
  border: 0;
  background: var(--brand-red-soft);
  color: #ffffff;
  padding: 0 18px;
  font-weight: 900;
}

.archive-search button:hover,
.empty-search-form button:hover {
  background: var(--brand-red-hover);
}

.archive-content {
  padding: 32px 0 54px;
}

.archive-list {
  display: grid;
  gap: 16px;
}

.archive-card {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 5px 18px rgba(20, 20, 50, 0.04);
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
}

.archive-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
}

.archive-card h2 {
  margin: 0 0 8px;
  color: var(--brand-black);
  font-size: 23px;
  line-height: 1.25;
}

.archive-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.sidebar-category-list a:hover,
.archive-card strong {
  color: var(--brand-red);
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 8px 12px;
  font-weight: 800;
}

.archive-pagination .current {
  background: var(--brand-red);
  color: #ffffff;
}

.archive-empty {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 24px;
}

.search-summary {
  margin-bottom: 16px;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 18px;
  color: var(--muted);
}

.search-summary strong {
  color: var(--brand-red);
  font-size: 20px;
}

.search-empty {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 5px 18px rgba(20, 20, 50, 0.04);
}

.search-empty h2 {
  color: var(--brand-black);
  margin-top: 0;
  font-size: 28px;
}

.search-empty p {
  color: var(--muted);
}

.empty-search-form {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: #ffffff;
  margin: 22px 0;
  box-shadow: none;
}

.archive-pagination,
.search-suggestions {
  margin-top: 24px;
}

.search-suggestions h3 {
  margin-bottom: 12px;
  color: var(--brand-black);
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tags a {
  display: inline-flex;
  border-radius: 999px;
  background: var(--brand-soft-red);
  color: var(--brand-red);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.not-found-hero {
  background: radial-gradient(circle at top right, rgba(215, 25, 32, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8fafc);
  border-bottom: 1px solid var(--brand-border);
  padding: 56px 0;
}

.not-found-card {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  max-width: 820px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.not-found-card h1 {
  color: var(--brand-black);
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.not-found-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.archive-status-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: 999px;
  color: var(--brand-red);
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  padding: 5px 8px;
  font-size: 11px;
  background: #ffffff;
}

/* =========================================================
   12. Sidebar, Widgets & Cards
   ========================================================= */

.site-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.sidebar-card {
  margin-bottom: 20px;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
  transition: box-shadow 0.22s ease,
    transform 0.22s ease;
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--brand-black);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.promo-card {
  background: linear-gradient(135deg, #111111 0%, #9f1117 52%, #dc1f26 100%);
  color: #ffffff;
}

.promo-card h3,
.promo-card p {
  color: #ffffff;
}

.app-card {
  background: #fffaf3;
}

.sidebar-alert-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.sidebar-post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-post-list li {
  border-bottom: 1px solid var(--brand-border);
  padding: 9px 0;
}

.sidebar-post-list li:last-child {
  border-bottom: 0;
}

.sidebar-post-list a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--brand-black);
  font-weight: 800;
}

.sidebar-post-list a:hover {
  color: var(--brand-red);
}

.sidebar-post-title {
  color: var(--brand-black);
  font-weight: 800;
  line-height: 1.35;
}

.sidebar-post-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sidebar-empty {
  margin-bottom: 0;
  color: var(--muted);
}

.sidebar-status-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: 999px;
  background: var(--brand-soft-red);
  color: var(--brand-red);
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  padding: 4px 7px;
  font-size: 10px;
}

/* =========================================================
   13. Footer
   ========================================================= */

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a:hover,
.footer-grid a:hover {
  color: var(--brand-red);
}

.site-footer {
  padding-top: 48px;
  background: #1f2937;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(150px, 0.85fr) minmax(160px, 0.9fr) minmax(210px, 1fr);
  align-items: start;
  gap: 42px;
}

.footer-brand {
  max-width: 560px;
}

.footer-brand p {
  max-width: 540px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  text-transform: none;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 700;
}

.footer-contact-list small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.footer-contact-icon {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.28);
}

.footer-column h4,
.footer-app h4 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 17px;
}

.footer-column li {
  margin: 9px 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3,
.site-footer h4,
.footer-contact-list a:hover,
.footer-column a:hover {
  color: #ffffff;
}

.footer-app p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 36px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.56);
}

.footer-store-buttons {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.footer-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: 190px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.footer-store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.55);
  background: rgba(215, 25, 32, 0.95);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.24);
}

.footer-store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-store-button span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.footer-store-button small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.footer-store-button strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

/* =========================================================
   14. Popups, Floating Ads & WhatsApp
   ========================================================= */

body.admin-bar .article-reading-progress {
  top: 32px;
}

.article-reading-progress.is-visible {
  opacity: 1;
}

.article-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.08s linear;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(215, 25, 32, 0.24);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-black-soft);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
  will-change: auto;
}

.article-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 3px;
  background: rgba(215, 25, 32, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  will-change: auto;
}

.examtune-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(4px);
}

.examtune-popup-overlay:not([hidden]) {
  animation: examtunePopupFade 0.22s ease both;
}

.examtune-popup-modal {
  position: relative;
  width: min(620px, 100%);
  border-radius: 22px;
  padding: 34px 38px 30px;
  color: #ffffff;
  background: radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, var(--popup-start, #171717), var(--popup-end, #d71920));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.examtune-popup-overlay:not([hidden]) .examtune-popup-modal {
  animation: examtunePopupUp 0.26s ease both;
}

.examtune-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.examtune-popup-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
  font-size: 14px;
}

.examtune-popup-modal h2 {
  max-width: 520px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.examtune-popup-description {
  max-width: 540px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.examtune-popup-benefits {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.examtune-popup-benefits li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.examtune-popup-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
}

.examtune-popup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.examtune-popup-form input {
  min-width: 0;
  border: 0;
  border-radius: 12px;
  padding: 15px 16px;
  background: #ffffff;
  color: var(--brand-black);
  font-size: 16px;
  outline: none;
}

.examtune-popup-form button {
  border: 0;
  border-radius: 12px;
  padding: 0 24px;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.examtune-popup-form button:hover {
  background: var(--brand-red-dark);
}

.examtune-popup-privacy {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.examtune-popup-skip {
  display: block;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: underline;
  font-weight: 800;
  cursor: pointer;
}

.examtune-floating-ad {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 9998;
  width: min(980px, calc(100vw - 36px));
  transform: translateX(-50%);
  border-radius: 18px;
  background: var(--brand-black);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.32);
}

.examtune-floating-ad:not([hidden]) {
  animation: examtuneBannerUp 0.26s ease both;
}

.examtune-floating-ad-link {
  display: block;
  min-height: 86px;
  color: #ffffff;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
}

.examtune-floating-ad-link img {
  display: block;
  width: 100%;
  height: auto;
}

.examtune-floating-ad-link span {
  display: grid;
  gap: 5px;
  padding: 18px 150px 18px 22px;
}

.examtune-floating-ad-link strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
}

.examtune-floating-ad-link small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.examtune-floating-ad-link em {
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--brand-red);
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.examtune-floating-ad-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-black);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.16);
}

.floating-whatsapp {
  will-change: auto;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.28);
  transition: transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #1fbe5b;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.3);
  outline-offset: 3px;
}

.floating-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}

.floating-whatsapp__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-whatsapp__label {
  white-space: nowrap;
}

body.single-post .floating-whatsapp {
  right: 22px;
  left: auto;
}

body.single-post .back-to-top {
  bottom: 22px;
  left: 22px;
  right: auto;
}

body.single-post.has-examtune-floating-ad .back-to-top,
body.has-examtune-floating-ad .floating-whatsapp,
body.has-examtune-floating-ad .back-to-top {
  bottom: 124px;
}

/* =========================================================
   15. Responsive Rules
   ========================================================= */

@media (hover: hover) {
  .sidebar-card:hover,
  .archive-card:hover,
  .related-card:hover,
  .hero-cta-card:hover,
  .exam-cta-box:hover,
  .quick-facts-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.09);
  }
  
  .update-section:hover {
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
  }
  
  .single-post .entry-content table tbody tr:hover td,
  .single .entry-content table tbody tr:hover td {
    background: #f6f7fb;
  }
  
  .single-post .quick-fact-card:hover,
  .single .quick-fact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(172, 30, 35, 0.22);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }
  
  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 62px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .site-logo-img {
    max-width: 170px;
    max-height: 36px;
  }
  
  .page-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .site-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 58px;
  }
  
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .header-inner {
    min-height: 58px;
    gap: 12px;
  }
  
  .site-logo {
    font-size: 21px;
  }
  
  .site-logo-img {
    max-width: 150px;
    max-height: 32px;
  }
  
  .header-search-panel {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    width: 36px;
    height: 34px;
    border-radius: 8px;
    padding: 7px;
  }
  
  .mobile-menu-toggle span {
    margin: 4px 0;
  }
  
  .mobile-drawer-inner {
    padding: 12px;
  }
  
  .mobile-search {
    margin-bottom: 10px;
  }
  
  .mobile-search input {
    padding: 10px;
    font-size: 13px;
  }
  
  .mobile-nav a {
    padding: 10px 0;
    font-size: 13px;
  }
  
  .mobile-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }
  
  .mobile-actions .btn {
    padding: 9px 12px;
    font-size: 12px;
  }
  
  .home-hero {
    padding: 18px 0 22px;
  }
  
  .hero-grid {
    gap: 18px;
  }
  
  .hero-kicker,
  .archive-kicker {
    font-size: 11px;
  }
  
  .home-hero h1 {
    max-width: 92%;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.12;
  }
  
  .home-hero p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.55;
  }
  
  .hero-search {
    flex-direction: column;
    margin-top: 14px;
  }
  
  .hero-search input {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
  }
  
  .hero-search button {
    width: 100%;
    border-radius: 10px;
    padding: 11px;
    font-size: 14px;
  }
  
  .hero-cta-card {
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(20, 20, 50, 0.07);
  }
  
  .hero-cta-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 18px;
  }
  
  .hero-cta-card p {
    margin-bottom: 12px;
  }
  
  .home-content {
    padding-top: 18px;
  }
  
  .page-grid {
    gap: 20px;
  }
  
  .update-section {
    margin-bottom: 14px;
    border-radius: 12px;
  }
  
  .section-heading {
    padding: 9px 12px 9px 16px;
  }
  
  .section-heading::before {
    top: 8px;
    bottom: 8px;
    width: 3px;
  }
  
  .update-list-grid {
    grid-template-columns: 1fr;
    padding: 10px 12px;
  }
  
  .update-link-item {
    padding: 7px 0;
  }
  
  .update-link-item a {
    font-size: 12.5px;
    line-height: 1.35;
  }
  
  .new-badge {
    padding: 2px 4px;
    font-size: 8.5px;
  }
  
  .view-more-bar {
    padding: 7px;
    font-size: 10.5px;
  }
  
  .site-sidebar {
    margin-top: 4px;
  }
  
  .sidebar-card {
    margin-bottom: 14px;
    border-radius: 12px;
    padding: 16px;
  }
  
  .sidebar-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .sidebar-post-list li,
  .sidebar-update-list li {
    padding: 8px 0;
  }
  
  .article-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }
  
  .breadcrumbs {
    padding-top: 14px;
    font-size: 12px;
  }
  
  .article-toc {
    position: static;
    max-height: none;
    overflow: visible;
  }
  
  .toc-title {
    justify-content: space-between;
  }
  
  .toc-title::after {
    content: "Show";
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 800;
  }
  
  .toc-card:not(.is-collapsed) .toc-title::after {
    content: "Hide";
  }
  
  .toc-card {
    margin-bottom: 4px;
    border-radius: 10px;
  }
  
  .toc-list {
    max-height: 280px;
    padding: 10px 12px 12px;
  }
  
  .toc-list a {
    padding: 7px 9px 7px 12px;
    font-size: 13px;
  }
  
  .toc-list .toc-level-3 a,
  .toc-list .h3 a {
    padding-left: 24px;
    font-size: 12.5px;
  }
  
  .toc-list .toc-level-3 a.is-active::before,
  .toc-list .h3 a.is-active::before {
    left: 12px;
  }
  
  .article-content {
    border-radius: 12px;
    padding: 22px 16px;
  }
  
  .article-category {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .article-header h1 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.18;
  }
  
  .article-meta {
    gap: 8px;
    font-size: 13px;
  }
  
  .article-trust-bar {
    gap: 8px;
    margin: 12px 0 16px;
    padding: 11px 12px;
    font-size: 12px;
  }
  
  .article-trust-bar span {
    width: 100%;
    justify-content: space-between;
  }
  
  .quick-facts-box {
    border-radius: 12px;
  }
  
  .quick-facts-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .quick-facts-grid div {
    min-height: auto;
    padding: 10px;
  }
  
  .quick-facts-actions {
    flex-direction: column;
  }
  
  .exam-cta-box {
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  
  .quick-facts-actions .btn,
  .quick-official-link,
  .exam-cta-actions,
  .exam-cta-actions .btn {
    width: 100%;
  }
  
  .entry-content h4 {
    scroll-margin-top: 76px;
  }
  
  .entry-content h2 {
    scroll-margin-top: 76px;
    font-size: 21px;
  }
  
  .entry-content h3 {
    scroll-margin-top: 76px;
    font-size: 17px;
  }
  
  .entry-content th,
  .entry-content td {
    padding: 8px;
  }
  
  .article-faq-box {
    border-radius: 12px;
    margin-top: 22px;
    padding: 18px;
  }
  
  .article-faq-item summary {
    padding: 13px 14px;
    font-size: 14px;
  }
  
  .article-faq-item p {
    padding: 0 14px 14px;
    font-size: 14px;
  }
  
  .archive-hero,
  .not-found-hero {
    padding: 24px 0;
  }
  
  .archive-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .archive-hero h1,
  .not-found-card h1 {
    font-size: 28px;
  }
  
  .archive-search {
    border-radius: 10px;
  }
  
  .archive-search input {
    padding: 12px;
    font-size: 14px;
  }
  
  .archive-search button {
    padding: 0 14px;
    font-size: 13px;
  }
  
  .archive-content {
    padding: 20px 0 40px;
  }
  
  .archive-card {
    border-radius: 12px;
    padding: 16px;
  }
  
  .search-summary {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .quick-facts-box h2,
  .archive-card h2,
  .search-summary strong {
    font-size: 18px;
  }
  
  .search-empty {
    border-radius: 12px;
    padding: 18px;
  }
  
  .article-faq-box h2,
  .search-empty h2 {
    font-size: 22px;
  }
  
  .empty-search-form {
    flex-direction: column;
    gap: 8px;
    border: 0;
  }
  
  .empty-search-form input {
    border: 1px solid var(--brand-border);
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
  }
  
  .empty-search-form button {
    border-radius: 10px;
    padding: 12px;
  }
  
  .suggestion-tags {
    gap: 8px;
  }
  
  .suggestion-tags a {
    padding: 7px 10px;
    font-size: 12px;
  }
  
  .not-found-card {
    border-radius: 12px;
    padding: 20px;
  }
  
  .section-heading h2,
  .exam-cta-box strong,
  .archive-description,
  .archive-card p,
  .not-found-card p {
    font-size: 14px;
  }
  
  .status-badge,
  .archive-status-badge {
    padding: 4px 7px;
    font-size: 10px;
  }
  
  .back-to-top {
    right: 16px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .site-footer {
    padding-top: 28px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .site-footer h3,
  .site-footer h4 {
    margin-bottom: 8px;
  }
  
  .sidebar-category-list a,
  .sidebar-post-list a,
  .sidebar-post-title,
  .quick-facts-grid strong,
  .exam-cta-box p,
  .entry-content table,
  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 13px;
  }
  
  .footer-bottom {
    margin-top: 24px;
    padding: 14px 0;
    font-size: 13px;
  }
  
  .related-card,
  .examtune-popup-overlay {
    padding: 14px;
  }
  
  .examtune-popup-modal {
    border-radius: 18px;
    padding: 26px 20px 22px;
  }
  
  .examtune-popup-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }
  
  .examtune-popup-kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }
  
  .examtune-popup-modal h2 {
    font-size: 25px;
  }
  
  .examtune-popup-description {
    font-size: 15px;
  }
  
  .related-grid,
  .examtune-popup-form {
    grid-template-columns: 1fr;
  }
  
  .examtune-popup-form button {
    min-height: 46px;
  }
  
  .examtune-floating-ad {
    width: calc(100vw - 20px);
    bottom: 12px;
    border-radius: 14px;
  }
  
  .examtune-floating-ad-link {
    min-height: 72px;
    border-radius: 14px;
  }
  
  .examtune-floating-ad-link span {
    padding: 14px 52px 14px 14px;
  }
  
  .entry-content,
  .examtune-floating-ad-link strong {
    font-size: 16px;
  }
  
  .mobile-search button,
  .quick-facts-grid span,
  .official-source-link,
  .examtune-floating-ad-link small {
    font-size: 12px;
  }
  
  .examtune-floating-ad-link em {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin: 0 14px 14px;
    transform: none;
    padding: 8px 11px;
    font-size: 12px;
  }
  
  .examtune-floating-ad-close {
    top: -8px;
    right: -6px;
  }
  
  .home-card-image {
    margin-bottom: 12px;
    border-radius: 10px;
  }
  
  .floating-whatsapp {
    font-size: 12px;
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }
  
  .floating-whatsapp__label {
    display: none;
  }
  
  .floating-whatsapp__icon {
    width: 26px;
    height: 26px;
  }
  
  body.single-post .floating-whatsapp {
    right: 16px;
    bottom: 18px;
  }
  
  body.single-post .back-to-top {
    left: 16px;
    right: auto;
    bottom: 18px;
  }
  
  body.single-post.has-examtune-floating-ad .back-to-top,
  body.has-examtune-floating-ad .floating-whatsapp,
  body.has-examtune-floating-ad .back-to-top {
    bottom: 104px;
  }
  
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999;
  }
  
  body.admin-bar .site-header,
  .article-reading-progress,
  body.admin-bar .article-reading-progress {
    top: 0 !important;
  }
  
  .single-post .article-trust-item,
  .single .article-trust-item {
    border-right: 0;
    border-bottom: 1px solid #eceff3;
  }
  
  .single-post .article-trust-item:nth-child(odd),
  .single .article-trust-item:nth-child(odd) {
    border-right: 1px solid #eceff3;
  }
  
  .single-post .article-trust-item:nth-last-child(-n + 2),
  .single .article-trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  
  .single-post .article-trust-bar,
  .single .article-trust-bar,
  .single-post .quick-facts-grid,
  .single .quick-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header,
  body.admin-bar .article-reading-progress {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .quick-facts-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-logo-img {
    max-width: 132px;
    max-height: 29px;
  }
  
  .mobile-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  
  .has-scroll-reveal .reveal-on-scroll,
  .has-scroll-reveal .reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .header-search-panel:not([hidden]),
  .mobile-drawer:not([hidden]),
  .examtune-popup-overlay:not([hidden]),
  .examtune-popup-overlay:not([hidden]) .examtune-popup-modal,
  .examtune-floating-ad:not([hidden]) {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  
  .footer-logo-card {
    max-width: 260px;
    min-height: 72px;
    padding: 12px 18px;
  }
  
  .footer-logo-card img {
    max-width: 210px;
    max-height: 48px;
  }
  
  .footer-brand p,
  .footer-contact-list a {
    font-size: 14px;
  }
  
  .footer-socials a {
    width: 40px;
    height: 40px;
  }
  
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  
  .footer-store-button {
    width: 100%;
    min-width: 0;
  }
  
  .exam-pdf-box {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }
  
  .exam-pdf-button {
    width: 100%;
  }
}

@media (min-width: 1080px) {
  .related-grid.related-count-2,
  .related-grid.related-count-3 {
    grid-template-columns: repeat(2, minmax(0, 520px)) !important;
  }
}

@media (max-width: 760px) {
  .related-grid,
  .related-grid.related-count-1,
  .related-grid.related-count-2,
  .related-grid.related-count-3 {
    grid-template-columns: 1fr !important;
  }
  
  .related-card {
    height: 132px !important;
    max-height: 132px !important;
    max-width: 100% !important;
    min-height: 132px !important;
  }
  
  .related-card a {
    min-height: 132px !important;
    padding: 20px 20px !important;
    gap: 14px !important;
  }
  
  .related-card h3 {
    margin-bottom: 18px !important;
    font-size: 18px !important;
  }
  
  .related-card span {
    font-size: 15px !important;
  }
}

@media (min-width: 1024px) {
  :root {
    --et-wide-container: 1560px;
    --et-desktop-gutter: 40px;
  }
  
  .site-header .container,
  .site-header-inner,
  .header-inner,
  .main-header .container,
  .breadcrumb-wrap,
  .breadcrumbs-wrap,
  .site-breadcrumbs,
  .site-main > .container,
  .page-container,
  .site-container,
  .content-container,
  .front-page-container,
  .home-container,
  .archive-container,
  .search-container,
  .article-layout {
    width: calc(100% - var(--et-desktop-gutter)) !important;
    max-width: var(--et-wide-container) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .home .dashboard-layout,
  .home .home-layout,
  .home .homepage-layout,
  .home .front-page-layout,
  .home .content-sidebar-grid,
  .home .main-sidebar-grid {
    max-width: var(--et-wide-container) !important;
    width: calc(100% - var(--et-desktop-gutter)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 30px !important;
  }
  
  .home .home-main,
  .home .dashboard-main,
  .home .content-main,
  .home .latest-updates-wrap {
    min-width: 0;
  }
  
  .home .home-sidebar,
  .home .dashboard-sidebar,
  .home .site-sidebar,
  .home aside {
    max-width: 360px;
  }
  
  .single-post .article-layout,
  .single .article-layout {
    max-width: var(--et-wide-container) !important;
    width: calc(100% - var(--et-desktop-gutter)) !important;
    gap: 30px !important;
  }
  
  .single-post .article-toc,
  .single .article-toc {
    width: 300px;
    flex: 0 0 300px;
  }
  
  .single-post .article-content,
  .single .article-content {
    max-width: 1180px !important;
    width: 100% !important;
  }
  
  .single-post .entry-title,
  .single .entry-title {
    font-size: clamp(38px, 3.2vw, 44px);
    line-height: 1.15;
  }
  
  .single-post h1.entry-title,
  .single h1.entry-title,
  .single-post .article-content h1,
  .single .article-content h1 {
    font-size: 36px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
  }
  
  .single-post .entry-content h2,
  .single .entry-content h2 {
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
  }
  
  .single-post .entry-content h3,
  .single .entry-content h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
  }
  
  .single-post .entry-content h4,
  .single .entry-content h4 {
    font-size: 18px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
  }
}

@media (min-width: 1500px) {
  :root {
    --et-desktop-gutter: 48px;
  }
}

@media (max-width: 640px) {
  .single-post .entry-title,
  .single .entry-title {
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  
  .single-post .entry-content .wp-block-table,
  .single .entry-content .wp-block-table {
    margin: 18px 0;
    border-radius: 8px;
  }
  
  .single-post .entry-content table,
  .single .entry-content table {
    min-width: 560px;
  }
  
  .single-post h1.entry-title,
  .single h1.entry-title {
    letter-spacing: -0.5px;
    font-size: 28px !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
  }
  
  .single-post .article-content h1,
  .single .article-content h1 {
    font-size: 28px !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
  }
  
  .single-post .entry-content h2,
  .single .entry-content h2 {
    font-size: 22px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
  }
  
  .single-post .entry-content h3,
  .single .entry-content h3 {
    font-size: 19px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
  }
  
  .single-post .entry-content h4,
  .single .entry-content h4 {
    font-size: 17px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
  }
  
  .single-post .entry-content,
  .single .entry-content,
  .single-post .entry-content li,
  .single .entry-content li {
    font-size: 15.5px;
    line-height: 1.68;
  }
  
  .single-post .entry-content p,
  .single .entry-content p {
    font-size: 15.5px;
    line-height: 1.68;
    margin-bottom: 16px;
  }
  
  .single-post .entry-content ul,
  .single-post .entry-content ol,
  .single .entry-content ul,
  .single .entry-content ol {
    padding-left: 20px;
    margin-bottom: 18px;
  }
  
  .single-post .entry-content table thead th,
  .single .entry-content table thead th,
  .single-post .entry-content table tbody td,
  .single .entry-content table tbody td {
    font-size: 13px;
    line-height: 1.5;
    padding: 9px 11px !important;
  }
}

@media (max-width: 520px) {
  .single-post .article-trust-item,
  .single .article-trust-item {
    min-height: 58px;
    padding: 12px 13px;
    gap: 10px;
  }
  
  .single-post .article-trust-icon,
  .single .article-trust-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
  
  .single-post .article-trust-value,
  .single .article-trust-value {
    font-size: 12.5px;
  }
  
  .single-post .quick-facts-grid,
  .single .quick-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  
  .single-post .quick-fact-card,
  .single .quick-fact-card {
    min-height: 106px;
    padding: 13px;
    border-radius: 10px;
  }
  
  .single-post .quick-fact-icon,
  .single .quick-fact-icon {
    width: 30px;
    height: 30px;
    padding: 7px;
    margin-bottom: 8px;
  }
  
  .single-post .article-trust-label,
  .single .article-trust-label,
  .single-post .quick-fact-label,
  .single .quick-fact-label {
    font-size: 11.5px;
  }
  
  .single-post .quick-fact-value,
  .single .quick-fact-value {
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  .single-post .quick-facts-grid,
  .single .quick-facts-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   16. Accessibility & Utility Classes
   ========================================================= */

.has-scroll-reveal .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease,
    transform 0.48s ease;
  will-change: opacity, transform;
}

.has-scroll-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-scroll-reveal .reveal-delay-1 {
  transition-delay: 0.06s;
}

.has-scroll-reveal .reveal-delay-2 {
  transition-delay: 0.12s;
}

.has-scroll-reveal .reveal-delay-3 {
  transition-delay: 0.18s;
}

.has-scroll-reveal .entry-content > h2.reveal-on-scroll,
.has-scroll-reveal .entry-content > h3.reveal-on-scroll {
  transform: translateY(12px);
}

/* =========================================================
   Keyframes
   ========================================================= */

@keyframes examtuneHeaderSearchDrop {
  from {
      opacity: 0;
      transform: translateY(-8px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes examtuneMobileDrawerDrop {
  from {
      opacity: 0;
      transform: translateY(-8px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes examtunePopupFade {
  from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
}

@keyframes examtunePopupUp {
  from {
      opacity: 0;
      transform: translateY(14px) scale(0.98);
    }
  
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
}

@keyframes examtuneBannerUp {
  from {
      opacity: 0;
      transform: translateX(-50%) translateY(16px);
    }
  
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
}

/* =========================================================
   ExamTune Article Content Guardrails
   Ensures editor styling does not control frontend design
   ========================================================= */

/* Force article content to use theme typography */
.single-post .entry-content,
.single .entry-content,
.single-post .entry-content *,
.single .entry-content * {
  font-family: var(--et-font-primary, "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
}

/* Neutralize pasted font-family/font-size from Word, Google Docs, other sites */
.single-post .entry-content span,
.single .entry-content span,
.single-post .entry-content font,
.single .entry-content font,
.single-post .entry-content [style*="font-family"],
.single .entry-content [style*="font-family"],
.single-post .entry-content [style*="font-size"],
.single .entry-content [style*="font-size"],
.single-post .entry-content [face],
.single .entry-content [face],
.single-post .entry-content [size],
.single .entry-content [size] {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Body text always follows article system */
.single-post .entry-content p,
.single .entry-content p {
  font-size: 16px !important;
  line-height: 1.72 !important;
  font-weight: 400 !important;
  color: var(--et-text, #374151) !important;
  margin-top: 0;
  margin-bottom: 18px;
}

/* Inline spans inside paragraphs should not create random font styling */
.single-post .entry-content p span,
.single .entry-content p span,
.single-post .entry-content p font,
.single .entry-content p font {
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  background: transparent;
}

/* Lists remain consistent */
.single-post .entry-content ul,
.single-post .entry-content ol,
.single .entry-content ul,
.single .entry-content ol {
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 22px;
}

.single-post .entry-content li,
.single .entry-content li {
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: var(--et-text, #374151) !important;
  margin-bottom: 8px;
}

.single-post .entry-content li span,
.single .entry-content li span,
.single-post .entry-content li font,
.single .entry-content li font {
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}

/* Heading hierarchy controlled by theme, not editor inline styles */
.single-post .entry-content h2,
.single .entry-content h2 {
  font-size: 24px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  color: #111827 !important;
}

.single-post .entry-content h3,
.single .entry-content h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
}

.single-post .entry-content h4,
.single .entry-content h4 {
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
}

/* Strong text should look intentional, not random */
.single-post .entry-content strong,
.single .entry-content strong,
.single-post .entry-content b,
.single .entry-content b {
  font-weight: 700 !important;
  color: #111827;
}

/* Links controlled by theme */
.single-post .entry-content a,
.single .entry-content a {
  color: var(--et-red, #ac1e23) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-post .entry-content a:hover,
.single .entry-content a:hover {
  color: #8f171b !important;
}

/* Images inserted from editor */
.single-post .entry-content img,
.single .entry-content img {
  max-width: 100%;
  height: auto;
}

/* Prevent random editor alignment from breaking mobile */
@media (max-width: 640px) {
  .single-post .entry-content p,
  .single .entry-content p,
  .single-post .entry-content li,
  .single .entry-content li {
    font-size: 15.5px !important;
    line-height: 1.68 !important;
  }

  .single-post .entry-content .alignleft,
  .single .entry-content .alignleft,
  .single-post .entry-content .alignright,
  .single .entry-content .alignright {
    float: none;
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

/* =========================================================
   ExamTune Mahendra Exact Typography Layer
   Based on extracted Mahendra design tokens
   ========================================================= */

:root {
  --et-font-primary: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --et-mahendra-red: #e63746;
  --et-mahendra-navy: #201467;
  --et-mahendra-text: #1f2937;
  --et-mahendra-muted: #6b6f85;
  --et-mahendra-border: #e2e0eb;
  --et-mahendra-soft: #f8f8fc;

  --et-fs-xs: 12px;
  --et-fs-sm: 13px;
  --et-fs-md: 14px;
  --et-fs-lg: 14.4px;
  --et-fs-xl: 15px;
  --et-fs-2xl: 16px;
  --et-fs-3xl: 18px;
  --et-fs-4xl: 20px;

  --et-lh-base: 20px;
  --et-radius-xs: 4px;
  --et-radius-sm: 6.4px;
  --et-radius-md: 8px;
  --et-radius-lg: 11.2px;
}

/* Global article font lock */
.single-post .article-content,
.single .article-content,
.single-post .article-content *,
.single .article-content * {
  font-family: var(--et-font-primary) !important;
}

/* Article card/title area */
.single-post h1.entry-title,
.single h1.entry-title,
.single-post .article-content h1.entry-title,
.single .article-content h1.entry-title {
  font-size: 24px !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
  letter-spacing: -0.35px !important;
  color: var(--et-mahendra-navy) !important;
}

/* Category badge above title */
.single-post .post-category,
.single .post-category,
.single-post .article-category,
.single .article-category,
.single-post .category-badge,
.single .category-badge {
  font-size: var(--et-fs-sm) !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  color: var(--et-mahendra-red) !important;
  background: rgba(230, 55, 70, 0.08) !important;
  border-radius: 50px !important;
  padding: 6px 12px !important;
}

/* Article meta bar */
.single-post .article-trust-bar,
.single .article-trust-bar {
  border-color: var(--et-mahendra-border) !important;
  border-radius: var(--et-radius-lg) !important;
}

.single-post .article-trust-value,
.single .article-trust-value {
  font-size: var(--et-fs-sm) !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  color: var(--et-mahendra-text) !important;
}

.single-post .article-trust-label,
.single .article-trust-label {
  font-size: var(--et-fs-xs) !important;
  line-height: 16px !important;
  font-weight: 500 !important;
  color: var(--et-mahendra-muted) !important;
}

.single-post .article-trust-icon,
.single .article-trust-icon {
  color: var(--et-mahendra-red) !important;
}

/* Quick Overview heading */
.single-post .quick-facts > h2,
.single .quick-facts > h2 {
  font-size: var(--et-fs-4xl) !important;
  line-height: 28px !important;
  font-weight: 800 !important;
  color: var(--et-mahendra-text) !important;
}

/* Quick Overview cards */
.single-post .quick-fact-card,
.single .quick-fact-card {
  border-color: var(--et-mahendra-border) !important;
  border-radius: var(--et-radius-lg) !important;
}

.single-post .quick-fact-label,
.single .quick-fact-label {
  font-size: var(--et-fs-xs) !important;
  line-height: 16px !important;
  font-weight: 500 !important;
  color: var(--et-mahendra-muted) !important;
}

.single-post .quick-fact-value,
.single .quick-fact-value {
  font-size: var(--et-fs-sm) !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  color: var(--et-mahendra-text) !important;
}

/* Main article body */
.single-post .entry-content,
.single .entry-content {
  font-size: var(--et-fs-xl) !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  color: var(--et-mahendra-text) !important;
}

/* Paragraphs */
.single-post .entry-content p,
.single .entry-content p {
  font-size: var(--et-fs-xl) !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  color: var(--et-mahendra-text) !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

/* H2 inside article body */
.single-post .entry-content h2,
.single .entry-content h2 {
  font-size: var(--et-fs-4xl) !important;
  line-height: 28px !important;
  font-weight: 800 !important;
  color: var(--et-mahendra-red) !important;
  letter-spacing: -0.2px !important;
  margin-top: 30px !important;
  margin-bottom: 12px !important;
}

/* H3 inside article body */
.single-post .entry-content h3,
.single .entry-content h3 {
  font-size: var(--et-fs-3xl) !important;
  line-height: 26px !important;
  font-weight: 700 !important;
  color: var(--et-mahendra-navy) !important;
  margin-top: 24px !important;
  margin-bottom: 10px !important;
}

/* H4 inside article body */
.single-post .entry-content h4,
.single .entry-content h4 {
  font-size: var(--et-fs-2xl) !important;
  line-height: 24px !important;
  font-weight: 700 !important;
  color: var(--et-mahendra-text) !important;
  margin-top: 20px !important;
  margin-bottom: 8px !important;
}

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol,
.single .entry-content ul,
.single .entry-content ol {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  padding-left: 22px !important;
}

.single-post .entry-content li,
.single .entry-content li {
  font-size: var(--et-fs-xl) !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  color: var(--et-mahendra-text) !important;
  margin-bottom: 6px !important;
}

.single-post .entry-content li::marker,
.single .entry-content li::marker {
  color: var(--et-mahendra-red) !important;
  font-weight: 700 !important;
}

/* Bold text */
.single-post .entry-content strong,
.single .entry-content strong,
.single-post .entry-content b,
.single .entry-content b {
  font-weight: 700 !important;
  color: #111827 !important;
}

/* Links */
.single-post .entry-content a,
.single .entry-content a {
  color: var(--et-mahendra-red) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.single-post .entry-content a:hover,
.single .entry-content a:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* Tables: exact compact Mahendra-style density */
.single-post .entry-content .wp-block-table,
.single .entry-content .wp-block-table {
  border: 1px solid var(--et-mahendra-border) !important;
  border-radius: var(--et-radius-md) !important;
  overflow-x: auto !important;
  background: #ffffff !important;
  margin: 18px 0 22px !important;
}

.single-post .entry-content table,
.single .entry-content table {
  width: 100% !important;
  min-width: 620px !important;
  border-collapse: collapse !important;
  font-size: var(--et-fs-md) !important;
  line-height: var(--et-lh-base) !important;
}

.single-post .entry-content table thead th,
.single .entry-content table thead th {
  background: var(--et-mahendra-navy) !important;
  color: #ffffff !important;
  font-size: var(--et-fs-md) !important;
  line-height: var(--et-lh-base) !important;
  font-weight: 700 !important;
  text-align: left !important;
  padding: 8px 10px !important;
  border: 1px solid var(--et-mahendra-navy) !important;
}

.single-post .entry-content table tbody td,
.single .entry-content table tbody td {
  font-size: var(--et-fs-md) !important;
  line-height: var(--et-lh-base) !important;
  font-weight: 400 !important;
  color: var(--et-mahendra-text) !important;
  padding: 8px 10px !important;
  border: 1px solid var(--et-mahendra-border) !important;
  vertical-align: top !important;
}

.single-post .entry-content table tbody td:first-child,
.single .entry-content table tbody td:first-child {
  font-weight: 600 !important;
  color: #111827 !important;
}

.single-post .entry-content table tbody tr:nth-child(even) td,
.single .entry-content table tbody tr:nth-child(even) td {
  background: #fafafe !important;
}

/* TOC typography only: no layout/design change */
.single-post .article-toc,
.single .article-toc,
.single-post .article-toc *,
.single .article-toc * {
  font-family: var(--et-font-primary) !important;
}

.single-post .article-toc h2,
.single .article-toc h2,
.single-post .article-toc h3,
.single .article-toc h3,
.single-post .toc-title,
.single .toc-title {
  font-size: var(--et-fs-2xl) !important;
  line-height: 24px !important;
  font-weight: 700 !important;
}

.single-post .article-toc a,
.single .article-toc a {
  font-size: var(--et-fs-md) !important;
  line-height: 20px !important;
  font-weight: 600 !important;
}

/* CTA/PDF/FAQ/Related typography only */
.single-post .cta-box h2,
.single .cta-box h2,
.single-post .pdf-download-box h2,
.single .pdf-download-box h2,
.single-post .faq-box h2,
.single .faq-box h2,
.single-post .related-posts h2,
.single .related-posts h2 {
  font-size: var(--et-fs-4xl) !important;
  line-height: 28px !important;
  font-weight: 800 !important;
}

.single-post .cta-box p,
.single .cta-box p,
.single-post .pdf-download-box p,
.single .pdf-download-box p,
.single-post .faq-box p,
.single .faq-box p {
  font-size: var(--et-fs-xl) !important;
  line-height: 24px !important;
}

.single-post .related-card h3,
.single .related-card h3,
.single-post .faq-item h3,
.single .faq-item h3 {
  font-size: var(--et-fs-2xl) !important;
  line-height: 24px !important;
  font-weight: 700 !important;
}

/* Buttons */
.single-post .article-content .btn,
.single .article-content .btn,
.single-post .article-content .button,
.single .article-content .button,
.single-post .article-content button,
.single .article-content button {
  font-size: var(--et-fs-md) !important;
  line-height: 20px !important;
  font-weight: 700 !important;
  border-radius: var(--et-radius-md) !important;
}

/* Mobile exact scale */
@media (max-width: 640px) {
  .single-post h1.entry-title,
  .single h1.entry-title,
  .single-post .article-content h1.entry-title,
  .single .article-content h1.entry-title {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .single-post .entry-content,
  .single .entry-content,
  .single-post .entry-content p,
  .single .entry-content p,
  .single-post .entry-content li,
  .single .entry-content li {
    font-size: var(--et-fs-md) !important;
    line-height: 22px !important;
  }

  .single-post .entry-content h2,
  .single .entry-content h2,
  .single-post .quick-facts > h2,
  .single .quick-facts > h2 {
    font-size: var(--et-fs-3xl) !important;
    line-height: 26px !important;
  }

  .single-post .entry-content h3,
  .single .entry-content h3 {
    font-size: var(--et-fs-2xl) !important;
    line-height: 24px !important;
  }

  .single-post .entry-content h4,
  .single .entry-content h4 {
    font-size: var(--et-fs-xl) !important;
    line-height: 22px !important;
  }

  .single-post .entry-content table,
  .single .entry-content table {
    min-width: 560px !important;
  }

  .single-post .entry-content table thead th,
  .single .entry-content table thead th,
  .single-post .entry-content table tbody td,
  .single .entry-content table tbody td {
    font-size: var(--et-fs-sm) !important;
    line-height: 18px !important;
    padding: 7px 9px !important;
  }
}

/* =========================================================
   Phase 4: Canonical Article Typography System
   Compact Sora article scale; tables remain controlled by Phase 3.
   ========================================================= */

/* Main article title */
body.single-post h1.entry-title,
body.single-post .entry-title,
body.single-post .article-title,
body.single-post .post-title,
body.single .article-title,
body.single h1.entry-title {
  font-size: 28px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.25px !important;
  color: #111827 !important;
}

/* Category badge above title */
body.single-post .article-content .category-badge,
body.single-post .article-content .post-category,
body.single-post .article-content .article-category {
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
  padding: 5px 11px !important;
}

/* Breadcrumbs */
body.single-post .breadcrumbs,
body.single-post .breadcrumb,
body.single-post .site-breadcrumbs,
body.single-post .breadcrumbs a,
body.single-post .breadcrumb a,
body.single-post .site-breadcrumbs a {
  font-size: 13px !important;
  line-height: 18px !important;
  font-weight: 500 !important;
}

/* Article body */
body.single-post .entry-content,
body.single-post .entry-content p {
  font-size: 15.25px !important;
  line-height: 1.66 !important;
  font-weight: 400 !important;
  color: #1f2937 !important;
}

body.single-post .entry-content p {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

/* Article H2 */
body.single-post .entry-content h1,
body.single-post .entry-content h2 {
  font-size: 20px !important;
  line-height: 1.32 !important;
  font-weight: 700 !important;
  letter-spacing: -0.15px !important;
  color: #e63746 !important;
  margin-top: 26px !important;
  margin-bottom: 9px !important;
}

/* Article H3 */
body.single-post .entry-content h3 {
  font-size: 17px !important;
  line-height: 1.38 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  color: #201467 !important;
  margin-top: 20px !important;
  margin-bottom: 7px !important;
}

/* Article H4 */
body.single-post .entry-content h4 {
  font-size: 15.5px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-top: 16px !important;
  margin-bottom: 6px !important;
}

/* Lists */
body.single-post .entry-content ul,
body.single-post .entry-content ol {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  padding-left: 21px !important;
}

body.single-post .entry-content li {
  font-size: 15.25px !important;
  line-height: 1.66 !important;
  font-weight: 400 !important;
  margin-bottom: 5px !important;
}

/* Strong/bold text */
body.single-post .entry-content strong,
body.single-post .entry-content b {
  font-weight: 700 !important;
  color: #111827 !important;
}

/* Article meta bar */
body.single-post .article-trust-value {
  font-size: 13px !important;
  line-height: 17px !important;
  font-weight: 700 !important;
}

body.single-post .article-trust-label {
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 500 !important;
}

body.single-post .article-trust-icon {
  width: 20px !important;
  height: 20px !important;
  flex-basis: 20px !important;
}

/* Quick Overview */
body.single-post .quick-facts > h2 {
  font-size: 19px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  letter-spacing: -0.1px !important;
  color: #111827 !important;
}

body.single-post .quick-fact-label {
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 500 !important;
}

body.single-post .quick-fact-value {
  font-size: 13.5px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
}

body.single-post .quick-fact-icon {
  width: 30px !important;
  height: 30px !important;
  padding: 7px !important;
}

/* TOC */
body.single-post .article-toc h2,
body.single-post .article-toc h3,
body.single-post .toc-title {
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 700 !important;
  letter-spacing: -0.05px !important;
}

body.single-post .article-toc a {
  font-size: 13.25px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

body.single-post .article-toc a.active,
body.single-post .article-toc a.is-active,
body.single-post .article-toc li.active > a,
body.single-post .article-toc li.is-active > a {
  font-weight: 700 !important;
}

/* CTA / PDF / FAQ / Related headings */
body.single-post .cta-box h2,
body.single-post .cta-box h3,
body.single-post .pdf-download-box h2,
body.single-post .pdf-download-box h3,
body.single-post .faq-box h2,
body.single-post .related-posts h2 {
  font-size: 19px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

body.single-post .cta-box p,
body.single-post .pdf-download-box p,
body.single-post .faq-box p {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

body.single-post .faq-item h3,
body.single-post .related-card h3 {
  font-size: 15.5px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}

/* Buttons inside article */
body.single-post .article-content a.btn,
body.single-post .article-content .btn,
body.single-post .article-content .button,
body.single-post .article-content button {
  font-size: 13.5px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
}

/* Mobile compact scale */
@media (max-width: 640px) {
  body.single-post h1.entry-title,
  body.single-post .entry-title,
  body.single-post .article-title,
  body.single-post .post-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }

  body.single-post .entry-content,
  body.single-post .entry-content p,
  body.single-post .entry-content li {
    font-size: 14.75px !important;
    line-height: 1.66 !important;
  }

  body.single-post .entry-content h1,
  body.single-post .entry-content h2,
  body.single-post .quick-facts > h2 {
    font-size: 18.5px !important;
    line-height: 1.35 !important;
  }

  body.single-post .entry-content h3 {
    font-size: 16.5px !important;
    line-height: 1.4 !important;
  }

  body.single-post .entry-content h4 {
    font-size: 15.25px !important;
    line-height: 1.42 !important;
  }

  body.single-post .article-toc a {
    font-size: 13px !important;
  }

  body.single-post .quick-fact-value {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}

/* =========================================================
   Phase 1: Accepted Article Component Contracts
   Preserve icon and top-section component hooks before cleanup.
   ========================================================= */

.single-post .article-trust-bar,
.single .article-trust-bar {
  min-width: 0;
}

.single-post .article-trust-item,
.single .article-trust-item,
.single-post .quick-fact-card,
.single .quick-fact-card,
.single-post .exam-pdf-box,
.single .exam-pdf-box,
.single-post .exam-pdf-content,
.single .exam-pdf-content {
  min-width: 0;
}

.single-post .article-trust-icon,
.single .article-trust-icon,
.single-post .quick-fact-icon,
.single .quick-fact-icon,
.single-post .exam-pdf-icon,
.single .exam-pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.single-post .article-trust-icon > svg,
.single .article-trust-icon > svg,
.single-post .quick-fact-icon > svg,
.single .quick-fact-icon > svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-post .exam-pdf-icon > svg,
.single .exam-pdf-icon > svg {
  display: block;
  flex: 0 0 auto;
}

.single-post .article-trust-text,
.single .article-trust-text,
.single-post .quick-fact-label,
.single .quick-fact-label,
.single-post .quick-fact-value,
.single .quick-fact-value,
.single-post .exam-pdf-content,
.single .exam-pdf-content {
  overflow-wrap: anywhere;
}

.single-post .article-trust-bar,
.single .article-trust-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-post .article-trust-item,
.single .article-trust-item {
  min-width: 0;
}

.single-post .article-trust-text,
.single .article-trust-text {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.single-post .article-trust-value,
.single .article-trust-value,
.single-post .article-trust-label,
.single .article-trust-label {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 1180px) {
  .single-post .article-trust-bar,
  .single .article-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-post .article-trust-item,
  .single .article-trust-item {
    border-right: 0;
    border-bottom: 1px solid #eceff3;
  }

  .single-post .article-trust-item:nth-child(odd),
  .single .article-trust-item:nth-child(odd) {
    border-right: 1px solid #eceff3;
  }

  .single-post .article-trust-item:nth-last-child(-n + 2),
  .single .article-trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 340px) {
  .single-post .article-trust-bar,
  .single .article-trust-bar {
    grid-template-columns: 1fr;
  }

  .single-post .article-trust-item,
  .single .article-trust-item,
  .single-post .article-trust-item:nth-child(odd),
  .single .article-trust-item:nth-child(odd) {
    border-right: 0;
  }

  .single-post .article-trust-item:nth-last-child(-n + 2),
  .single .article-trust-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #eceff3;
  }

  .single-post .article-trust-item:last-child,
  .single .article-trust-item:last-child {
    border-bottom: 0;
  }
}

.single-post .quick-fact-icon-red,
.single .quick-fact-icon-red {
  background: #fef2f2;
  color: #dc2626;
}

.single-post .quick-fact-icon-green,
.single .quick-fact-icon-green {
  background: #ecfdf3;
  color: #16a34a;
}

.single-post .quick-fact-icon-purple,
.single .quick-fact-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.single-post .quick-fact-icon-blue,
.single .quick-fact-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.single-post .quick-fact-icon-orange,
.single .quick-fact-icon-orange {
  background: #fff7ed;
  color: #f97316;
}

/* =========================================================
   Phase 2: Mobile Overflow And Fixed Element Stabilization
   ========================================================= */

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    position: relative;
  }

  .site,
  .site-main,
  .site-content,
  .page,
  .home-page,
  .archive-page,
  .article-page,
  .container,
  .article-layout,
  .article-content,
  .entry-content,
  .site-footer,
  .site-footer .container {
    max-width: 100%;
    min-width: 0;
  }

  .site-header .container,
  .header-inner,
  .site-logo,
  .site-branding {
    max-width: 100%;
    min-width: 0;
  }

  .site-logo-img,
  .site-logo img {
    max-width: min(190px, calc(100vw - 96px));
  }

  .mobile-menu-toggle {
    flex: 0 0 auto;
  }

  .site-footer {
    width: 100%;
    overflow-x: clip;
    background: #1f2937;
  }

  .footer-grid,
  .footer-brand,
  .footer-column,
  .footer-app,
  .footer-bottom,
  .footer-bottom-inner,
  .footer-contact-list,
  .footer-socials,
  .footer-store-buttons {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer-logo-card {
    max-width: 100%;
  }

  .footer-logo-card img {
    max-width: 100%;
    height: auto;
  }

  .footer-brand p,
  .footer-app p,
  .footer-column a,
  .footer-contact-list a,
  .footer-store-button,
  .footer-store-button span,
  .footer-store-button small,
  .footer-store-button strong,
  .footer-bottom-inner {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer-contact-list a {
    width: 100%;
    max-width: 100%;
  }

  .footer-contact-icon,
  .footer-store-icon {
    flex: 0 0 auto;
  }

  .footer-socials {
    max-width: 100%;
  }

  .footer-socials a {
    flex: 0 0 auto;
  }

  .footer-store-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .entry-content,
  .entry-content p,
  .entry-content li,
  .entry-content a,
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6,
  .article-header,
  .article-header h1,
  .entry-title,
  .quick-fact-value,
  .article-trust-value,
  .related-card h3,
  .related-card span,
  .exam-pdf-content,
  .exam-pdf-button {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .single-post .entry-content .wp-block-table,
  .single .entry-content .wp-block-table {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .single-post .entry-content .wp-block-table table,
  .single .entry-content .wp-block-table table {
    width: 100% !important;
    min-width: 560px !important;
  }

  .single-post .entry-content > table,
  .single .entry-content > table {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .single-post .entry-content > table th,
  .single .entry-content > table th,
  .single-post .entry-content > table td,
  .single .entry-content > table td {
    min-width: 120px;
  }

  .single-post .entry-content table th,
  .single .entry-content table th,
  .single-post .entry-content table td,
  .single .entry-content table td {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .related-grid,
  .related-grid.related-count-1,
  .related-grid.related-count-2,
  .related-grid.related-count-3 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .related-card {
    width: 100% !important;
    height: auto !important;
    min-height: 132px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .related-card a {
    min-width: 0 !important;
    min-height: 132px !important;
    height: auto !important;
  }

  .related-card h3 {
    max-height: none !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: unset !important;
  }

  .examtune-floating-ad {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100% - 20px);
    transform: none;
  }

  .examtune-floating-ad-close {
    right: 0;
  }

  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .back-to-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(24px + env(safe-area-inset-bottom));
  }

  body.single-post .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  body.single-post.has-examtune-floating-ad .back-to-top,
  body.has-examtune-floating-ad .floating-whatsapp,
  body.has-examtune-floating-ad .back-to-top {
    bottom: calc(116px + env(safe-area-inset-bottom));
  }

  body.has-examtune-floating-ad .floating-whatsapp {
    bottom: calc(176px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .single-post .quick-facts-grid,
  .single .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .footer-store-button {
    padding-inline: 12px;
    gap: 10px;
  }

  .footer-socials {
    gap: 10px;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
  }
}

/* Article trust bar responsive correction: prevent cramped meta text from splitting mid-word. */
.single-post .article-trust-text,
.single .article-trust-text,
.single-post .article-trust-value,
.single .article-trust-value,
.single-post .article-trust-label,
.single .article-trust-label {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.single-post .article-trust-value,
.single .article-trust-value {
  overflow-wrap: break-word;
}

/* =========================================================
   Phase 3: Canonical Article Table System
   Desktop tables stay full-width; mobile tables scroll locally.
   ========================================================= */

/* Real WordPress content media safety: keep editor media inside the article column. */
.single-post .entry-content,
.single .entry-content {
  max-width: 100%;
  min-width: 0;
}

.single-post .entry-content > :where(div, section, aside, blockquote, pre),
.single .entry-content > :where(div, section, aside, blockquote, pre) {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.single-post .entry-content :where(p, li, a, blockquote, figcaption),
.single .entry-content :where(p, li, a, blockquote, figcaption),
.single-post .entry-content > :where(div, section, aside, blockquote) *,
.single .entry-content > :where(div, section, aside, blockquote) * {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.single-post .entry-content pre,
.single .entry-content pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.single-post .entry-content figure,
.single .entry-content figure,
.single-post .entry-content .wp-block-image,
.single .entry-content .wp-block-image {
  max-width: 100%;
  box-sizing: border-box;
}

.single-post .entry-content .wp-caption,
.single .entry-content .wp-caption,
.single-post .entry-content figure.wp-caption,
.single .entry-content figure.wp-caption {
  width: fit-content !important;
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
}

.single-post .entry-content img,
.single .entry-content img,
.single-post .entry-content figure img,
.single .entry-content figure img,
.single-post .entry-content .wp-block-image img,
.single .entry-content .wp-block-image img,
.single-post .entry-content .wp-caption img,
.single .entry-content .wp-caption img {
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
}

.single-post .entry-content figcaption,
.single .entry-content figcaption,
.single-post .entry-content .wp-caption-text,
.single .entry-content .wp-caption-text {
  width: auto !important;
  max-width: 100% !important;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: normal;
}

.single-post .entry-content .wp-block-table,
.single .entry-content .wp-block-table,
.single-post .entry-content figure.wp-block-table,
.single .entry-content figure.wp-block-table,
.single-post .entry-content .examtune-table-scroll,
.single .entry-content .examtune-table-scroll {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  margin: 18px 0 22px !important;
  overflow-x: auto !important;
  overflow-y: hidden;
  border: 1px solid var(--et-mahendra-border, #e2e0eb) !important;
  border-radius: var(--et-radius-md, 8px) !important;
  background: #ffffff !important;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.04);
  -webkit-overflow-scrolling: touch;
}

.single-post .entry-content .wp-block-table table,
.single .entry-content .wp-block-table table,
.single-post .entry-content figure.wp-block-table table,
.single .entry-content figure.wp-block-table table,
.single-post .entry-content .examtune-table-scroll > table,
.single .entry-content .examtune-table-scroll > table,
.single-post .entry-content > table,
.single .entry-content > table {
  width: 100% !important;
  min-width: 620px !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  table-layout: auto;
  background: #ffffff !important;
  font-family: var(--et-font-primary, system-ui, sans-serif);
}

.single-post .entry-content > table,
.single .entry-content > table {
  margin: 18px 0 22px !important;
  border: 1px solid var(--et-mahendra-border, #e2e0eb) !important;
  border-radius: var(--et-radius-md, 8px) !important;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.04);
  box-sizing: border-box;
}

.single-post .entry-content table thead th,
.single .entry-content table thead th {
  background: var(--et-mahendra-navy, #201467) !important;
  color: #ffffff !important;
  border: 1px solid var(--et-mahendra-navy, #201467) !important;
  padding: 8px 10px !important;
  font-size: 13.5px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.single-post .entry-content table tbody td,
.single .entry-content table tbody td {
  border: 1px solid var(--et-mahendra-border, #e2e0eb) !important;
  padding: 8px 10px !important;
  color: var(--et-mahendra-text, #1f2937) !important;
  font-size: 13.5px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
  vertical-align: top !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.single-post .entry-content table th,
.single .entry-content table th,
.single-post .entry-content table td,
.single .entry-content table td {
  max-width: 38ch;
  height: auto !important;
}

.single-post .entry-content table tbody td:first-child,
.single .entry-content table tbody td:first-child {
  color: #111827 !important;
  font-weight: 600 !important;
}

.single-post .entry-content table tbody tr:nth-child(even) td,
.single .entry-content table tbody tr:nth-child(even) td {
  background: #fafafe !important;
}

.single-post .entry-content table a,
.single .entry-content table a {
  color: var(--et-mahendra-red, #e63746) !important;
  font-weight: 700 !important;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.single-post .entry-content table a:hover,
.single .entry-content table a:hover {
  text-decoration: underline;
}

.single-post .entry-content .wp-block-table figcaption,
.single .entry-content .wp-block-table figcaption,
.single-post .entry-content figure.wp-block-table figcaption,
.single .entry-content figure.wp-block-table figcaption {
  padding: 10px 14px 12px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1100px) {
  .single-post .entry-content .wp-block-table,
  .single .entry-content .wp-block-table,
  .single-post .entry-content figure.wp-block-table,
  .single .entry-content figure.wp-block-table,
  .single-post .entry-content .examtune-table-scroll,
  .single .entry-content .examtune-table-scroll,
  .single-post .entry-content > table,
  .single .entry-content > table {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .single-post .entry-content > table,
  .single .entry-content > table {
    display: block;
    min-width: 0 !important;
  }

  .single-post .entry-content .wp-block-table table,
  .single .entry-content .wp-block-table table,
  .single-post .entry-content figure.wp-block-table table,
  .single .entry-content figure.wp-block-table table,
  .single-post .entry-content .examtune-table-scroll > table,
  .single .entry-content .examtune-table-scroll > table {
    min-width: 560px !important;
  }

  .single-post .entry-content > table thead,
  .single .entry-content > table thead,
  .single-post .entry-content > table tbody,
  .single .entry-content > table tbody,
  .single-post .entry-content > table tfoot,
  .single .entry-content > table tfoot {
    min-width: 560px;
  }

  .single-post .entry-content table thead th,
  .single .entry-content table thead th,
  .single-post .entry-content table tbody td,
  .single .entry-content table tbody td {
    min-width: 118px;
    max-width: 34ch;
    padding: 7px 9px !important;
    font-size: 12.75px !important;
    line-height: 17px !important;
  }
}
