/*
Theme Name: SarkariTopper
Theme URI: https://sarkaritopper.com
Author: SarkariTopper Team
Author URI: https://sarkaritopper.com
Description: A lightweight, SEO-optimized, AdSense-ready WordPress theme for exam preparation platforms. Features built-in quiz engine, user dashboard, leaderboard, job listings, news, and admit card sections.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sarkaritopper
Tags: education, exam, quiz, responsive, custom-theme
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --sz-primary:       #1a73e8;
  --sz-primary-dark:  #1557b0;
  --sz-primary-light: #e8f0fe;
  --sz-secondary:     #0f2d6b;
  --sz-accent:        #f9ab00;

  /* Status Colors */
  --sz-success:       #1e7e34;
  --sz-success-bg:    #e6f4ea;
  --sz-danger:        #c5221f;
  --sz-danger-bg:     #fce8e6;
  --sz-warning:       #b06000;
  --sz-warning-bg:    #fff8e1;
  --sz-info:          #0277bd;
  --sz-info-bg:       #e1f5fe;

  /* Neutrals */
  --sz-gray-50:       #f8f9fa;
  --sz-gray-100:      #f1f3f4;
  --sz-gray-200:      #e8eaed;
  --sz-gray-300:      #dadce0;
  --sz-gray-500:      #9aa0a6;
  --sz-gray-600:      #80868b;
  --sz-gray-700:      #5f6368;
  --sz-gray-800:      #3c4043;
  --sz-gray-900:      #202124;

  /* Typography */
  --sz-font-sans:     'Noto Sans', 'Hind', Arial, sans-serif;
  --sz-font-serif:    Georgia, serif;
  --sz-font-mono:     'Courier New', monospace;

  --sz-text-xs:       12px;
  --sz-text-sm:       14px;
  --sz-text-base:     16px;
  --sz-text-lg:       18px;
  --sz-text-xl:       22px;
  --sz-text-2xl:      26px;
  --sz-text-3xl:      32px;

  /* Spacing */
  --sz-space-1:       4px;
  --sz-space-2:       8px;
  --sz-space-3:       14px;
  --sz-space-4:       20px;
  --sz-space-5:       24px;
  --sz-space-6:       28px;
  --sz-space-8:       40px;
  --sz-space-10:      56px;

  /* Layout */
  --sz-container:     1200px;
  --sz-radius-sm:     4px;
  --sz-radius-md:     8px;
  --sz-radius-lg:     12px;
  --sz-radius-xl:     16px;
  --sz-radius-full:   9999px;

  /* Shadows */
  --sz-shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --sz-shadow-md:     0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --sz-shadow-lg:     0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);

  /* Transitions */
  --sz-transition:    all .18s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sz-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--sz-gray-800);
  background: var(--sz-gray-50);
  -webkit-font-smoothing: antialiased;
}
p{
	margin-bottom:20px;
}
p:last-child{
	margin-bottom:0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sz-primary); text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Restore bullets for Gutenberg content blocks ─────────── */
.wp-block-list,
.entry-content ul,
.entry-content ol,
.sjd-content-inner ul,
.sjd-content-inner ol,
.sz-job-content-body ul,
.sz-job-content-body ol,
.sz-single-content ul,
.sz-single-content ol,
.sz-policy-body ul,
.sz-policy-body ol,
.sz-about-content ul,
.sz-about-content ol,
.sz-static-page-content ul,
.sz-static-page-content ol {
  list-style: revert;
  padding-left: 1.5em;
  margin: 0.6em 0;
}

.wp-block-list li,
.entry-content ul li,
.entry-content ol li,
.sjd-content-inner ul li,
.sjd-content-inner ol li,
.sz-job-content-body ul li,
.sz-job-content-body ol li,
.sz-single-content ul li,
.sz-single-content ol li,
.sz-policy-body ul li,
.sz-policy-body ol li,
.sz-about-content ul li,
.sz-about-content ol li,
.sz-static-page-content ul li,
.sz-static-page-content ol li {
  list-style: revert;
  margin-bottom: 5px;
  line-height: 1.7;
}

/* Nested lists */
.wp-block-list ul,
.wp-block-list ol,
.sjd-content-inner ul ul,
.sjd-content-inner ol ol,
.sjd-content-inner ul ol,
.sjd-content-inner ol ul {
  margin: 4px 0 4px 1em;
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.sz-container {
  max-width: var(--sz-container);
  margin: 0 auto;
  padding: 0 var(--sz-space-5);
}

.sz-grid-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sz-space-6);
  align-items: start;
  padding:25px 0;
}
.sz-sidebar{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap:20px;
}

@media (max-width: 768px) {
  .sz-grid-main { grid-template-columns: 1fr; }
  .sz-sidebar { order: 2; }
}

.sz-section { margin-bottom: var(--sz-space-8); }

.sz-section-title {
  font-size: var(--sz-text-xl);
  font-weight: 600;
  color: var(--sz-gray-900);
  margin-bottom: var(--sz-space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sz-section-title a {
  font-size: var(--sz-text-sm);
  font-weight: 400;
  color: var(--sz-primary);
}

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */
.sz-header {
  background: #fff;
  border-bottom: 1px solid var(--sz-gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--sz-shadow-sm);
}

.sz-header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: var(--sz-space-6);
}

.sz-logo {
  font-size: var(--sz-text-xl);
  font-weight: 700;
  color: var(--sz-gray-900);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.sz-logo span { color: var(--sz-primary); }

.sz-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.sz-nav a {
  font-size: var(--sz-text-sm);
  font-weight: 500;
  color: var(--sz-gray-700);
  padding: 8px 14px;
  border-radius: var(--sz-radius-md);
  transition: var(--sz-transition);
  white-space: nowrap;
}

.sz-nav a:hover, .sz-nav a.active {
  color: var(--sz-primary);
  background: var(--sz-primary-light);
  text-decoration: none;
}

.sz-header-actions {
  display: flex;
  align-items: center;
  gap: var(--sz-space-2);
  margin-left: auto;
}

.sz-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--sz-radius-md);
  font-size: var(--sz-text-base);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--sz-transition);
  text-decoration: none;
  white-space: nowrap;
}

.sz-btn-primary {
  background: var(--sz-primary);
  color: #fff;
}
.sz-btn-primary:hover { background: var(--sz-primary-dark); color: #fff; text-decoration: none; }

.sz-btn-outline {
  background: transparent;
  color: var(--sz-primary);
  border: 1px solid var(--sz-primary);
}
.sz-btn-outline:hover { background: var(--sz-primary-light); text-decoration: none; }

/* Mobile menu toggle */
.sz-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--sz-gray-700);
  font-size: 22px;
}

@media (max-width: 768px) {
  .sz-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; border-bottom: 1px solid var(--sz-gray-200); box-shadow: var(--sz-shadow-md); }
  .sz-nav.open { display: flex; }
  .sz-nav a { width: 100%; padding: 10px 14px; }
  .sz-menu-toggle { display: block; }
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.sz-hero {
  background: linear-gradient(135deg, var(--sz-secondary) 0%, var(--sz-primary) 65%, #0ea5e9 100%);
  padding: var(--sz-space-10) 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.sz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.sz-hero-content { position: relative; z-index: 1; max-width: 690px; }

.sz-hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sz-space-3);
}

.sz-hero p {
  font-size: var(--sz-text-base);
  opacity: .9;
  margin-bottom: var(--sz-space-6);
}

.sz-search-bar {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--sz-radius-lg);
  padding: 8px 8px 8px 18px;
  backdrop-filter: blur(4px);
}

.sz-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: var(--sz-text-base);
  min-width: 0;
}

.sz-search-bar input::placeholder { color: rgba(255,255,255,.6); }

.sz-search-bar button {
  background: #fff;
  color: var(--sz-primary);
  border: none;
  border-radius: var(--sz-radius-md);
  padding: 10px 24px;
  font-size: var(--sz-text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--sz-transition);
}

.sz-search-bar button:hover { background: var(--sz-primary-light); }

.sz-hero-stats {
  display: flex;
  gap: var(--sz-space-6);
  margin-top: var(--sz-space-6);
  flex-wrap: wrap;
}

.sz-hero-stat strong {
  display: block;
  font-size: var(--sz-text-3xl);
  font-weight: 700;
}

.sz-hero-stat small { font-size: var(--sz-text-xs); opacity: .75; text-transform: uppercase; letter-spacing: .5px; }

/* ============================================================
   6. EXAM CARDS (Testbook-inspired grid)
   ============================================================ */
.sz-exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sz-space-4);
}

.sz-exam-card {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  padding: var(--sz-space-5);
  cursor: pointer;
  transition: var(--sz-transition);
  display: flex;
  flex-direction: column;
  gap: var(--sz-space-2);
  position: relative;
  overflow: hidden;
}

.sz-exam-card:hover {
  border-color: var(--sz-primary);
  box-shadow: var(--sz-shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.sz-exam-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sz-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.sz-exam-card:hover::before { transform: scaleX(1); }

.sz-exam-icon {
  width: 48px; height: 48px;
  border-radius: var(--sz-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

.sz-exam-name {
  font-size: var(--sz-text-base);
  font-weight: 600;
  color: var(--sz-gray-900);
  line-height: 1.3;
}

.sz-exam-meta { font-size: var(--sz-text-xs); color: var(--sz-gray-600); }

.sz-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--sz-radius-full);
  line-height: 1.6;
}

.sz-badge-blue   { background: var(--sz-primary-light); color: var(--sz-primary); }
.sz-badge-red    { background: var(--sz-danger-bg);     color: var(--sz-danger); }
.sz-badge-green  { background: var(--sz-success-bg);    color: var(--sz-success); }
.sz-badge-yellow { background: var(--sz-warning-bg);    color: var(--sz-warning); }

/* ============================================================
   7. JOB LISTINGS
   ============================================================ */
.sz-job-list { display: flex; flex-direction: column; gap: var(--sz-space-3); }

.sz-job-item {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  padding: var(--sz-space-4) var(--sz-space-5);
  display: flex;
  align-items: center;
  gap: var(--sz-space-4);
  transition: var(--sz-transition);
  cursor: pointer;
}

.sz-job-item:hover { border-color: var(--sz-primary); box-shadow: var(--sz-shadow-sm); text-decoration: none; }

.sz-job-icon {
  width: 48px; height: 48px;
  border-radius: var(--sz-radius-md);
  background: var(--sz-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.sz-job-info { flex: 1; min-width: 0; }
.sz-job-title { font-size: var(--sz-text-base); font-weight: 600; color: var(--sz-gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sz-job-org   { font-size: var(--sz-text-sm); color: var(--sz-gray-600); margin-top: 3px; }

.sz-job-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.sz-job-date { font-size: var(--sz-text-sm); color: var(--sz-gray-500); }
.sz-vacancy  { font-size: var(--sz-text-sm); font-weight: 600; color: var(--sz-success); }

/* ============================================================
   8. NEWS CARDS
   ============================================================ */
.sz-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sz-space-4);
}

.sz-news-card {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  padding: var(--sz-space-5);
  transition: var(--sz-transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--sz-space-2);
}

.sz-news-card:hover { border-color: var(--sz-primary); box-shadow: var(--sz-shadow-sm); text-decoration: none; }

.sz-news-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: var(--sz-radius-full);
  display: inline-block;
  width: fit-content;
}

.sz-news-title { font-size: var(--sz-text-base); font-weight: 600; color: var(--sz-gray-900); line-height: 1.4; }
.sz-news-excerpt { font-size: var(--sz-text-sm); color: var(--sz-gray-600); line-height: 1.55; }
.sz-news-date { font-size: var(--sz-text-sm); color: var(--sz-gray-500); margin-top: auto; }

/* ============================================================
   9. LEADERBOARD
   ============================================================ */
.sz-leaderboard { display: flex; flex-direction: column; gap: var(--sz-space-2); }

.sz-lb-item {
  display: flex;
  align-items: center;
  gap: var(--sz-space-3);
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  padding: 10px var(--sz-space-4);
  transition: var(--sz-transition);
}

.sz-lb-item:hover { border-color: var(--sz-primary); }
.sz-lb-item.top-3 { border-left: 3px solid var(--sz-accent); }

.sz-lb-rank {
  font-size: var(--sz-text-lg);
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}

.sz-lb-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.sz-lb-info { flex: 1; }
.sz-lb-name  { font-size: var(--sz-text-base); font-weight: 600; color: var(--sz-gray-900); }
.sz-lb-tests { font-size: var(--sz-text-sm); color: var(--sz-gray-600); }
.sz-lb-score { font-size: var(--sz-text-base); font-weight: 700; color: var(--sz-primary); white-space: nowrap; }

/* ============================================================
   10. QUIZ ENGINE
   ============================================================ */
.sz-quiz-wrapper {
  background: #fff;
  border-radius: var(--sz-radius-xl);
  box-shadow: var(--sz-shadow-lg);
  overflow: hidden;
}

.sz-quiz-header {
  background: linear-gradient(135deg, var(--sz-secondary), var(--sz-primary));
  color: #fff;
  padding: var(--sz-space-5) var(--sz-space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sz-quiz-title { font-size: var(--sz-text-lg); font-weight: 600; }
.sz-quiz-meta  { font-size: var(--sz-text-sm); opacity: .8; margin-top: 2px; }

.sz-timer {
  font-size: var(--sz-text-2xl);
  font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 6px 16px;
  border-radius: var(--sz-radius-md);
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

.sz-timer.urgent { background: rgba(220,53,69,.7); animation: pulse .8s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .7; } }

.sz-quiz-progress-bar {
  height: 4px;
  background: var(--sz-gray-200);
}

.sz-quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sz-primary), #0ea5e9);
  transition: width .3s ease;
}

.sz-quiz-body {
  padding: var(--sz-space-6);
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: var(--sz-space-6);
}

@media (max-width: 768px) { .sz-quiz-body { grid-template-columns: 1fr; } }

/* Question area */
.sz-question-number { font-size: var(--sz-text-xs); color: var(--sz-gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: var(--sz-space-3); }

.sz-question-text {
  font-size: var(--sz-text-lg);
  font-weight: 500;
  color: var(--sz-gray-900);
  line-height: 1.5;
  margin-bottom: var(--sz-space-5);
}

.sz-question-image {
  border-radius: var(--sz-radius-md);
  margin-bottom: var(--sz-space-4);
  max-height: 200px;
  object-fit: contain;
}

.sz-options { display: flex; flex-direction: column; gap: var(--sz-space-2); }

.sz-option {
  display: flex;
  align-items: flex-start;
  gap: var(--sz-space-3);
  padding: var(--sz-space-4);
  border: 2px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  cursor: pointer;
  transition: var(--sz-transition);
  user-select: none;
}

.sz-option:hover { border-color: var(--sz-primary); background: var(--sz-primary-light); }
.sz-option.selected { border-color: var(--sz-primary); background: var(--sz-primary-light); }
.sz-option.correct  { border-color: var(--sz-success); background: var(--sz-success-bg); }
.sz-option.wrong    { border-color: var(--sz-danger);  background: var(--sz-danger-bg); }

.sz-option-key {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--sz-gray-300);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--sz-text-sm);
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--sz-transition);
}

.sz-option.selected .sz-option-key { border-color: var(--sz-primary); background: var(--sz-primary); color: #fff; }
.sz-option.correct  .sz-option-key { border-color: var(--sz-success); background: var(--sz-success); color: #fff; }
.sz-option.wrong    .sz-option-key { border-color: var(--sz-danger);  background: var(--sz-danger);  color: #fff; }

.sz-option-text { font-size: var(--sz-text-base); color: var(--sz-gray-800); line-height: 1.55; flex: 1; padding-top: 2px; }

/* Question navigator (sidebar) */
.sz-q-nav { background: var(--sz-gray-50); border-radius: var(--sz-radius-lg); padding: var(--sz-space-4); }
.sz-q-nav-title { font-size: var(--sz-text-xs); font-weight: 600; color: var(--sz-gray-600); text-transform: uppercase; letter-spacing: .5px; margin-bottom: var(--sz-space-3); }
.sz-q-nav-legend { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--sz-space-3); font-size: var(--sz-text-xs); color: var(--sz-gray-600); }
.sz-q-nav-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }

.sz-q-dot {
  width: 32px; height: 32px;
  border-radius: var(--sz-radius-sm);
  border: 1px solid var(--sz-gray-300);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--sz-transition);
  color: var(--sz-gray-700);
}

.sz-q-dot:hover    { border-color: var(--sz-primary); color: var(--sz-primary); }
.sz-q-dot.active   { border-color: var(--sz-primary); background: var(--sz-primary); color: #fff; }
.sz-q-dot.answered { border-color: var(--sz-success); background: var(--sz-success-bg); color: var(--sz-success); }
.sz-q-dot.skipped  { border-color: var(--sz-warning); background: var(--sz-warning-bg); color: var(--sz-warning); }

/* Quiz footer */
.sz-quiz-footer {
  padding: var(--sz-space-4) var(--sz-space-6);
  border-top: 1px solid var(--sz-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sz-space-3);
}

/* ============================================================
   11. RESULT PAGE
   ============================================================ */
.sz-result-hero {
  background: linear-gradient(135deg, var(--sz-secondary), var(--sz-primary));
  color: #fff;
  text-align: center;
  padding: var(--sz-space-8) var(--sz-space-4);
  border-radius: var(--sz-radius-xl);
  margin-bottom: var(--sz-space-6);
}

.sz-result-score-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto var(--sz-space-4);
  background: rgba(255,255,255,.1);
}

.sz-result-score-num  { font-size: 32px; font-weight: 700; line-height: 1; }
.sz-result-score-denom{ font-size: 14px; opacity: .7; }

.sz-result-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--sz-radius-full);
  font-size: var(--sz-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--sz-space-3);
}

.sz-result-badge.pass { background: var(--sz-success); }
.sz-result-badge.fail { background: var(--sz-danger); }

.sz-result-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sz-space-3);
  margin-bottom: var(--sz-space-6);
}

@media (max-width: 480px) { .sz-result-stats { grid-template-columns: repeat(2, 1fr); } }

.sz-stat-card {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  padding: var(--sz-space-4);
  text-align: center;
}

.sz-stat-card .val  { font-size: var(--sz-text-2xl); font-weight: 700; color: var(--sz-gray-900); display: block; }
.sz-stat-card .lbl  { font-size: var(--sz-text-xs); color: var(--sz-gray-600); text-transform: uppercase; letter-spacing: .5px; }

.sz-share-buttons { display: flex; gap: var(--sz-space-3); justify-content: center; flex-wrap: wrap; }

.sz-share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--sz-radius-full);
  font-size: var(--sz-text-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--sz-transition);
  text-decoration: none;
}

.sz-share-whatsapp { background: #25d366; color: #fff; }
.sz-share-whatsapp:hover { background: #1ebe5b; color: #fff; }
.sz-share-telegram { background: #0088cc; color: #fff; }
.sz-share-telegram:hover { background: #007ab8; color: #fff; }

/* Answer review */
.sz-answer-review { margin-top: var(--sz-space-6); }

.sz-review-item {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  padding: var(--sz-space-5);
  margin-bottom: var(--sz-space-3);
}

.sz-review-item.correct { border-left: 4px solid var(--sz-success); }
.sz-review-item.wrong   { border-left: 4px solid var(--sz-danger); }
.sz-review-item.skipped { border-left: 4px solid var(--sz-gray-400); }

.sz-explanation {
  background: var(--sz-info-bg);
  border-left: 3px solid var(--sz-info);
  padding: var(--sz-space-3) var(--sz-space-4);
  border-radius: 0 var(--sz-radius-md) var(--sz-radius-md) 0;
  margin-top: var(--sz-space-3);
  font-size: var(--sz-text-sm);
  color: var(--sz-gray-800);
  line-height: 1.6;
}

/* ============================================================
   12. USER DASHBOARD
   ============================================================ */
.sz-dashboard { padding: var(--sz-space-6) 0; }

.sz-profile-card {
  background: linear-gradient(135deg, var(--sz-secondary), var(--sz-primary));
  color: #fff;
  border-radius: var(--sz-radius-xl);
  padding: var(--sz-space-6);
  display: flex;
  align-items: center;
  gap: var(--sz-space-5);
  margin-bottom: var(--sz-space-6);
}

.sz-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  font-weight: 700;
  flex-shrink: 0;
}

.sz-profile-name   { font-size: var(--sz-text-xl); font-weight: 700; }
.sz-profile-joined { font-size: var(--sz-text-xs); opacity: .75; margin-top: 3px; }

.sz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--sz-space-3);
  margin-bottom: var(--sz-space-6);
}

.sz-stats-card {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  padding: var(--sz-space-4);
  text-align: center;
}

.sz-stats-card .num  { font-size: var(--sz-text-2xl); font-weight: 700; color: var(--sz-primary); display: block; margin-bottom: 2px; }
.sz-stats-card .desc { font-size: var(--sz-text-xs); color: var(--sz-gray-600); text-transform: uppercase; letter-spacing: .4px; }

/* History table */
.sz-table-wrapper { overflow-x: auto; border-radius: var(--sz-radius-lg); border: 1px solid var(--sz-gray-200); }

.sz-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: var(--sz-text-sm);
}

.sz-table th {
  background: var(--sz-gray-50);
  color: var(--sz-gray-600);
  font-weight: 600;
  font-size: var(--sz-text-xs);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sz-gray-200);
}

.sz-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--sz-gray-100);
  color: var(--sz-gray-800);
}

.sz-table tr:last-child td { border-bottom: none; }
.sz-table tr:hover td { background: var(--sz-gray-50); }

.sz-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--sz-radius-full);
  font-size: var(--sz-text-xs);
  font-weight: 600;
}

.sz-pill-pass { background: var(--sz-success-bg); color: var(--sz-success); }
.sz-pill-fail { background: var(--sz-danger-bg);  color: var(--sz-danger); }

/* ============================================================
   13. SIDEBAR WIDGETS
   ============================================================ */
.sz-widget {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  overflow: hidden;
  width:100%;
}

.sz-widget-header {
  padding: 14px var(--sz-space-4);
  border-bottom: 1px solid var(--sz-gray-200);
  font-size: var(--sz-text-base);
  font-weight: 600;
  color: var(--sz-gray-900);
  background: var(--sz-gray-50);
}

.sz-widget-body { padding: var(--sz-space-4); }

/* ============================================================
   14. AD SLOTS
   ============================================================ */
.sz-ad-slot {
  background: var(--sz-gray-100);
  border: 1px dashed var(--sz-gray-300);
  border-radius: var(--sz-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sz-gray-500);
  font-size: var(--sz-text-xs);
  letter-spacing: .5px;
  text-transform: uppercase;
  overflow: hidden;
}

.sz-ad-728  { width: 100%; height: 90px; }
.sz-ad-300  { width: 100%; height: 250px; }
.sz-ad-responsive { width: 100%; min-height: 90px; }

/* ============================================================
   15. FOOTER
   ============================================================ */
.sz-footer {
  background: var(--sz-gray-900);
  color: var(--sz-gray-300);
  padding: var(--sz-space-8) 0 var(--sz-space-4);
}
.disclaimer-block{
	text-align:center;
	padding-bottom:35px;
	color: var(--sz-gray-500);
	max-width:950px;
	margin:auto;

}
.sz-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sz-space-8);
  margin-bottom: var(--sz-space-8);
}

@media (max-width: 768px) {
  .sz-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sz-space-6); }
}

.sz-footer-logo { font-size: var(--sz-text-xl); font-weight: 700; color: #fff; margin-bottom: var(--sz-space-3); }
.sz-footer-logo span { color: var(--sz-primary); }

.sz-footer-desc { font-size: var(--sz-text-base); line-height: 1.7; color:#fff/* var(--sz-gray-500)*/; }

.sz-footer-col h4 { font-size: var(--sz-text-base); font-weight: 600; color: #fff; margin-bottom: var(--sz-space-3); }

.sz-footer-col ul li { margin-bottom: 10px; }
.sz-footer-col ul li a { font-size: var(--sz-text-base); color:#fff /*var(--sz-gray-500)*/; transition: color .15s; }
.sz-footer-col ul li a:hover { color: var(--sz-primary); text-decoration: none; }

.sz-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sz-space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sz-space-3);
  font-size: var(--sz-text-sm);
  color: var(--sz-gray-600);
}

/* ============================================================
   16. UTILITIES
   ============================================================ */
.sz-text-center { text-align: center; }
.sz-mt-4  { margin-top: var(--sz-space-4); }
.sz-mb-4  { margin-bottom: var(--sz-space-4); }
.sz-mt-6  { margin-top: var(--sz-space-6); }
.sz-mb-6  { margin-bottom: var(--sz-space-6); }
.sz-flex  { display: flex; }
.sz-items-center { align-items: center; }
.sz-justify-between { justify-content: space-between; }
.sz-gap-3 { gap: var(--sz-space-3); }
.sz-gap-4 { gap: var(--sz-space-4); }
.sz-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.sz-hidden { display: none !important; }

/* Skeleton loader */
.sz-skeleton {
  background: linear-gradient(90deg, var(--sz-gray-200) 25%, var(--sz-gray-100) 50%, var(--sz-gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.4s infinite;
  border-radius: var(--sz-radius-sm);
}

@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================================
   17. RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 480px) {
  .sz-exam-grid { grid-template-columns: repeat(2, 1fr); }
  .sz-result-stats { grid-template-columns: repeat(2, 1fr); }
  .sz-hero h1 { font-size: 22px; }
}

/* ============================================================
   18. QUIZ FULLSCREEN & EXAM INTERFACE (added v2)
   ============================================================ */

/* Ensure quiz wrapper takes full page when active */
#sz-quiz-wrapper { position: relative; }

/* Full-screen override on mobile */
@media (max-width: 767px) {
  .szq-body { grid-template-columns: 1fr !important; }
  .szq-palette-panel { border-top: 1px solid #e8eaed; }
  .szq-topbar { flex-wrap: wrap; gap: 8px; }
  .szq-topbar-center { order: 3; width: 100%; justify-content: center; }
}

/* Keyboard hint badges */
kbd {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  background: #f8f9fa;
  color: #5f6368;
  font-family: var(--sz-font-mono);
}

/* ============================================================
   19. EXAM CATEGORY SECTION (shortcode output)
   ============================================================ */

.sz-cat-section { margin-bottom: 32px; }

.sz-test-series-list { margin-top: 0; }

.sz-subj-card {
  transition: var(--sz-transition);
}

.sz-subj-card:hover {
  border-color: var(--sz-primary) !important;
  box-shadow: var(--sz-shadow-sm);
}

/* Practice modal responsive */
#sz-practice-modal > div {
  width: 100% !important;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  #sz-practice-modal { padding: 8px !important; }
  #sz-practice-modal > div { max-height: 96vh !important; }
}

/* ============================================================
   20. RESULT PAGE (v2)
   ============================================================ */

.sz-result-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sz-space-3);
  margin-bottom: var(--sz-space-6);
}

@media (max-width: 767px) {
  .sz-result-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 380px) {
  .sz-result-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Subject-wise performance bars */
.sz-subj-bar-wrap { margin-bottom: 12px; }
.sz-subj-bar-label { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 5px; }
.sz-subj-bar-track { height: 8px; background: var(--sz-gray-200); border-radius: var(--sz-radius-full); overflow: hidden; }
.sz-subj-bar-fill  { height: 100%; border-radius: var(--sz-radius-full); transition: width .6s ease; }

/* ============================================================
   21. TESTBOOK-STYLE SELECT YOUR GOAL PAGE
   ============================================================ */

.sz-goal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}

.sz-goal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  cursor: pointer;
  transition: var(--sz-transition);
  text-decoration: none;
  color: var(--sz-gray-800);
}

.sz-goal-item:hover {
  border-color: var(--sz-primary);
  box-shadow: var(--sz-shadow-sm);
  text-decoration: none;
}

.sz-goal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sz-goal-name  { font-size: 14px; font-weight: 500; flex: 1; }
.sz-goal-arrow { color: var(--sz-gray-400); font-size: 18px; }

/* ============================================================
   22. PAGINATION
   ============================================================ */

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--sz-radius-md);
  border: 1px solid var(--sz-gray-300);
  font-size: var(--sz-text-sm);
  color: var(--sz-gray-700);
  text-decoration: none;
  transition: var(--sz-transition);
  margin: 0 2px;
}

.page-numbers:hover { border-color: var(--sz-primary); color: var(--sz-primary); text-decoration: none; }
.page-numbers.current { background: var(--sz-primary); color: #fff; border-color: var(--sz-primary); }
.page-numbers.dots { border: none; }

/* ============================================================
   23. NOTICE / ALERT BOXES
   ============================================================ */

.sz-alert {
  padding: var(--sz-space-4);
  border-radius: var(--sz-radius-md);
  font-size: var(--sz-text-sm);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: var(--sz-space-4);
}

.sz-alert-info    { background: var(--sz-info-bg);    border-left: 3px solid var(--sz-info);    color: #01579b; }
.sz-alert-success { background: var(--sz-success-bg); border-left: 3px solid var(--sz-success); color: var(--sz-success); }
.sz-alert-warning { background: var(--sz-warning-bg); border-left: 3px solid var(--sz-warning); color: var(--sz-warning); }
.sz-alert-danger  { background: var(--sz-danger-bg);  border-left: 3px solid var(--sz-danger);  color: var(--sz-danger); }

/* ── Utility: hide on mobile ── */
@media (max-width: 768px) {
  .sz-hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
.sz-quick-chips{
	display:none!important;
}
}


/* ============================================================
   TEMPLATE STYLES — moved from inline PHP style= attributes
   ============================================================ */

/* ── Spinner keyframe ──────────────────────────────────────── */
@keyframes szSpin { to { transform: rotate(360deg); } }

/* ── Layout helpers ────────────────────────────────────────── */
.sz-page-pad        { padding: 24px 16px 56px; }
.sz-page-pad-lg     { padding: 40px 16px 64px; }
.sz-page-center     { max-width: 820px; margin: 0 auto; }
.sz-page-center-sm  { max-width: 640px; margin: 0 auto; }
.sz-page-center-xs  { max-width: 480px; margin: 0 auto; }
.sz-mb-20           { margin-bottom: 20px; }
.sz-mb-24           { margin-bottom: 24px; }
.sz-mt-20           { margin-top: 20px; }
.sz-mt-24           { margin-top: 24px; }
.sz-mt-32           { margin-top: 32px; }
.sz-pos-rel         { position: relative; }
.sz-flex-1          { flex: 1; }
.sz-min-w-0         { min-width: 0; }
.sz-text-danger     { color: #c5221f; }
.sz-text-muted      { color: #9aa0a6; }
.sz-text-blue       { color: #1a73e8; }

/* ── Archive / page headers ────────────────────────────────── */
.sz-archive-head    { margin-bottom: 24px; }
.sz-archive-title   { font-size: 30px; font-weight: 700; color: #202124; margin-bottom: 8px; }
.sz-archive-desc    { font-size: 16px; color: #5f6368; }
.sz-filter-bar        { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.sz-filter-bar-border { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid #e8eaed; }
.sz-archive-empty   { color: #9aa0a6; text-align: center; padding: 48px 20px; font-size: 16px; }

/* ── 404 page ───────────────────────────────────────────────── */
.sz-404-wrap  { padding: 80px 16px; text-align: center; }
.sz-404-inner { max-width: 480px; margin: 0 auto; }
.sz-404-icon  { font-size: 72px; margin-bottom: 16px; }
.sz-404-title { font-size: 32px; font-weight: 700; color: #202124; margin-bottom: 12px; }
.sz-404-desc  { font-size: 16px; color: #5f6368; margin-bottom: 24px; }
.sz-404-btns  { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sz-404-ad    { margin-top: 32px; }

/* ── index.php / page.php ──────────────────────────────────── */
.sz-post-article  { background: #fff; border: 1px solid #dadce0; border-radius: 10px; padding: 24px; margin-bottom: 20px; }
.sz-post-title    { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.sz-post-title a  { color: #1a73e8; }
.sz-post-meta     { font-size: 13px; color: #9aa0a6; margin-bottom: 12px; }
.sz-post-excerpt  { font-size: 15px; color: #3c4043; line-height: 1.65; }
.sz-post-readmore { font-size: 14px; color: #1a73e8; }
.sz-loop-empty    { color: #9aa0a6; padding: 48px 20px; text-align: center; }
.sz-static-page         { background: #fff; border: 1px solid #dadce0; border-radius: 12px; padding: 32px; }
.sz-static-page-title   { font-size: 28px; font-weight: 700; color: #202124; margin-bottom: 18px; }
.sz-static-page-content { font-size: 16px; line-height: 1.8; color: #3c4043; margin-top: 18px; }

/* ── Policy pages ──────────────────────────────────────────── */
.sz-policy-wrap  { max-width: 820px; margin: 0 auto; background: #fff; border-radius: 12px; border: 1px solid #dadce0; padding: 40px; }
.sz-policy-title { font-size: 32px; font-weight: 700; color: #202124; margin-bottom: 8px; }
.sz-policy-date  { font-size: 14px; color: #9aa0a6; margin-bottom: 28px; }
.sz-policy-body  { font-size: 16px; line-height: 1.85; color: #3c4043; }

/* ── Hero gradient banners ─────────────────────────────────── */
.sz-hero-banner   { background: linear-gradient(135deg,#0f2d6b,#1a73e8); color: #fff; border-radius: 16px; padding: 40px; margin-bottom: 32px; text-align: center; }
.sz-hero-banner h1{ font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.sz-hero-banner p { font-size: 16px; opacity: .9; max-width: 520px; margin: 0 auto; }

/* ── About page ────────────────────────────────────────────── */
.sz-about-content       { background: #fff; border-radius: 12px; border: 1px solid #dadce0; padding: 36px; font-size: 16px; line-height: 1.85; color: #3c4043; }
.sz-about-content h2    { font-size: 24px; font-weight: 700; color: #202124; margin-bottom: 18px; }
.sz-about-subtitle      { font-size: 21px; font-weight: 700; color: #202124; margin: 28px 0 14px; }
.sz-about-feat-list     { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sz-about-feat-item     { display: flex; gap: 12px; }

/* ── Contact page ──────────────────────────────────────────── */
.sz-contact-wrap    { max-width: 640px; margin: 0 auto; }
.sz-contact-title   { font-size: 28px; font-weight: 700; color: #202124; margin-bottom: 8px; }
.sz-contact-desc    { font-size: 15px; color: #5f6368; margin-bottom: 28px; }
.sz-contact-card    { background: #fff; border: 1px solid #dadce0; border-radius: 12px; padding: 28px; }
.sz-contact-form    { display: flex; flex-direction: column; gap: 16px; }
.sz-contact-label   { display: block; font-size: 13px; font-weight: 600; color: #202124; margin-bottom: 6px; }
.sz-contact-input   { width: 100%; padding: 10px 12px; border: 1px solid #dadce0; border-radius: 8px; font-size: 14px; outline: none; box-sizing: border-box; }
.sz-contact-textarea{ width: 100%; padding: 10px 12px; border: 1px solid #dadce0; border-radius: 8px; font-size: 14px; outline: none; resize: vertical; box-sizing: border-box; }
.sz-contact-submit  { align-self: flex-start; font-size: 15px; padding: 12px 28px; }

/* ── Advertise page ────────────────────────────────────────── */
.sz-adv-stats-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; margin-bottom: 28px; }
.sz-adv-stat-card   { background: #fff; border: 1px solid #dadce0; border-radius: 12px; padding: 20px; text-align: center; }
.sz-adv-stat-num    { font-size: 28px; font-weight: 700; color: #1a73e8; margin-bottom: 4px; }
.sz-adv-stat-lbl    { font-size: 13px; color: #5f6368; }
.sz-adv-options     { background: #fff; border-radius: 12px; border: 1px solid #dadce0; padding: 28px; }
.sz-adv-options h2  { font-size: 22px; font-weight: 700; color: #202124; margin-bottom: 16px; }
.sz-adv-list        { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: #3c4043; }
.sz-adv-list-item   { display: flex; gap: 10px; align-items: flex-start; }
.sz-adv-list-icon   { color: #1a73e8; font-size: 18px; flex-shrink: 0; }
.sz-adv-cta         { margin-top: 24px; padding-top: 24px; border-top: 1px solid #f1f3f4; }
.sz-adv-cta p       { font-size: 15px; color: #3c4043; margin-bottom: 16px; }

/* ── Search page ───────────────────────────────────────────── */
.sz-search-head      { margin-bottom: 20px; }
.sz-search-title     { font-size: 22px; font-weight: 700; color: #202124; }
.sz-search-title em  { font-style: normal; color: #1a73e8; }
.sz-search-count     { font-size: 13px; color: #9aa0a6; }
.sz-search-item      { background: #fff; border: 1px solid #dadce0; border-radius: 10px; padding: 18px 20px; margin-bottom: 12px; }
.sz-search-type      { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: #1a73e8; margin-bottom: 5px; }
.sz-search-item-title  { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.sz-search-item-title a{ color: #1a73e8; }
.sz-search-excerpt   { font-size: 13px; color: #5f6368; line-height: 1.5; }
.sz-search-link      { font-size: 12px; color: #1a73e8; margin-top: 6px; display: inline-block; }
.sz-search-noresult  { background: #fff; border: 1px solid #dadce0; border-radius: 12px; padding: 40px; text-align: center; }
.sz-search-browse-btns { display: flex; gap: 8px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }

/* ── Archive: Admit Card ───────────────────────────────────── */
.sz-ac-list     { display: flex; flex-direction: column; gap: 10px; }
.sz-ac-card     { background: #fff; border: 1px solid #dadce0; border-radius: 10px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sz-ac-icon     { font-size: 28px; flex-shrink: 0; }
.sz-ac-body     { flex: 1; min-width: 200px; }
.sz-ac-title    { font-size: 15px; font-weight: 600; color: #202124; text-decoration: none; display: block; margin-bottom: 4px; }
.sz-ac-meta     { font-size: 12px; color: #9aa0a6; display: flex; gap: 12px; flex-wrap: wrap; }
.sz-ac-deadline { color: #c5221f; }
.sz-ac-actions  { display: flex; gap: 8px; flex-shrink: 0; }
.sz-ac-btn-sm   { font-size: 13px; padding: 8px 16px; }
.sz-ac-empty    { color: #9aa0a6; text-align: center; padding: 40px; }

/* ── Archive: Job ──────────────────────────────────────────── */
.sz-job-cat-link  { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid #f1f3f4; text-decoration: none; color: #202124; font-size: 13px; }
.sz-job-cat-count { color: #9aa0a6; }
.sz-job-empty     { color: #9aa0a6; text-align: center; padding: 40px; font-size: 15px; }
.sz-news-archive-empty { color: #9aa0a6; text-align: center; padding: 40px; }

/* ── Footer ────────────────────────────────────────────────── */
.sz-footer-ad-bar      { background: #fff; border-top: 1px solid #e8eaed; padding: 12px 0; }
.sz-footer-social-wrap { display: flex; gap: 10px; margin-top: 16px; }
.sz-footer-social-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #9aa0a6; text-decoration: none; }

/* ── Header misc ───────────────────────────────────────────── */
.sz-search-icon-inline { color: #9aa0a6; font-size: 15px; flex-shrink: 0; }
.sz-mob-search-btn     { display: none; background: none; border: none; cursor: pointer; font-size: 18px; color: #5f6368; padding: 4px; }

/* ── Header <style> block (moved here) ─────────────────────── */
.sz-header{position:sticky;top:0;z-index:1000;background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.08);border-bottom:1px solid #e8eaed}
.sz-header-inner{display:flex;align-items:center;gap:12px;height:75px}
.sz-logo{font-size:20px;font-weight:800;color:#0f2d6b;text-decoration:none;flex-shrink:0;display:flex;align-items:center;gap:4px}
.sz-logo img{height:50px;width:auto}
.sz-logo span{color:#1a73e8}
.sz-nav{display:flex;align-items:center;gap:2px;margin-left:8px}
.sz-nav a{padding:6px 11px;border-radius:6px;font-size:13px;font-weight:500;color:#3c4043;text-decoration:none;white-space:nowrap;transition:background .15s,color .15s}
.sz-nav a:hover,.sz-nav a.active{background:#e8f0fe;color:#1a73e8}
.sz-header-search{flex:1;min-width:0;max-width:380px;margin:0 8px}
.sz-header-search form{display:flex;align-items:center;background:#f1f3f4;border-radius:24px;padding:6px 14px;gap:8px;transition:box-shadow .2s,background .2s}
.sz-header-search form:focus-within{background:#fff;box-shadow:0 0 0 2px #1a73e8}
.sz-header-search input{border:none;background:none;outline:none;font-size:13px;color:#202124;width:100%;min-width:0}
.sz-header-search input::placeholder{color:#9aa0a6}
.sz-header-search button{background:none;border:none;cursor:pointer;color:#1a73e8;font-size:16px;padding:0;line-height:1;flex-shrink:0}
.sz-header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0;margin-left:auto}
.sz-profile-wrap{position:relative}
.sz-profile-btn{display:flex;align-items:center;gap:8px;background:none;border:1px solid #e8eaed;border-radius:24px;padding:5px 12px 5px 5px;cursor:pointer;font-size:13px;font-weight:500;color:#202124;transition:box-shadow .15s;white-space:nowrap}
.sz-profile-btn:hover{box-shadow:0 1px 4px rgba(0,0,0,.12)}
.sz-avatar{width:30px;height:30px;border-radius:50%;background:#1a73e8;color:#fff;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0}
.sz-profile-caret{font-size:10px;color:#5f6368;margin-left:2px}
.sz-profile-drop{display:none;position:absolute;top:calc(100% + 8px);right:0;background:#fff;border:1px solid #e0e0e0;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.12);min-width:220px;z-index:2000;overflow:hidden}
.sz-profile-drop.open{display:block}
.sz-drop-header{padding:14px 16px;border-bottom:1px solid #f1f3f4}
.sz-drop-header strong{display:block;font-size:14px;color:#202124}
.sz-drop-header span{font-size:12px;color:#9aa0a6}
.sz-drop-links a{display:flex;align-items:center;gap:10px;padding:10px 16px;font-size:13px;color:#3c4043;text-decoration:none;transition:background .12s}
.sz-drop-links a:hover{background:#f8f9fa;color:#1a73e8}
.sz-drop-divider{height:1px;background:#f1f3f4;margin:4px 0}
.sz-drop-logout{padding:8px 16px}
.sz-drop-logout a{display:block;text-align:center;padding:8px;border-radius:8px;font-size:13px;color:#c5221f;font-weight:500;text-decoration:none;background:#fce8e6;transition:background .12s}
.sz-drop-logout a:hover{background:#c5221f;color:#fff}
.sz-btn-login{padding:8px 18px;border:1px solid #dadce0;border-radius:20px;font-size:14px;font-weight:500;color:#1a73e8;text-decoration:none;transition:box-shadow .15s}
.sz-btn-login:hover{box-shadow:0 1px 3px rgba(0,0,0,.1)}
.sz-btn-register{padding:8px 18px;background:#1a73e8;border-radius:20px;font-size:14px;font-weight:500;color:#fff;text-decoration:none;transition:background .15s}
.sz-btn-register:hover{background:#1557b0}
.sz-menu-toggle{display:none;background:none;border:none;cursor:pointer;font-size:22px;color:#3c4043;padding:4px;line-height:1}
@media(max-width:900px){
  .sz-nav{display:none;position:absolute;top:60px;left:0;right:0;background:#fff;border-bottom:1px solid #e8eaed;flex-direction:column;align-items:stretch;padding:8px 0;box-shadow:0 4px 12px rgba(0,0,0,.08)}
  .sz-nav.open{display:flex}
  .sz-nav a{padding:12px 20px;border-radius:0}
  .sz-header-search{max-width:none;flex:1}
  .sz-menu-toggle{display:block}
  .sz-btn-register{display:none}
  .sz-profile-btn span.sz-name-label{display:none}
}
@media (max-width: 767px){
  .sz-header-search{display:none}
  .sz-header-search.mobile-open{display:block;position:absolute;top:60px;left:0;right:0;background:#fff;padding:10px 16px;border-bottom:1px solid #e8eaed;z-index:999}
  .sz-header-search.mobile-open form{border-radius:8px}
}
body.sz-quiz-active .sz-header{position:relative;box-shadow:none}
#sz-page-content{min-height:60vh}

/* ── Login / Register ──────────────────────────────────────── */
.sz-auth-wrap{min-height:80vh;display:flex;align-items:center;justify-content:center;padding:32px 16px;background:linear-gradient(135deg,#f0f4ff 0%,#fff 100%)}
.sz-auth-card{background:#fff;border-radius:20px;box-shadow:0 8px 40px rgba(26,115,232,.1);padding:40px;width:100%;max-width:440px}
.sz-auth-card-wide{background:#fff;border-radius:20px;box-shadow:0 8px 40px rgba(26,115,232,.1);padding:40px;width:100%;max-width:480px}
.sz-auth-logo{text-align:center;margin-bottom:28px}
.sz-auth-logo .sz-icon{width:64px;height:64px;background:linear-gradient(135deg,#1a73e8,#0f2d6b);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:28px;margin:0 auto 12px}
.sz-auth-logo h1{font-size:22px;font-weight:700;color:#202124;margin:0 0 4px}
.sz-auth-logo p{font-size:14px;color:#9aa0a6;margin:0}
.sz-auth-form{display:flex;flex-direction:column;gap:16px}
.sz-field label{display:block;font-size:12px;font-weight:600;color:#646970;margin-bottom:6px;text-transform:uppercase;letter-spacing:.4px}
.sz-field input,.sz-field select{width:100%;padding:12px 14px;border:1.5px solid #e8eaed;border-radius:10px;font-size:14px;color:#202124;outline:none;transition:border-color .2s,box-shadow .2s;box-sizing:border-box;background:#fff}
.sz-field input:focus,.sz-field select:focus{border-color:#1a73e8;box-shadow:0 0 0 3px rgba(26,115,232,.1)}
.sz-field input.sz-valid{border-color:#1e7e34}
.sz-field input.sz-invalid{border-color:#c5221f}
.sz-field-hint{font-size:11px;color:#9aa0a6;margin-top:4px}
.sz-field-hint.error{color:#c5221f}
.sz-field-hint.success{color:#1e7e34}
.sz-field-pass{position:relative}
.sz-field-pass input{padding-right:44px}
.sz-toggle-pass{position:absolute;right:12px;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;font-size:16px;color:#9aa0a6;padding:4px}
.sz-2col{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.sz-strength-bar{height:4px;border-radius:2px;background:#e8eaed;margin-top:6px;overflow:hidden}
.sz-strength-fill{height:100%;border-radius:2px;width:0;transition:width .3s,background .3s}
.sz-auth-btn{padding:13px;background:#1a73e8;color:#fff;border:none;border-radius:10px;font-size:15px;font-weight:600;cursor:pointer;transition:background .2s,transform .1s;width:100%;letter-spacing:.2px}
.sz-auth-btn:hover{background:#1557b0}
.sz-auth-btn:active{transform:scale(.98)}
.sz-auth-btn:disabled{background:#a0c4ff;cursor:not-allowed}
.sz-auth-divider{display:flex;align-items:center;gap:10px;color:#c5c7ca;font-size:12px}
.sz-auth-divider::before,.sz-auth-divider::after{content:'';flex:1;height:1px;background:#e8eaed}
.sz-auth-footer{text-align:center;font-size:13px;color:#9aa0a6}
.sz-auth-footer a{color:#1a73e8;text-decoration:none;font-weight:500}
.sz-auth-footer a:hover{text-decoration:underline}
.sz-auth-msg{padding:10px 14px;border-radius:8px;font-size:13px;display:none}
.sz-auth-msg.error{background:#fce8e6;color:#c5221f;border:1px solid #f5c6cb;display:block}
.sz-auth-msg.success{background:#e6f4ea;color:#1e7e34;border:1px solid #b7dfb9;display:block}
.sz-forgot a{font-size:12px;color:#1a73e8;text-decoration:none}
.sz-remember{display:flex;align-items:center;gap:8px;font-size:13px;color:#5f6368;cursor:pointer}
.sz-remember input[type=checkbox]{width:16px;height:16px;accent-color:#1a73e8;cursor:pointer;flex-shrink:0}
.sz-terms-check{display:flex;align-items:flex-start;gap:8px;font-size:13px;color:#5f6368;cursor:pointer}
.sz-terms-check input{width:16px;height:16px;accent-color:#1a73e8;cursor:pointer;flex-shrink:0;margin-top:1px}
.sz-terms-check a{color:#1a73e8;text-decoration:none}
.sz-spinner{width:18px;height:18px;border:2.5px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;animation:szSpin .7s linear infinite;display:inline-block;vertical-align:middle;margin-right:6px}
.sz-remember-row{display:flex;justify-content:space-between;align-items:center}
.sz-reg-error{ color: #c5221f; }
.sz-reg-muted{ color: #9aa0a6; font-weight: 400; }
@media(max-width:480px){.sz-2col{grid-template-columns:1fr}}

/* ── Profile page ──────────────────────────────────────────── */
.sz-profile-page{padding:32px 16px 56px;max-width:860px;margin:0 auto}
.sz-profile-header{background:linear-gradient(135deg,#0f2d6b,#1a73e8);color:#fff;border-radius:20px;padding:32px;margin-bottom:28px;display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.sz-profile-avatar-wrap{position:relative;flex-shrink:0}
.sz-profile-avatar{width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:32px;font-weight:700;border:3px solid rgba(255,255,255,.4)}
.sz-profile-avatar img{width:80px;height:80px;border-radius:50%;object-fit:cover;border:3px solid rgba(255,255,255,.4)}
.sz-profile-info h2{font-size:22px;font-weight:700;margin:0 0 4px}
.sz-profile-info p{font-size:14px;opacity:.8;margin:0}
.sz-profile-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.sz-profile-section{background:#fff;border:1px solid #e8eaed;border-radius:16px;overflow:hidden}
.sz-section-head{padding:18px 22px;border-bottom:1px solid #e8eaed;display:flex;align-items:center;gap:10px}
.sz-section-head h3{font-size:17px;font-weight:600;color:#202124;margin:0}
.sz-section-icon{font-size:20px}
.sz-section-body{padding:22px}
.sz-pfield{margin-bottom:16px}
.sz-pfield:last-child{margin-bottom:0}
.sz-pfield label{display:block;font-size:12px;font-weight:600;color:#646970;margin-bottom:6px;text-transform:uppercase;letter-spacing:.4px}
.sz-pfield input,.sz-pfield textarea,.sz-pfield select{width:100%;padding:11px 13px;border:1.5px solid #e8eaed;border-radius:9px;font-size:14px;color:#202124;outline:none;transition:border-color .2s,box-shadow .2s;box-sizing:border-box;font-family:inherit}
.sz-pfield input:focus,.sz-pfield textarea:focus{border-color:#1a73e8;box-shadow:0 0 0 3px rgba(26,115,232,.1)}
.sz-pfield input[readonly]{background:#f8f9fa;color:#9aa0a6;cursor:not-allowed}
.sz-pfield textarea{resize:vertical;min-height:80px}
.sz-pfield-hint{font-size:11px;color:#9aa0a6;margin-top:4px}
.sz-save-btn{padding:11px 28px;background:#1a73e8;color:#fff;border:none;border-radius:9px;font-size:14px;font-weight:600;cursor:pointer;transition:background .2s}
.sz-save-btn:hover{background:#1557b0}
.sz-save-btn:disabled{background:#a0c4ff;cursor:not-allowed}
.sz-danger-btn{padding:11px 28px;background:#fce8e6;color:#c5221f;border:1px solid #f5c6cb;border-radius:9px;font-size:14px;font-weight:600;cursor:pointer;transition:background .2s}
.sz-danger-btn:hover{background:#c5221f;color:#fff}
.sz-msg{padding:10px 14px;border-radius:8px;font-size:13px;display:none;margin-bottom:16px}
.sz-msg.error{background:#fce8e6;color:#c5221f;border:1px solid #f5c6cb;display:block}
.sz-msg.success{background:#e6f4ea;color:#1e7e34;border:1px solid #b7dfb9;display:block}
.sz-profile-back-btn{padding:9px 18px;background:rgba(255,255,255,.15);color:#fff;border:1px solid rgba(255,255,255,.3);border-radius:8px;font-size:13px;text-decoration:none;font-weight:500}
.sz-profile-back-wrap{margin-left:auto;display:flex;gap:10px;flex-wrap:wrap}
.sz-profile-name-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:16px}
.sz-profile-col2{display:flex;flex-direction:column;gap:24px}
.sz-danger-section{border-color:#fce8e6}
.sz-danger-head{background:#fff9f9;border-bottom-color:#fce8e6}
.sz-danger-title{color:#c5221f}
.sz-danger-desc{font-size:13px;color:#5f6368;margin:0 0 14px}
.sz-profile-joined-sub{margin-top:4px;font-size:12px;opacity:.65}
@media(max-width:680px){.sz-profile-grid{grid-template-columns:1fr}}

/* ── Dashboard ──────────────────────────────────────────────── */
.sz-db-hero-tags  {display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.sz-db-hero-tag   {background:rgba(255,255,255,.2);padding:4px 12px;border-radius:20px;font-size:12px;font-weight:600}
.sz-db-logout-btn {background:rgba(255,255,255,.15);color:#fff;border:1px solid rgba(255,255,255,.3);font-size:13px;flex-shrink:0}
.sz-db-grid       {display:grid;grid-template-columns:1fr 320px;gap:20px;align-items:start}
.sz-db-chart-card {background:#fff;border:1px solid #dadce0;border-radius:12px;padding:20px;margin-bottom:20px}
.sz-db-chart-title{font-size:16px;font-weight:600;color:#202124;margin-bottom:4px}
.sz-db-chart-sub  {font-size:12px;color:#9aa0a6;margin-bottom:16px}
.sz-db-chart-wrap {position:relative;height:220px}
.sz-db-subj-card  {background:#fff;border:1px solid #dadce0;border-radius:12px;padding:20px;margin-bottom:20px}
.sz-db-subj-title {font-size:16px;font-weight:600;color:#202124;margin-bottom:16px}
.sz-db-history-card {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden;margin-bottom:20px}
.sz-db-history-head {padding:16px 20px;border-bottom:1px solid #f1f3f4;display:flex;justify-content:space-between;align-items:center}
.sz-db-history-title{font-size:16px;font-weight:600;color:#202124;margin:0}
.sz-db-history-count{font-size:13px;color:#9aa0a6}
.sz-db-td-exam    {max-width:180px}
.sz-db-td-exam a  {color:#1a73e8;font-size:13px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.sz-db-td-score   {font-weight:600}
.sz-db-td-correct {color:#34a853;font-weight:600}
.sz-db-td-wrong   {color:#ea4335;font-weight:600}
.sz-db-td-date    {white-space:nowrap;color:#9aa0a6;font-size:12px}
.sz-db-td-time    {color:#9aa0a6;font-size:12px;white-space:nowrap}
.sz-db-td-review a{font-size:12px;color:#1a73e8;white-space:nowrap}
.sz-db-pagination {padding:12px 20px;border-top:1px solid #f1f3f4;display:flex;gap:6px;flex-wrap:wrap}
.sz-db-page-active{width:32px;height:32px;border-radius:6px;background:#1a73e8;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:13px;font-weight:600}
.sz-db-page-link  {width:32px;height:32px;border-radius:6px;border:1px solid #dadce0;background:#fff;color:#202124;display:inline-flex;align-items:center;justify-content:center;font-size:13px;text-decoration:none}
.sz-db-empty      {padding:48px 20px;text-align:center;color:#9aa0a6}
.sz-db-empty-icon {font-size:48px;margin-bottom:14px}
.sz-db-empty-text {font-size:15px;margin-bottom:18px}
.sz-db-lb-card    {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden;margin-bottom:16px}
.sz-db-lb-head    {padding:12px 16px;border-bottom:1px solid #f1f3f4;font-size:14px;font-weight:600;color:#202124;background:#f8f9fa}
.sz-db-lb-row     {display:flex;align-items:center;gap:8px;padding:9px 14px;border-bottom:1px solid #f8f9fa}
.sz-db-lb-row-me  {background:#e8f0fe}
.sz-db-lb-pos     {font-size:14px;min-width:24px}
.sz-db-lb-name    {flex:1;font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.sz-db-lb-score   {font-size:12px;font-weight:600;color:#1a73e8;white-space:nowrap}
.sz-db-lb-empty   {padding:20px;font-size:13px;color:#9aa0a6;text-align:center}
.sz-db-qa-card    {background:#fff;border:1px solid #dadce0;border-radius:12px;padding:16px;margin-top:16px}
.sz-db-qa-title   {font-size:14px;font-weight:600;color:#202124;margin-bottom:12px}
.sz-db-qa-links   {display:flex;flex-direction:column;gap:8px}
.sz-db-qa-center  {justify-content:center;text-align:center}

/* ── Single: news post ─────────────────────────────────────── */
.sz-single-wrap       {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden}
.sz-single-head       {padding:28px 32px;border-bottom:1px solid #f1f3f4}
.sz-single-title      {font-size:clamp(22px,3vw,32px);font-weight:700;color:#202124;line-height:1.3;margin:10px 0 10px}
.sz-single-meta       {font-size:14px;color:#9aa0a6;display:flex;gap:14px;flex-wrap:wrap}
.sz-single-ad-wrap    {padding:18px 32px}
.sz-single-content    {padding:0 32px 32px;font-size:16px;line-height:1.85;color:#3c4043}
.sz-single-share      {padding:18px 32px;border-top:1px solid #f1f3f4;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.sz-single-share-lbl  {font-size:14px;color:#9aa0a6;font-weight:500}
.sz-share-btn-sm      {font-size:12px;padding:7px 14px}
.sz-recent-link       {display:block;padding:10px 14px;border-bottom:1px solid #f1f3f4;font-size:16px;color:#202124;text-decoration:none;line-height:1.4}
.sz-recent-link-date  {display:block;font-size:11px;color:#9aa0a6;margin-top:2px}

/* ── Single: Admit Card ────────────────────────────────────── */
.sz-ac-single-card   {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden;margin-bottom:20px}
.sz-ac-single-hero   {background:linear-gradient(135deg,#0f2d6b,#1a73e8);color:#fff;padding:24px 28px}
.sz-ac-single-badge  {font-size:11px;background:rgba(255,255,255,.15);padding:3px 10px;border-radius:20px;text-transform:uppercase;letter-spacing:.5px;font-weight:600}
.sz-ac-single-title  {font-size:clamp(18px,3vw,24px);font-weight:700;margin:10px 0 0;line-height:1.3}
.sz-ac-info-row      {display:flex;flex-wrap:wrap;border-bottom:1px solid #f1f3f4}
.sz-ac-info-cell     {padding:14px 20px;border-right:1px solid #f1f3f4;flex:1;min-width:140px}
.sz-ac-info-label    {font-size:11px;color:#9aa0a6;text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.sz-ac-info-value    {font-size:15px;font-weight:600;color:#202124}
.sz-ac-actions-row   {padding:20px 28px;display:flex;gap:12px;flex-wrap:wrap}
.sz-ac-share-group   {margin-left:auto;display:flex;gap:8px}
.sz-ac-content-card  {background:#fff;border:1px solid #dadce0;border-radius:12px;padding:24px;margin-top:16px}
.sz-ac-content-body  {font-size:15px;line-height:1.75;color:#3c4043}
.sz-ac-sidebar-link  {display:block;padding:10px 14px;border-bottom:1px solid #f1f3f4;text-decoration:none;color:#202124;font-size:13px}
.sz-ac-sidebar-deadline{display:block;font-size:11px;color:#c5221f}

/* ── Single: Job ───────────────────────────────────────────── */
.sz-job-single-card  {background:#fff;border:1px solid #dadce0;border-radius:16px;overflow:hidden;margin-bottom:20px}
.sz-job-single-hero  {background:linear-gradient(135deg,#0f2d6b,#1a73e8);color:#fff;padding:24px 28px}
.sz-job-hero-inner   {display:flex;align-items:flex-start;gap:16px;flex-wrap:wrap}
.sz-job-hero-body    {flex:1}
.sz-job-hero-badge   {font-size:11px;background:rgba(255,255,255,.15);padding:3px 10px;border-radius:20px;text-transform:uppercase;letter-spacing:.5px;font-weight:600}
.sz-job-single-title {font-size:clamp(18px,3vw,24px);font-weight:700;margin:10px 0 6px;line-height:1.3}
.sz-job-org-name     {font-size:14px;opacity:.85}
.sz-job-vacancy-box  {text-align:center;background:rgba(255,255,255,.12);border-radius:10px;padding:12px 16px;flex-shrink:0}
.sz-job-vacancy-num  {font-size:26px;font-weight:700;display:block}
.sz-job-vacancy-lbl  {font-size:11px;opacity:.75;text-transform:uppercase;letter-spacing:.5px}
.sz-job-info-row     {display:flex;flex-wrap:wrap;gap:0;border-bottom:1px solid #f1f3f4}
.sz-job-info-cell    {padding:14px 20px;border-right:1px solid #f1f3f4;flex:1;min-width:140px}
.sz-job-info-label   {font-size:11px;color:#9aa0a6;text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.sz-job-info-value   {font-size:14px;font-weight:600;color:#202124}
.sz-job-actions-row  {padding:16px 24px;display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.sz-job-share-group  {margin-left:auto;display:flex;gap:8px}
.sz-job-content-card {background:#fff;border:1px solid #dadce0;border-radius:12px;padding:24px;margin-top:16px}
.sz-job-content-body {font-size:15px;line-height:1.75;color:#3c4043}
.sz-job-related-card {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden;margin-top:20px}
.sz-job-related-head {padding:14px 20px;border-bottom:1px solid #f1f3f4;font-size:15px;font-weight:600;color:#202124;background:#f8f9fa}
.sz-job-sidebar-body {font-size:13px;display:flex;flex-direction:column;gap:10px}
.sz-job-detail-label {color:#9aa0a6}
.sz-job-detail-blue  {color:#1a73e8}
.sz-job-detail-red   {color:#c5221f}
.sz-job-notif-link   {display:block;background:#e8f0fe;color:#1a73e8;text-align:center;padding:8px;border-radius:6px;font-weight:600;text-decoration:none;font-size:13px}

/* ── Single: Exam ──────────────────────────────────────────── */
.sz-exam-breadcrumb  {font-size:12px;color:#9aa0a6;margin-bottom:16px;display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.sz-exam-breadcrumb a{color:#1a73e8;text-decoration:none}
.sz-exam-hero        {background:linear-gradient(135deg,#0f2d6b,#1a73e8);color:#fff;border-radius:16px;padding:28px;margin-bottom:20px}
.sz-exam-hero-inner  {display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}
.sz-exam-hero-body   {flex:1}
.sz-exam-hero-badge  {font-size:11px;font-weight:600;background:rgba(255,255,255,.15);padding:3px 10px;border-radius:20px;letter-spacing:.5px;text-transform:uppercase;display:inline-block;margin-bottom:8px}
.sz-exam-hero-title  {font-size:clamp(18px,3vw,26px);font-weight:700;margin:0 0 8px;line-height:1.3}
.sz-exam-hero-excerpt{font-size:14px;opacity:.85;line-height:1.5;margin:0}
.sz-exam-qbox        {text-align:center;background:rgba(255,255,255,.12);border-radius:12px;padding:14px 20px;min-width:90px;flex-shrink:0}
.sz-exam-qbox-num    {font-size:32px;font-weight:700;display:block}
.sz-exam-qbox-lbl    {font-size:11px;opacity:.75;text-transform:uppercase;letter-spacing:.5px}
.sz-exam-stats-row   {display:flex;flex-wrap:wrap;gap:24px;margin-top:20px;padding-top:16px;border-top:1px solid rgba(255,255,255,.15)}
.sz-instr-card       {background:#fff;border:1px solid #dadce0;border-radius:12px;padding:24px;margin-top:20px}
.sz-instr-title      {font-size:17px;font-weight:600;color:#202124;margin-bottom:16px}
.sz-instr-list       {display:flex;flex-direction:column;gap:10px;font-size:14px;color:#3c4043}
.sz-instr-item       {display:flex;gap:10px}
.sz-instr-blue       {color:#1a73e8;font-weight:700;flex-shrink:0}
.sz-instr-red        {color:#c5221f;font-weight:700;flex-shrink:0}
.sz-instr-orange     {color:#e65100;font-weight:700;flex-shrink:0}
.sz-login-warn       {background:#fff8e1;border:1px solid #ffe082;border-radius:8px;padding:12px 16px;margin-top:16px;font-size:13px;color:#b06000;display:flex;gap:10px}
.sz-exam-start-row   {margin-top:24px;display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.sz-exam-no-q-warn   {background:#fce8e6;border:1px solid #f5c6c6;border-radius:8px;padding:12px 16px;color:#c5221f;font-size:14px}
.sz-exam-content-card{background:#fff;border:1px solid #dadce0;border-radius:12px;padding:24px;margin-top:16px}
.sz-exam-content-title{font-size:16px;font-weight:600;margin-bottom:12px}
.sz-exam-content-body {font-size:14px;line-height:1.75;color:#3c4043}
.sz-exam-loading-wrap {text-align:center;padding:80px 20px}
.sz-exam-loading-spin {width:52px;height:52px;border:4px solid #e8eaed;border-top-color:#1a73e8;border-radius:50%;animation:szSpin .8s linear infinite;margin:0 auto 16px}
.sz-exam-loading-title{font-size:18px;font-weight:600;color:#202124;margin-bottom:6px}
.sz-exam-loading-desc {color:#9aa0a6;font-size:14px}
.sz-exam-result-wrap  {text-align:center;padding:60px 20px}
.sz-exam-result-spin  {width:40px;height:40px;border:3px solid #e8eaed;border-top-color:#1a73e8;border-radius:50%;animation:szSpin .8s linear infinite;margin:0 auto 12px}
.sz-exam-result-desc  {color:#9aa0a6;font-size:15px}
.sz-exam-sidebar-link {display:flex;align-items:center;justify-content:space-between;padding:10px 14px;border-bottom:1px solid #f1f3f4;text-decoration:none;color:#202124;font-size:13px}
.sz-exam-sidebar-qs   {font-size:11px;color:#9aa0a6;flex-shrink:0;margin-left:8px}
.sz-past-attempts     {display:flex;flex-direction:column;gap:8px}
.sz-past-attempt-card {background:#f8f9fa;border-radius:8px;padding:10px;font-size:12px}
.sz-past-attempt-row  {display:flex;justify-content:space-between;margin-bottom:3px}
.sz-past-attempt-score{color:#202124}
.sz-past-attempt-date {color:#9aa0a6}
.sz-past-attempt-link {font-size:11px;color:#1a73e8}
#sz-quiz-wrapper{width:100%}
.sz-quiz-inner{max-width:100%}
#sz-result-container{width:100%}

/* ── Result page ───────────────────────────────────────────── */
.sz-result-loading  {text-align:center;padding:80px 20px}
.sz-result-spinner  {width:52px;height:52px;border:4px solid #e8eaed;border-top-color:#1a73e8;border-radius:50%;animation:szSpin .8s linear infinite;margin:0 auto 16px}
.sz-result-loading-h{font-size:18px;font-weight:600;color:#202124;margin-bottom:6px}
.sz-result-loading-p{color:#9aa0a6;font-size:14px}
.sz-result-error    {text-align:center;padding:60px 20px;color:#c5221f}
.sz-result-practice {display:flex;flex-direction:column;gap:8px}
.sz-result-center   {justify-content:center;text-align:center}

/* ── Exams listing page ────────────────────────────────────── */
.sz-exams-head        {text-align:center;margin-bottom:28px;padding:0 16px}
.sz-exams-title       {font-size:clamp(22px,4vw,32px);font-weight:700;color:#202124;margin-bottom:8px}
.sz-exams-desc        {font-size:15px;color:#5f6368;margin-bottom:20px}
.sz-exams-search-wrap {max-width:480px;margin:0 auto;position:relative}
.sz-exams-search-input{width:100%;padding:12px 16px 12px 44px;border:2px solid #dadce0;border-radius:10px;font-size:15px;outline:none;transition:.2s;box-sizing:border-box}
.sz-exams-search-icon {position:absolute;left:14px;top:50%;transform:translateY(-50%);color:#9aa0a6}
.sz-exams-cat-label   {display:block;font-size:11px;color:#9aa0a6;font-weight:400;margin-top:1px}
.sz-exams-empty       {grid-column:1/-1;text-align:center;padding:60px 20px;color:#9aa0a6}
.sz-exams-no-results  {display:none;text-align:center;padding:60px 20px;color:#9aa0a6}

/* ── Taxonomy: Exam Category ───────────────────────────────── */
.sz-cat-hero         {background:linear-gradient(135deg,#0f2d6b,#1a73e8);color:#fff;border-radius:16px;padding:28px;margin-bottom:24px}
.sz-cat-hero-inner   {display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.sz-cat-hero-icon    {width:52px;height:52px;border-radius:12px;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0}
.sz-cat-hero-title   {font-size:clamp(20px,3vw,28px);font-weight:700;margin:0 0 4px}
.sz-cat-hero-desc    {font-size:14px;opacity:.85;margin:0}
.sz-cat-hero-stats   {display:flex;gap:16px;margin-top:10px;font-size:13px;opacity:.85;flex-wrap:wrap}
.sz-cat-section-title{font-size:21px;font-weight:600;color:#202124;margin-bottom:6px}
.sz-cat-section-desc {font-size:15px;color:#5f6368;margin-bottom:18px}
.sz-cat-tests-card   {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden}
.sz-cat-empty        {text-align:center;padding:60px 20px;background:#fff;border-radius:12px;border:1px solid #dadce0}
.sz-cat-empty-title  {font-size:18px;font-weight:600;margin-bottom:8px;color:#202124}
.sz-cat-empty-desc   {color:#9aa0a6;font-size:15px}
.sz-tests-empty      {display:none;text-align:center;padding:48px 20px;color:#9aa0a6}
.sz-tests-loading    {display:none;text-align:center;padding:40px}
.sz-tests-loading-spin{width:32px;height:32px;border:3px solid #e8eaed;border-top-color:#1a73e8;border-radius:50%;animation:szSpin .7s linear infinite;margin:0 auto 10px}
.sz-tests-loading-desc{font-size:13px;color:#9aa0a6;margin:0}
.sz-cat-sidebar-link {display:flex;align-items:center;gap:10px;padding:10px 14px;border-bottom:1px solid #f1f3f4;text-decoration:none;color:#202124}
.sz-cat-sidebar-active{background:#e8f0fe;font-weight:600}
.sz-cat-link-text    {flex:1;font-size:13px}
.sz-cat-link-count   {font-size:11px;color:#9aa0a6}
.sz-test-row-name    {font-size:14px;font-weight:600;color:#202124;margin-bottom:3px}
.sz-test-row-meta    {font-size:12px;color:#9aa0a6}
.sz-test-row-center  {text-align:center}
.sz-test-free-badge  {font-size:11px;background:#e6f4ea;color:#1e7e34;padding:3px 8px;border-radius:10px}
.sz-test-start-btn   {display:inline-block;background:#1a73e8;color:#fff;padding:8px 18px;border-radius:6px;text-decoration:none;font-size:13px;font-weight:600}
/* Desktop: vertical sidebar */
.sz-cat-tests-card{display:flex;flex-direction:row;align-items:stretch}
#sz-subj-sidebar{flex-shrink:0;width:190px;border-right:1px solid #e8eaed;border-bottom:none;background:#f8f9fa;display:flex;flex-direction:column;overflow-y:auto;overflow-x:hidden}
#sz-tests-panel{flex:1;min-width:0}
.sz-sidebar-head{padding:12px 16px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#646970;border-bottom:1px solid #e8eaed;white-space:nowrap}
.sz-subj-tab{display:flex;align-items:center;justify-content:space-between;gap:6px;padding:11px 14px;cursor:pointer;font-size:13px;color:#3c4043;border-left:3px solid transparent;border-bottom:1px solid #f1f3f4;white-space:normal;transition:background .15s,color .15s,border-color .15s}
.sz-subj-tab:hover{background:#f1f3f4}
.sz-subj-tab.sz-subj-active{color:#1a73e8;font-weight:600;border-left-color:#1a73e8;background:#e8f4ff}
.sz-count{font-size:11px;color:#9aa0a6;font-weight:400;background:#f1f3f4;border-radius:10px;padding:1px 7px}
.sz-subj-active .sz-count{background:#d2e7ff;color:#1a73e8}
.sz-test-header{display:grid;grid-template-columns:1fr 90px 140px;gap:8px;padding:10px 16px;background:#f8f9fa;border-bottom:1px solid #e8eaed;font-size:11px;font-weight:700;color:#646970;text-transform:uppercase;letter-spacing:.5px}
.sz-test-row{display:grid;grid-template-columns:1fr 90px 140px;gap:8px;padding:14px 16px;border-bottom:1px solid #f1f3f4;align-items:center;transition:background .12s}
.sz-test-row:hover{background:#f8f9ff}
#sz-tests-list{max-height:none;overflow-y:visible}
#sz-load-more-wrap{text-align:center;padding:16px;border-top:1px solid #f1f3f4;display:none}
#sz-load-more-btn{display:inline-block;padding:10px 28px;background:#fff;border:1.5px solid #1a73e8;color:#1a73e8;font-size:14px;font-weight:600;border-radius:8px;cursor:pointer;transition:background .15s,color .15s}
#sz-load-more-btn:hover{background:#1a73e8;color:#fff}
#sz-load-more-btn:disabled{border-color:#ccc;color:#999;cursor:not-allowed}
@media(max-width:480px){
  .sz-test-header,.sz-test-row{grid-template-columns:1fr auto}
  .sz-test-header span:nth-child(2),.sz-test-row>div:nth-child(2){display:none}
}

/* ── Shortcode styles ──────────────────────────────────────── */
.sz-sc-page-head   {margin-bottom:20px}
.sz-sc-page-title  {font-size:22px;font-weight:700;color:#202124;margin-bottom:4px}
.sz-sc-page-desc   {font-size:14px;color:#5f6368}
.sz-sc-filter-bar  {display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px;padding-bottom:14px;border-bottom:1px solid #e8eaed}
.sz-sc-filter-active  {padding:6px 14px;border-radius:20px;border:1px solid #1a73e8;background:#1a73e8;color:#fff;text-decoration:none;font-size:13px}
.sz-sc-filter-inactive{padding:6px 14px;border-radius:20px;border:1px solid #dadce0;background:#fff;color:#5f6368;text-decoration:none;font-size:13px}
.sz-sc-exam-table  {background:#fff;border:1px solid #dadce0;border-radius:12px;overflow:hidden}
.sz-sc-table-head  {display:grid;grid-template-columns:1fr auto auto;gap:10px;padding:10px 16px;background:#f8f9fa;border-bottom:1px solid #e8eaed}
.sz-sc-head-center {text-align:center}
.sz-sc-head-right  {text-align:center;min-width:120px}
.sz-sc-table-row   {display:grid;grid-template-columns:1fr auto auto;gap:10px;padding:14px 16px;border-bottom:1px solid #f1f3f4}
.sz-sc-row-title   {font-size:14px;font-weight:600;color:#202124;margin-bottom:3px}
.sz-sc-row-meta    {font-size:12px;color:#9aa0a6}
.sz-sc-row-center  {text-align:center}
.sz-sc-row-free    {font-size:11px;background:#e6f4ea;color:#1e7e34;padding:3px 8px;border-radius:10px}
.sz-sc-row-action  {text-align:center;min-width:120px}
.sz-sc-start-btn   {display:inline-block;background:#1a73e8;color:#fff;padding:8px 20px;border-radius:6px;text-decoration:none;font-size:13px;font-weight:600}
.sz-sc-empty       {color:#9aa0a6;font-size:14px;padding:20px;background:#fff;border-radius:10px;border:1px solid #dadce0}
.sz-sc-section-title{font-size:17px;font-weight:600;color:#202124;margin-bottom:14px;margin-top:24px}
.sz-sc-job-grid    {display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:10px}
.sz-sc-job-card    {background:#fff;border:1px solid #dadce0;border-radius:10px;padding:14px 16px;display:flex;align-items:center;gap:12px}
.sz-sc-job-title   {font-size:13px;font-weight:600;color:#202124}
.sz-sc-job-org     {font-size:11px;color:#9aa0a6;margin-top:2px}
.sz-sc-job-deadline{background:#e8f0fe;color:#1a73e8;padding:4px 10px;border-radius:6px;font-size:11px;font-weight:600;flex-shrink:0}
.sz-sc-jobs-empty  {color:#9aa0a6;font-size:14px;padding:20px}
.sz-sc-modal-wrap  {background:#fff;border-radius:16px;width:100%;max-width:680px;max-height:90vh;overflow:hidden;display:flex;flex-direction:column}
.sz-sc-modal-head  {padding:16px 20px;border-bottom:1px solid #e8eaed;display:flex;justify-content:space-between;align-items:center}
.sz-sc-modal-title {font-size:16px;font-weight:600;margin:0}
.sz-sc-modal-close {background:none;border:none;font-size:20px;cursor:pointer;color:#5f6368}
.sz-sc-modal-body  {overflow-y:auto;flex:1;padding:20px}
.sz-sc-q-number    {font-size:12px;color:#9aa0a6;margin-bottom:10px}
.sz-sc-q-text      {font-size:16px;font-weight:500;color:#202124;margin-bottom:20px;line-height:1.5}
.sz-sc-q-img       {max-width:100%;border-radius:8px;margin-bottom:16px}
.sz-sc-options     {display:flex;flex-direction:column;gap:8px}
.sz-sc-option      {display:flex;align-items:center;gap:12px;padding:12px 16px;border:2px solid #e8eaed;border-radius:8px;cursor:pointer}
.sz-sc-option-circle{width:28px;height:28px;border-radius:50%;border:2px solid #dadce0;display:flex;align-items:center;justify-content:center;font-size:13px;flex-shrink:0}
.sz-sc-option-text {font-size:14px;color:#3c4043}
.sz-sc-modal-footer{display:flex;justify-content:space-between;margin-top:20px;padding-top:16px;border-top:1px solid #e8eaed}
.sz-sc-btn-prev    {padding:8px 18px;border:1px solid #dadce0;border-radius:6px;background:#fff;cursor:pointer}
.sz-sc-btn-group   {display:flex;gap:6px}
.sz-sc-btn-save    {padding:8px 18px;border:none;border-radius:6px;background:#e6f4ea;color:#1e7e34;cursor:pointer}
.sz-sc-btn-next    {padding:8px 18px;border:none;border-radius:6px;background:#1a73e8;color:#fff;cursor:pointer}
.sz-sc-btn-submit  {padding:8px 18px;border:none;border-radius:6px;background:#1e7e34;color:#fff;cursor:pointer}
.sz-sc-quiz-result {text-align:center;padding:30px 20px}
.sz-sc-result-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:24px}
.sz-sc-result-g    {background:#e6f4ea;border-radius:10px;padding:14px;text-align:center}
.sz-sc-result-r    {background:#fce8e6;border-radius:10px;padding:14px;text-align:center}
.sz-sc-result-n    {background:#f8f9fa;border-radius:10px;padding:14px;text-align:center}
.sz-sc-result-btns {display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.sz-sc-lb-row      {display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid #f1f3f4;cursor:pointer}
.sz-sc-lb-name     {font-weight:500}
.sz-sc-lb-deadline {font-size:11px;color:#c5221f;white-space:nowrap}
.sz-sc-lb-empty    {color:#9aa0a6;font-size:14px;padding:16px;text-align:center}
.sz-sc-lb-list     {display:flex;flex-direction:column;gap:8px}
.sz-title-bar      {color:#c5221f;font-size:13px}

/* ── Subject bar (dashboard) ───────────────────────────────── */
.sz-subj-bar-wrap  {margin-bottom:12px}
.sz-subj-bar-label {display:flex;justify-content:space-between;margin-bottom:4px}

/* ── news page styles (moved from <style> blocks) ──────────── */
.sz-news-page-hero{background:linear-gradient(135deg,#0f2d6b 0%,#1a73e8 100%);padding:48px 0 40px;color:#fff}
.sz-news-page-hero h1{font-size:34px;font-weight:800;margin:0 0 10px;color:#fff}
.sz-news-page-hero p{font-size:16px;color:rgba(255,255,255,.80);margin:0}
.sz-news-filter-bar{background:#fff;border-bottom:1px solid #e8eaed;padding:0;position:sticky;top:60px;z-index:100;box-shadow:0 1px 4px rgba(0,0,0,.06)}
.sz-news-filter-inner{display:flex;align-items:center;gap:6px;overflow-x:auto;padding:10px 0;scrollbar-width:none}
.sz-news-filter-inner::-webkit-scrollbar{display:none}
.sz-news-filter-inner a{flex-shrink:0;font-size:14px;font-weight:500;padding:7px 18px;border-radius:20px;text-decoration:none;transition:background .15s,color .15s;white-space:nowrap;color:#5f6368;background:#f1f3f4}
.sz-news-filter-inner a:hover{background:#e8f0fe;color:#1a73e8}
.sz-news-filter-inner a.active{background:#1a73e8;color:#fff}
.sz-news-featured{display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.08);margin-bottom:32px;text-decoration:none;background:#fff;border:1px solid #e8eaed;transition:box-shadow .2s}
.sz-news-featured:hover{box-shadow:0 8px 32px rgba(26,115,232,.15)}
.sz-news-featured-img{min-height:280px;background:linear-gradient(135deg,#e8f0fe,#c5d9f8);display:flex;align-items:center;justify-content:center;font-size:72px;overflow:hidden}
.sz-news-featured-img img{width:100%;height:100%;object-fit:cover;display:block}
.sz-news-featured-body{padding:36px 32px;display:flex;flex-direction:column;justify-content:center;gap:14px}
.sz-news-featured-title{font-size:26px;font-weight:700;color:#202124;line-height:1.35;margin:0}
.sz-news-featured-excerpt{font-size:16px;color:#5f6368;line-height:1.65;margin:0}
.sz-news-featured-meta{font-size:13px;color:#9aa0a6;display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.sz-news-read-btn{display:inline-flex;align-items:center;gap:6px;padding:10px 20px;background:#1a73e8;color:#fff;border-radius:8px;font-size:13px;font-weight:600;width:fit-content;margin-top:4px;transition:background .15s}
.sz-news-read-btn:hover{background:#1557b0;color:#fff}
.sz-news-big-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:24px}
.sz-news-big-card{background:#fff;border:1px solid #e8eaed;border-radius:12px;overflow:hidden;text-decoration:none;display:flex;flex-direction:column;transition:box-shadow .2s,border-color .2s,transform .15s}
.sz-news-big-card:hover{box-shadow:0 4px 20px rgba(26,115,232,.1);border-color:#1a73e8;transform:translateY(-2px)}
.sz-news-big-card-thumb{height:160px;background:linear-gradient(135deg,#e8f0fe,#c5d9f8);display:flex;align-items:center;justify-content:center;font-size:40px;overflow:hidden;flex-shrink:0}
.sz-news-big-card-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.sz-news-big-card-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1}
.sz-news-big-card-title{font-size:15px;font-weight:600;color:#202124;line-height:1.4}
.sz-news-big-card-date{font-size:12px;color:#9aa0a6}
.sz-news-list{display:flex;flex-direction:column;gap:14px;margin-bottom:28px}
.sz-news-list-item{display:grid;grid-template-columns:90px 1fr;gap:16px;background:#fff;border:1px solid #e8eaed;border-radius:10px;padding:16px;text-decoration:none;transition:box-shadow .15s,border-color .15s;align-items:center}
.sz-news-list-item:hover{box-shadow:0 2px 12px rgba(26,115,232,.1);border-color:#1a73e8}
.sz-news-list-thumb{width:90px;height:90px;border-radius:8px;background:linear-gradient(135deg,#e8f0fe,#c5d9f8);display:flex;align-items:center;justify-content:center;font-size:32px;overflow:hidden;flex-shrink:0}
.sz-news-list-thumb img{width:100%;height:100%;object-fit:cover;border-radius:8px}
.sz-news-list-info{display:flex;flex-direction:column;gap:6px;min-width:0}
.sz-news-list-title{font-size:15px;font-weight:600;color:#202124;line-height:1.4}
.sz-news-list-meta{font-size:12px;color:#9aa0a6;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.sz-news-cat-list a{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;border-bottom:1px solid #f1f3f4;text-decoration:none;font-size:14px;color:#202124;transition:background .12s,color .12s}
.sz-news-cat-list a:hover{background:#f8f9fa;color:#1a73e8}
.sz-news-cat-list a span{font-size:12px;color:#9aa0a6;background:#f1f3f4;border-radius:10px;padding:2px 8px}
.sz-news-trending a{display:flex;gap:12px;padding:14px 16px;border-bottom:1px solid #f1f3f4;text-decoration:none;align-items:flex-start;transition:background .12s}
.sz-news-trending a:hover{background:#f8f9fa}
.sz-news-trending-num{width:26px;height:26px;border-radius:50%;background:#e8f0fe;color:#1a73e8;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.sz-news-trending-title{font-size:13px;font-weight:500;color:#202124;line-height:1.4}
.sz-news-empty{text-align:center;padding:60px 20px;color:#9aa0a6}
@media(max-width:960px){
  .sz-news-featured{grid-template-columns:1fr}
  .sz-news-big-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .sz-news-big-grid{grid-template-columns:1fr}
  .sz-news-list-item{grid-template-columns:64px 1fr}
  .sz-news-list-thumb{width:64px;height:64px}
}

/* ── Additional utility classes ───────────────────────────── */
.sz-subj-bar-name   { font-size: 14px; font-weight: 500; color: #202124; }
.sz-subj-bar-score  { font-size: 13px; color: #9aa0a6; }
.sz-search-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1px solid #dadce0; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.1); z-index: 500; max-height: 400px; overflow-y: auto; }
.sz-front-job-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 10px; }
.sz-btn-xs          { font-size: 12px; padding: 5px 12px; }
.sz-front-empty     { color: #9aa0a6; padding: 16px; }
.sz-front-news-list { display: flex; flex-direction: column; gap: 8px; }
.sz-front-news-item { display: block; padding: 8px; background: #f8f9fa; border-radius: 6px; text-decoration: none; }
.sz-front-news-title{ font-size: 14px; font-weight: 600; color: #202124; margin-bottom: 2px; }
.sz-front-news-cat  { font-size: 12px; color: #c5221f; }
.sz-front-job-icon  { font-size: 24px; flex-shrink: 0; }
.sz-front-job-title { font-size: 14px; font-weight: 600; color: #202124; line-height: 1.3; }
.sz-front-job-deadline{ font-size: 12px; color: #c5221f; margin-top: 3px; }
.sz-front-job-badge { margin-left: auto; font-size: 12px; background: #e8f0fe; color: #1a73e8; padding: 3px 9px; border-radius: 6px; }
.sz-front-btns      { display: flex; gap: 8px; }

.sz-front-download-badge { margin-left: auto; font-size: 12px; background: #e8f0fe; color: #1a73e8; padding: 3px 9px; border-radius: 4px; flex-shrink: 0; }

.sz-subj-card { background: #fff; border: 1px solid #dadce0; border-radius: 10px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: border-color .15s; }
.sz-subj-card:hover { border-color: #1a73e8; }

/* ============================================================
   DESKTOP ENHANCEMENTS (≥ 1024px) — v13 spacing/typography pass
   ============================================================ */
@media (min-width: 1024px) {
  /* Hero */
  .sz-hero { padding: 64px 0; }

  /* Comfortable top-level page padding */
  .sz-page-pad    { padding: 40px 15px 72px; }
  .sz-page-pad-lg { padding: 56px 0 80px; }

  /* Section spacing */
  .sz-section,
  .sz-grid-main .sz-main-col .sz-ad-slot { margin-bottom: 35px; }

  /* Section title */
  .sz-section-title { font-size: 24px; margin-bottom: 22px; }

  /* Table typography */
  .sz-table { font-size: 15px; }
  .sz-table th { font-size: 13px; padding: 14px 18px; }
  .sz-table td { padding: 14px 18px; }

  /* Leaderboard items */
  .sz-lb-item { padding: 12px 20px; }

  /* Footer grid spacing */
  .sz-footer-grid { gap: 48px; }
  .sz-footer { padding: 56px 0 24px; }

  /* Ad slot top breathing room */
  .sz-ad-728 { margin: 16px 0; }
}


/* ============================================================
   MOBILE APP-LIKE EXPERIENCE  v2 — Clean & Native Feel
   Inspired by: Testbook App, MyGov, DigiLocker, PhonePe
   ============================================================ */

/* ── Global mobile tokens ──────────────────────────────────── */
:root {
  --mob-h:        56px;   /* header height        */
  --mob-bnav:     60px;   /* bottom nav height    */
  --mob-pad:      14px;   /* horizontal padding   */
  --mob-radius:   14px;   /* default card radius  */
  --mob-blue:     #1a73e8;
  --mob-surface:  #f4f6fb;/* page bg              */
  --mob-card:     #ffffff;
  --mob-divider:  #e8eaed;
  --mob-text1:    #202124;
  --mob-text2:    #5f6368;
  --mob-text3:    #9aa0a6;
}

/* ─── Bottom nav — hidden on desktop ─────────────────────── */
.sz-bottom-nav { display: none; }

/* ============================================================
   @media ≤ 767px  — ALL mobile overrides in one block
   ============================================================ */
@media (max-width: 767px) {

  /* ── 0. BASE ─────────────────────────────────────────────── */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  body {
    background: var(--mob-surface) !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
  }

  /* Prevent all sections from breaking right edge */
  .sz-container,
  .sz-section,
  .sz-job-list,
  .sz-news-grid,
  .sz-exam-grid,
  .sz-front-job-grid {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Job titles — don't clip text, allow wrap */
  .sz-job-title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word;
  }

  /* ── 1. FIXED HEADER — App bar ──────────────────────────── */
  .sz-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--mob-h);
    background: #fff;
    border-bottom: 1px solid var(--mob-divider);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }

  .sz-header-inner {
    height: var(--mob-h);
    padding: 0 var(--mob-pad);
    gap: 8px;
    display: flex;
    align-items: center;
  }

  .sz-logo img  { height: 30px; width: auto; display: block; }
  .sz-logo span { display: none; }

  /* hide desktop items */
  .sz-header-search,
  .sz-btn-register,
  .sz-btn-login   { display: none !important; }

  /* Nav hidden by default on mobile, shown when .open toggled */
  .sz-nav { display: none; }
  .sz-nav.open {
    display: flex !important;
    position: fixed;
    top: var(--mob-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--mob-divider);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    z-index: 998;
    animation: slideDown .18s ease;
  }
  .sz-nav.open a {
    padding: 13px 20px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid #f1f3f4;
    color: #3c4043;
  }
  .sz-nav.open a:last-child { border-bottom: none; }
  .sz-nav.open a.active,
  .sz-nav.open a:hover { background: #e8f0fe; color: #1a73e8; }

  .sz-header-actions { gap: 6px; margin-left: auto; }

  /* Search icon button */
  .sz-mob-search-btn {
    width: 36px; height: 36px;
    border: none; background: #f1f3f4;
    border-radius: 50%;
    font-size: 16px;
    display: flex !important;
    align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--mob-text1);
  }

  /* Hamburger */
  .sz-menu-toggle {
    display: flex !important;
    width: 36px; height: 36px;
    border: none; background: transparent;
    font-size: 20px;
    align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--mob-text1);
  }

  /* Mobile search slide-down */
  .sz-header-search.mobile-open {
    display: flex !important;
    position: fixed;
    top: var(--mob-h); left: 0; right: 0;
    background: #fff;
    padding: 10px var(--mob-pad);
    border-bottom: 1px solid var(--mob-divider);
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    animation: slideDown .18s ease;
  }

  @keyframes slideDown {
    from { transform: translateY(-8px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  .sz-header-search.mobile-open form {
    display: flex;
    align-items: center;
    width: 100%;
    background: #f1f3f4;
    border-radius: 24px;
    padding: 8px 16px;
    gap: 8px;
  }

  .sz-header-search.mobile-open input {
    flex: 1; border: none; background: transparent;
    font-size: 15px; color: var(--mob-text1); outline: none;
  }

  .sz-header-search.mobile-open button {
    background: none; border: none;
    font-size: 18px; color: var(--mob-blue);
    cursor: pointer; padding: 0; line-height: 1;
  }

  /* ── 2. PAGE CONTENT OFFSET ─────────────────────────────── */
  #sz-page-content {
    margin-top: var(--mob-h);
    padding-bottom: calc(var(--mob-bnav) + env(safe-area-inset-bottom, 0px) + 8px);
  }

  /* ── 3. BOTTOM NAVIGATION BAR ───────────────────────────── */
  .sz-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid var(--mob-divider);
    height: var(--mob-bnav);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -2px 16px rgba(0,0,0,.07);
  }

  .sz-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--mob-text3);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    padding: 6px 2px;
    transition: color .15s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .sz-bottom-nav a .sz-bnav-icon {
    font-size: 20px;
    line-height: 1;
    transition: transform .15s cubic-bezier(.34,1.56,.64,1);
  }

  .sz-bottom-nav a.active {
    color: var(--mob-blue);
  }

  .sz-bottom-nav a.active .sz-bnav-icon {
    transform: scale(1.18);
  }

  /* Accent dot for active */
  .sz-bottom-nav a.active::after {
    content: '';
    position: absolute;
    top: 4px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--mob-blue);
    border-radius: 50%;
  }

  /* ── 4. HERO — Mobile app hero ──────────────────────────── */
  .sz-hero {
    padding: 18px var(--mob-pad) 20px;
    background: linear-gradient(135deg, #0f2d6b 0%, #1a73e8 70%, #0ea5e9 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 0;
  }

  .sz-hero h1 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    letter-spacing: -.2px;
  }

  .sz-hero p {
    font-size: 13px;
    line-height: 1.5;
    opacity: .85;
    margin-bottom: 14px;
  }

  /* Hero search */
  .sz-search-bar {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 28px;
    padding: 6px 6px 6px 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .sz-search-bar input {
    font-size: 14px;
    background: transparent;
    color: #fff;
  }

  .sz-search-bar input::placeholder { color: rgba(255,255,255,.7); }

  .sz-search-bar button {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background: #fff;
    color: var(--mob-blue);
    border: none;
  }

  /* Hero stats */
  .sz-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 16px;
    background: rgba(0,0,0,.15);
    border-radius: 14px;
    overflow: hidden;
  }

  .sz-hero-stat {
    padding: 10px 4px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
  }

  .sz-hero-stat:last-child { border-right: none; }
  .sz-hero-stat strong { font-size: 17px; font-weight: 700; display: block; }
  .sz-hero-stat small  { font-size: 9px;  opacity: .8; letter-spacing: .2px; }

  /* ── 5. CONTAINER & LAYOUT ──────────────────────────────── */
  .sz-container { padding: 0 var(--mob-pad); }

  .sz-grid-main {
    display: block !important;
    gap: 0 !important;
  }

  .sz-sidebar { display: none !important; }

  .sz-section { margin-bottom: 8px; }

  .sz-page-pad    { padding: 14px var(--mob-pad) calc(var(--mob-bnav) + 24px); }
  .sz-page-pad-lg { padding: 20px var(--mob-pad) calc(var(--mob-bnav) + 24px); }

  /* ── 6. QUICK SHORTCUT CHIPS ROW ───────────────────────── */
  .sz-quick-chips {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 12px 0 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .sz-quick-chips::-webkit-scrollbar { display: none; }

  .sz-quick-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: var(--mob-blue);
    border: 1.5px solid #d2e3fc;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(26,115,232,.08);
    transition: background .15s, transform .1s;
  }

  .sz-quick-chip:active {
    background: #e8f0fe;
    transform: scale(.96);
  }

  /* ── 7. SECTION TITLES ──────────────────────────────────── */
  .sz-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--mob-text1);
    margin-bottom: 12px;
    padding: 25px 0 0;
    letter-spacing: -.1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
.home .sz-grid-main{
	padding-top:0;
}

  .sz-section-title a {
    font-size: 12px;
    font-weight: 500;
    color: var(--mob-blue);
  }
  #sz-btt{
	bottom:70px!important;
}
.single-studyzia_admit_card #sz-btt,
.single-studyzia_job #sz-btt{
	bottom:140px!important;
}
.single-post .sjd-main{
	padding-bottom:0!important;
}
.sz-main-col .sz-ad-slot{
	margin-top:33px;
}

  /* ── 8. EXAM CARDS — 2-col app grid ─────────────────────── */
  .sz-exam-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .sz-exam-card {
    background: var(--mob-card);
    border: 1.5px solid var(--mob-divider);
    border-radius: var(--mob-radius);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: transform .12s, box-shadow .12s;
    position: relative;
    overflow: hidden;
  }

  .sz-exam-card:active {
    transform: scale(.97);
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
  }

  .sz-exam-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }

  .sz-exam-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--mob-text1);
    line-height: 1.35;
  }

  .sz-exam-meta {
    font-size: 11px;
    color: var(--mob-text3);
    line-height: 1.3;
  }

  .sz-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-top: 0;
  }

  /* ── 9. JOB ITEMS — Full-width list cards ───────────────── */
  .sz-job-list { gap: 8px !important; }

  .sz-job-item {
    background: var(--mob-card);
    border: 1.5px solid var(--mob-divider);
    border-radius: var(--mob-radius);
    padding: 12px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: transform .12s;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .sz-job-item:active { transform: scale(.98); }

  .sz-job-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .sz-job-info { flex: 1; min-width: 0; overflow: hidden; }

  .sz-job-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--mob-text1);
    line-height: 1.35;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word;
  }
  .sz-job-org   { font-size: 11px; color: var(--mob-text2); margin-top: 2px; word-break: break-word; }
  .sz-job-date  { font-size: 10px; color: #c5221f; font-weight: 500; }
  .sz-vacancy   { font-size: 10px; font-weight: 600; color: #1e7e34; }

  .sz-job-meta  { flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; max-width: 80px; min-width: 0; }

  /* ── 10. NEWS CARDS — horizontal list card ──────────────── */
  .sz-news-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .sz-news-card {
    background: var(--mob-card);
    border: 1.5px solid var(--mob-divider);
    border-radius: var(--mob-radius);
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: transform .12s;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .sz-news-card:active { transform: scale(.98); }

  .sz-news-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 2px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 2px;
  }

  .sz-news-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--mob-text1);
    line-height: 1.4;
    word-break: break-word;
  }

  .sz-news-excerpt { display: none; }

  .sz-news-date {
    font-size: 11px;
    color: var(--mob-text3);
    margin-top: 1px;
  }

  /* ── 11. ADMIT CARDS ─────────────────────────────────────── */
  .sz-front-job-grid { display: flex; flex-direction: column; gap: 8px; }

  .sz-front-job-item {
    background: var(--mob-card);
    border: 1.5px solid var(--mob-divider);
    border-radius: var(--mob-radius);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: transform .12s;
  }

  .sz-front-job-item:active { transform: scale(.98); }
  .sz-front-job-icon  { font-size: 22px; flex-shrink: 0; }
  .sz-front-job-title { font-size: 14px; font-weight: 600; color: var(--mob-text1); line-height: 1.3; }
  .sz-front-job-deadline { font-size: 11px; color: #c5221f; margin-top: 2px; font-weight: 500; }
  .sz-front-download-badge {
    margin-left: auto; flex-shrink: 0;
    font-size: 12px; background: #e8f0fe; color: var(--mob-blue);
    padding: 4px 10px; border-radius: 20px; font-weight: 600;
  }

  /* ── 12. LEADERBOARD ─────────────────────────────────────── */
  .sz-lb-item {
    background: var(--mob-card);
    border: 1.5px solid var(--mob-divider);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
  }

  .sz-lb-item.top-3 {
    border-color: #ffd700;
    background: linear-gradient(90deg, #fffef0 0%, #fff 100%);
  }

  .sz-lb-name  { font-size: 14px; }
  .sz-lb-tests { font-size: 11px; }
  .sz-lb-score { font-size: 14px; }

  /* Leaderboard period buttons */
  #lb-tabs { display: flex; gap: 6px; }
  #lb-tabs .sz-btn {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
  }

  /* ── 13. FOOTER — hide, bottom nav replaces ──────────────── */
  .sz-footer,
  .sz-footer-ad-bar,
  .sz-ad-728        { display: none !important; }

  /* ── 14. AD SLOTS ────────────────────────────────────────── */
  .sz-ad-728 { display: none !important; }

  /* ── 15. SINGLE POST ─────────────────────────────────────── */
  .sz-single-wrap {
    border-radius: 0;
    border-left: none; border-right: none;
  }

  .sz-single-head    { padding: 16px var(--mob-pad); }
  .sz-single-title   { font-size: 19px; line-height: 1.3; }
  .sz-single-meta    { font-size: 12px; }
  .sz-single-content { padding: 0 var(--mob-pad) 24px; font-size: 15px; line-height: 1.8; }
  .sz-single-share   { padding: 14px var(--mob-pad); }

  /* ── 16. ARCHIVE & STATIC PAGES ─────────────────────────── */
  .sz-archive-title  { font-size: 20px; }
  .sz-archive-desc   { font-size: 13px; }

  .sz-policy-wrap,
  .sz-about-content,
  .sz-static-page {
    padding: 18px var(--mob-pad);
    border-radius: 0;
    border-left: none; border-right: none;
  }

  .sz-policy-title { font-size: 21px; }
  .sz-policy-body  { font-size: 15px; line-height: 1.8; }

  /* ── 17. TABLES ──────────────────────────────────────────── */
  .sz-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--mob-radius); }
  .sz-table { font-size: 13px; }
  .sz-table th, .sz-table td { padding: 10px 12px; white-space: nowrap; }

  /* ── 18. FORMS ───────────────────────────────────────────── */
  .sz-form-field input,
  .sz-form-field select,
  .sz-form-field textarea {
    font-size: 16px; /* stops iOS auto-zoom */
    padding: 13px 14px;
    border-radius: 12px;
  }

  /* ── 19. QUIZ ────────────────────────────────────────────── */
  .sz-question-text { font-size: 15px; line-height: 1.6; }
  .sz-option-text   { font-size: 14px; }
  .sz-option-key    { width: 26px; height: 26px; font-size: 12px; flex-shrink: 0; }

  /* ── 20. NEWS PAGE ───────────────────────────────────────── */
  .sz-news-featured { grid-template-columns: 1fr !important; }
  .sz-news-featured-img   { min-height: 160px; font-size: 44px; }
  .sz-news-featured-body  { padding: 14px; }
  .sz-news-featured-title { font-size: 17px; }
  .sz-news-big-grid       { grid-template-columns: 1fr !important; }
  .sz-news-list-item { grid-template-columns: 70px 1fr; padding: 10px; gap: 10px; border-radius: 12px; }
  .sz-news-list-thumb { width: 70px; height: 70px; font-size: 24px; border-radius: 10px; }
  .sz-news-list-title { font-size: 13px; }
  .sz-news-list-meta  { font-size: 11px; }
  .sz-news-page-hero  { padding: 24px 0 18px; border-radius: 0 0 16px 16px; }
  .sz-news-page-hero h1 { font-size: 21px; }

  /* ── 21. SECTION HEAD (exam detail) ──────────────────────── */
  .sz-section-head { padding: 12px 14px; }
  .sz-section-head h3 { font-size: 15px; }
  .sz-section-body    { padding: 12px; }

  /* ── 22. SUBJ TABS — mobile horizontal ─────────────────── */
  .sz-cat-tests-card{flex-direction:column}
  #sz-subj-sidebar {
    width:100% !important;
    flex-direction:row !important;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    border-right:none;
    border-bottom:1px solid #e8eaed;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  #sz-subj-sidebar::-webkit-scrollbar{display:none}
  .sz-subj-tab{border-left:none;border-bottom:3px solid transparent;white-space:nowrap;padding:10px 14px;font-size:13px}
  .sz-subj-tab.sz-subj-active{border-left-color:transparent;border-bottom-color:#1a73e8}
  .sz-sidebar-head{display:none}

  #sz-subj-sidebar::-webkit-scrollbar { display: none; }
  .sz-subj-tab { padding: 10px 14px; font-size: 13px; }

  /* ── 23. SEARCH DROPDOWN ─────────────────────────────────── */
  .sz-search-dropdown {
    position: fixed !important;
    top: calc(var(--mob-h) + 58px) !important;
    left: var(--mob-pad) !important;
    right: var(--mob-pad) !important;
    border-radius: 12px;
    max-height: 50vh;
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    z-index: 1001;
  }

  /* ── 24. MISC HELPERS ─────────────────────────────────────── */
  .sz-hide-mobile  { display: none !important; }
  .sz-show-mobile  { display: block !important; }

  /* ── 25. RIPPLE KEYFRAME ─────────────────────────────────── */
  @keyframes sz-ripple {
    to { transform: scale(3.5); opacity: 0; }
  }

} /* end @media ≤ 767px */


/* ── Bottom nav item class (sz-bnav-item) ─────────────────── */
@media (max-width: 767px) {
  .sz-bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #9aa0a6;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    transition: color .15s;
  }

  .sz-bnav-item .sz-bnav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1);
  }

  .sz-bnav-item .sz-bnav-icon svg { display: block; }

  .sz-bnav-item.active { color: #1a73e8; }

  .sz-bnav-item.active .sz-bnav-icon {
    transform: scale(1.18);
  }

  /* Blue top pill on active */
  .sz-bnav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22%; right: 22%;
    height: 3px;
    background: #1a73e8;
    border-radius: 0 0 4px 4px;
  }

  /* Ripple keyframe (also in mobile block, harmless duplicate) */
  @keyframes sz-ripple {
    to { transform: scale(3.5); opacity: 0; }
  }
}


/* ── Hero trust badge & highlight ────────────────────────── */
.sz-hero-trust {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.sz-hero-highlight {
  position: relative;
  color: #ffd54f;
}

/* Mobile overrides for new hero elements */
@media (max-width: 767px) {
  .sz-hero-trust {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  .sz-hero h1 { font-size: 20px; }
  .sz-hero-highlight { color: #ffd54f; }
}


/* ============================================================
   ADMIT CARD COMPONENT — Desktop + Mobile
   ============================================================ */

/* ── Desktop grid layout ──────────────────────────────────── */
.sz-ac-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sz-ac-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .18s, transform .12s, border-color .18s;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  position: relative;
}

.sz-ac-card:hover {
  box-shadow: 0 4px 18px rgba(26,115,232,.13);
  border-color: #a8c7fa;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Left accent bar */
.sz-ac-bar {
  width: 5px;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 0;
}

/* Icon circle */
.sz-ac-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin: 12px 14px 12px 12px;
}

/* Body text */
.sz-ac-body {
  flex: 1;
  min-width: 0;
  padding: 12px 0;
}

.sz-ac-title {
  font-size: 15px;
  font-weight: 600;
  color: #202124;
  line-height: 1.4;
  word-break: break-word;
}

.sz-ac-deadline {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: 12px;
  color: #5f6368;
  font-weight: 500;
}

.sz-ac-deadline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Download pill */
.sz-ac-download {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 12px 14px 12px 8px;
  letter-spacing: .2px;
  transition: opacity .15s;
  white-space: nowrap;
}

.sz-ac-card:hover .sz-ac-download { opacity: .8; }

/* ── Mobile overrides ─────────────────────────────────────── */
@media (max-width: 767px) {
  .sz-ac-grid { gap: 8px; }

  .sz-ac-card {
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
  }

  .sz-ac-bar { width: 4px; }

  .sz-ac-icon {
    width: 38px; height: 38px;
    font-size: 18px;
    border-radius: 10px;
    margin: 10px 10px 10px 10px;
  }

  .sz-ac-body { padding: 10px 0; }

  .sz-ac-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .sz-ac-deadline {
    font-size: 11px;
    margin-top: 3px;
  }

  .sz-ac-download {
    font-size: 11px;
    padding: 5px 10px;
    margin: 10px 10px 10px 6px;
  }
}


/* ============================================================
   JOB DETAIL PAGE — sjd-* components
   Desktop + Mobile App-Like Design
   ============================================================ */

/* ── Page wrapper ─────────────────────────────────────────── */
.sjd-page {
  background: #f4f6fb;
  min-height: 100vh;
}

/* ── Mobile top back-bar (hidden on desktop) ──────────────── */
.sjd-mobile-bar {
  display: none;
}

/* ── Main content area ────────────────────────────────────── */
.sjd-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

/* ── Mobile-only elements ─────────────────────────────────── */
/* ── Ad wrap ──────────────────────────────────────────────── */
.sjd-ad-wrap { margin: 0; }

/* ══════════════════════════════════════════════════════════════
   HERO CARD
   ══════════════════════════════════════════════════════════════ */
.sjd-hero-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e8eaed;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
}

/* Gradient banner inside hero */
.sjd-hero-banner {
  background: linear-gradient(135deg, #0f2d6b 0%, #1a73e8 60%, #0ea5e9 100%);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}

/* Org avatar circle */
.sjd-org-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
}

/* Text block */
.sjd-hero-text { flex: 1; min-width: 0; }

.sjd-type-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.sjd-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 6px;
  word-break: break-word;
}

.sjd-org {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  margin: 0;
}

/* Vacancy pill */
.sjd-vacancy-pill {
  flex-shrink: 0;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  min-width: 68px;
  backdrop-filter: blur(4px);
}

.sjd-vacancy-pill strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.sjd-vacancy-pill small {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: 2px;
}

/* ── Deadline strip ───────────────────────────────────────── */
.sjd-deadline-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #f1f3f4;
}

.sjd-deadline-active {
  background: #e6f4ea;
  color: #1e7e34;
}

.sjd-deadline-expired {
  background: #fce8e6;
  color: #c5221f;
}

.sjd-deadline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: sjd-pulse 1.8s ease infinite;
}

.sjd-deadline-active .sjd-deadline-dot { background: #1e7e34; }
.sjd-deadline-expired .sjd-deadline-dot { background: #c5221f; animation: none; }

@keyframes sjd-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

/* ── Info chips grid ──────────────────────────────────────── */
.sjd-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: #f1f3f4;
  border-top: 1px solid #f1f3f4;
}

.sjd-info-chip {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.sjd-chip-icon { font-size: 20px; flex-shrink: 0; }

.sjd-chip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sjd-chip-text small {
  font-size: 11px;
  color: #9aa0a6;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 600;
}

.sjd-chip-text span {
  font-size: 14px;
  font-weight: 600;
  color: #202124;
  word-break: break-word;
}

/* ── CTA buttons row ──────────────────────────────────────── */
.sjd-cta-row {
  display: flex;
  gap: 10px;
  padding: 18px 20px;
  flex-wrap: wrap;
  border-top: 1px solid #f1f3f4;
  align-items: center;
}

.sjd-btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26,115,232,.35);
  transition: transform .15s, box-shadow .15s;
  letter-spacing: .2px;
}

.sjd-btn-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,115,232,.45);
  color: #fff;
  text-decoration: none;
}

/* Pulse animation on apply button */
.sjd-btn-pulse {
  animation: sjd-btn-pulse 2.5s ease infinite;
}

@keyframes sjd-btn-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(26,115,232,.35); }
  50%       { box-shadow: 0 4px 22px rgba(26,115,232,.6); }
}

.sjd-btn-expired {
  background: #e8eaed;
  color: #9aa0a6;
  box-shadow: none;
  animation: none;
  cursor: default;
}

.sjd-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  background: #f1f3f4;
  color: #202124;
  font-size: 14px;
  font-weight: 600;
  border-radius: 28px;
  text-decoration: none;
  border: 1.5px solid #e8eaed;
  transition: background .15s, border-color .15s;
}

.sjd-btn-secondary:hover {
  background: #e8eaed;
  border-color: #dadce0;
  color: #202124;
  text-decoration: none;
}

/* ── Share row ────────────────────────────────────────────── */
.sjd-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 16px;
  flex-wrap: wrap;
}

.sjd-share-label {
  font-size: 12px;
  color: #9aa0a6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.sjd-share-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
}

.sjd-share-pill:hover { opacity: .85; transform: scale(.97); text-decoration: none; }

.sjd-share-wa   { background: #e7f8ee; color: #1a7a3c; }
.sjd-share-tg   { background: #e8f4fd; color: #0088cc; }
.sjd-share-copy { background: #f1f3f4; color: #5f6368; cursor: pointer; border: none; font-family: inherit; }

/* ══════════════════════════════════════════════════════════════
   JOB CONTENT CARD
   ══════════════════════════════════════════════════════════════ */
.sjd-content-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}

.sjd-content-inner {
  padding: 28px 28px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #3c4043;
}

/* Typography inside content */
.sjd-content-inner h2 {
  font-size: 19px;
  font-weight: 700;
  color: #202124;
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8f0fe;
}

.sjd-content-inner h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a73e8;
  margin: 0 0 15px;
}

.sjd-content-inner ul, .sjd-content-inner ol {
  padding-left: 20px;
  margin: 10px 0;
}

.sjd-content-inner li { margin-bottom: 6px; }

.sjd-content-inner blockquote {
  background: #fffbeb;
  border-left: 4px solid #fbbc04;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  margin: 16px 0;
  color: #5f4200;
  font-size: 14px;
}

.sjd-content-inner hr {
  border: none;
  border-top: 1px solid #f1f3f4;
  margin: 24px 0;
}

/* ══════════════════════════════════════════════════════════════
   RELATED JOBS CARD
   ══════════════════════════════════════════════════════════════ */
.sjd-related-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}

.sjd-related-head {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #202124;
  border-bottom: 1px solid #f1f3f4;
  background: #fafbfc;
}

.sjd-related-card .sz-job-list {
  padding: 12px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR WIDGET
   ══════════════════════════════════════════════════════════════ */
.sjd-sidebar-widget {
  position: sticky;
  top: 80px;
  border-radius: 14px;
  overflow: hidden;
}

.sjd-sidebar-body {
  padding: 4px 0;
}

.sjd-sb-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f3f4;
}

.sjd-sb-row:last-of-type { border-bottom: none; }

.sjd-sb-label {
  font-size: 11px;
  color: #9aa0a6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.sjd-sb-val {
  font-size: 14px;
  font-weight: 600;
  color: #202124;
  word-break: break-word;
}

.sjd-sb-blue { color: #1a73e8; }
.sjd-sb-red  { color: #c5221f; }

.sjd-sb-notif-btn {
  display: block;
  margin: 14px 16px 16px;
  padding: 11px 0;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}

.sjd-sb-notif-btn:hover {
  background: #d2e3fc;
  color: #1557b0;
  text-decoration: none;
}

/* ── Sticky apply bar — hidden desktop ────────────────────── */
.sjd-sticky-apply { display: none; }

/* ── Fade-up animation — DISABLED ────────────────────────── */
[data-anim="fadeUp"] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-anim="fadeUp"].anim-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERRIDES  (≤ 767px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Back bar — sits below the existing site header ──── */
  .sjd-mobile-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: var(--mob-h, 56px);
    height: 48px;
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    padding: 0 14px;
    z-index: 990;
  }

  .sjd-back-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f1f3f4;
    display: flex; align-items: center; justify-content: center;
    color: #202124;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .15s;
  }

  .sjd-back-btn:active { background: #e8eaed; }

  .sjd-mobile-bar-title {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sjd-share-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #e7f8ee;
    display: flex; align-items: center; justify-content: center;
    color: #1a7a3c;
    text-decoration: none;
    flex-shrink: 0;
  }

  /* ── Push content below mobile bar ─────────────────────── */
  .sjd-page .sz-container {
    padding: 0 !important;
  }

  .sjd-main {
    gap: 10px;
    padding: 0 0 calc(60px + env(safe-area-inset-bottom, 0px));
  }

  /* ── Hero card ──────────────────────────────────────────── */
  .sjd-hero-card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e8eaed;
    margin-top: 0;
    box-shadow: none;
  }

  .sjd-hero-banner {
    padding: 20px 14px;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .sjd-org-avatar {
    width: 46px; height: 46px;
    font-size: 15px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .sjd-hero-text { flex: 1; min-width: 0; }

  .sjd-type-badge {
    font-size: 10px;
    padding: 2px 8px;
    margin-bottom: 6px;
  }

  .sjd-title {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 4px;
  }

  .sjd-org { font-size: 12px; }

  .sjd-vacancy-pill {
    min-width: 58px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .sjd-vacancy-pill strong { font-size: 18px; }
  .sjd-vacancy-pill small  { font-size: 9px; }

  /* ── Deadline strip ─────────────────────────────────────── */
  .sjd-deadline-strip {
    padding: 9px 14px;
    font-size: 12px;
  }

  /* ── Info chips — 2 column grid ─────────────────────────── */
  .sjd-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sjd-info-chip {
    padding: 12px 12px;
    gap: 8px;
  }

  .sjd-chip-icon { font-size: 18px; }
  .sjd-chip-text small { font-size: 10px; }
  .sjd-chip-text span  { font-size: 13px; }

  /* ── CTA buttons ────────────────────────────────────────── */
  .sjd-cta-row {
    padding: 14px;
    gap: 8px;
  }

  .sjd-btn-apply {
    flex: 1;
    justify-content: center;
    padding: 13px 16px;
    font-size: 13px;
    border-radius: 12px;
  }

  .sjd-btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 12px 12px;
    font-size: 13px;
    border-radius: 12px;
  }

  /* ── Share row ──────────────────────────────────────────── */
  .sjd-share-row {
    padding: 10px 14px 14px;
    gap: 6px;
  }

  .sjd-share-pill { font-size: 11px; padding: 5px 10px; }

  /* ── Content card ───────────────────────────────────────── */
  .sjd-content-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }

  .sjd-content-inner {
    padding: 18px 14px 24px;
    font-size: 15px;
    line-height: 1.8;
  }

  .sjd-content-inner h2 {
    font-size: 16px;
    margin: 22px 0 10px;
  }

  .sjd-content-inner h3 { font-size: 14px; }

  /* Tables — horizontal scroll on mobile */
  .sjd-content-inner table {
    font-size: 13px;
  }

  .sjd-content-inner table th { padding: 9px 12px; font-size: 12px; }
  .sjd-content-inner table td { padding: 9px 12px; }

  /* ── Related jobs ───────────────────────────────────────── */
  .sjd-related-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }

  .sjd-related-head { padding: 13px 14px; font-size: 14px; }

  .sjd-related-card .sz-job-list { padding: 10px; }

  /* ── Ad wrap ────────────────────────────────────────────── */
  .sjd-ad-wrap { padding: 0 14px; }

  /* ── Sticky bottom apply bar ────────────────────────────── */
  .sjd-sticky-apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #e8eaed;
    padding: 10px 14px;
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    gap: 12px;
    animation: sjd-slide-up .3s ease;
  }

  @keyframes sjd-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  .sjd-sticky-left {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .sjd-sticky-left strong {
    font-size: 13px;
    font-weight: 700;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sjd-sticky-left small {
    font-size: 11px;
    color: #c5221f;
    font-weight: 600;
  }

  .sjd-sticky-btn {
    flex-shrink: 0;
    padding: 11px 20px;
    background: linear-gradient(135deg, #1557b0, #1a73e8);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(26,115,232,.35);
  }

  /* hide .sjd-cta-row apply btn on mobile (sticky bar replaces it) */
  .sjd-btn-apply.sjd-btn-pulse { animation: none; }

  /* Desktop sidebar hidden */
  .sz-sidebar { display: none !important; }
  .sz-grid-main { display: block !important; }
}


/* ============================================================
   NEWS PAGE — extra overrides reusing sjd-* base styles
   ============================================================ */

/* News banner — same as job page */
.sjd-news-banner {
  background: linear-gradient(135deg, #0f2d6b 0%, #1a73e8 60%, #0ea5e9 100%);
}

/* News avatar — slightly different look */
.sjd-news-avatar {
  background: rgba(255,255,255,.22) !important;
  font-size: 16px !important;
}

/* Meta row inside hero */
.sjd-news-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
  font-size: 12px;
  color: rgba(255,255,255,.82);
  margin-top: 6px;
}
.sjd-meta-dot { margin: 0 6px; opacity: .5; }

/* Featured image inside hero card */
.sjd-news-thumb { overflow: hidden; max-height: 340px; display:none; }
.sjd-news-thumb img { width: 100%; max-height: 340px; object-fit: cover; display: block; }

/* News content uses same sjd-content-inner — just inside hero card */
.sjd-news-content {
  border-top: 1px solid #f1f3f4;
}

/* ============================================================
   ADMIT CARD — extra overrides reusing sjd-* base styles
   ============================================================ */

/* AC banner — same as job page */
.sjd-ac-banner {
  background: linear-gradient(135deg, #0f2d6b 0%, #1a73e8 60%, #0ea5e9 100%);
}

/* Green apply button variant */
.sjd-btn-green {
  background: linear-gradient(135deg, #1e7e34, #28a745) !important;
  box-shadow: 0 4px 14px rgba(40,167,69,.35) !important;
  animation: sjd-green-pulse 2.5s ease infinite !important;
}

@keyframes sjd-green-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(40,167,69,.35); }
  50%       { box-shadow: 0 4px 22px rgba(40,167,69,.6); }
}

/* Green sticky button */
.sjd-sticky-btn-green {
  background: linear-gradient(135deg, #1e7e34, #28a745) !important;
  box-shadow: 0 3px 10px rgba(40,167,69,.35) !important;
}

/* Sidebar ac link */
.sz-ac-sidebar-link {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f3f4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #202124;
  transition: background .12s;
  gap: 3px;
}
.sz-ac-sidebar-link:last-child { border-bottom: none; }
.sz-ac-sidebar-link:hover { background: #f8f9fa; text-decoration: none; }
.sz-ac-sidebar-deadline { font-size: 11px; color: #c5221f; font-weight: 600; }

/* ── Mobile overrides for news page ──────────────────────── */
@media (max-width: 767px) {
  .sjd-news-thumb { max-height: 210px; }
  .sjd-news-thumb img { max-height: 210px; }
  .sjd-news-meta-row { font-size: 11px; }
  .sjd-news-content { padding: 16px 14px 20px !important; }
}


/* ── News related list — no job fields, no expired ───────── */
.sjd-news-related-list { display: flex; flex-direction: column; }

.sjd-news-rel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f9f9f9;
  text-decoration: none;
  transition: background .12s;
}
.sjd-news-rel-item:last-child { border-bottom: none; }
.sjd-news-rel-item:hover { background: #f8f9fa; text-decoration: none; }

.sjd-news-rel-icon {
  width: 45px; height: 45px;
  border-radius: 10px;
  background: #e8f0fe;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sjd-news-rel-text {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 3px;
}

.sjd-news-rel-title {
  font-size: 16px;
  font-weight: 600;
  color: #202124;
  line-height: 1.4;
  word-break: break-word;
}

.sjd-news-rel-meta {
  font-size: 11px;
  color: #9aa0a6;
}

@media (max-width: 767px) {
  .sjd-news-rel-item { padding: 11px 14px; gap: 10px; }
  .sjd-news-rel-icon { width: 32px; height: 32px; font-size: 16px; border-radius: 8px; }
  .sjd-news-rel-title { font-size: 13px; }
}

.wp-block-table { padding: 0 0 25px; }
.wp-block-table > div{border: 0.5px solid #c8e3f8}
  .wp-block-table .has-fixed-layout { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: none; margin:0; }
  .wp-block-table .has-fixed-layout thead{border:none;}
  .wp-block-table .has-fixed-layout thead tr { background: linear-gradient(90deg, #103477, #1297e9)!important; }
  .wp-block-table .has-fixed-layout thead th { padding: 14px 20px; font-size: 15px; font-weight: 500; color: #fff; text-align: left; letter-spacing: 0.2px; border:none; }
  .wp-block-table .has-fixed-layout tbody tr { border-bottom: 0.5px solid #e3f0fd; transition: background 0.15s; }
  .wp-block-table .has-fixed-layout tbody tr:last-child { border-bottom: none; }
  .wp-block-table .has-fixed-layout tbody tr:hover { background: #eaf4fd; }
  .wp-block-table .has-fixed-layout tbody tr:nth-child(even) { background: #f4f9ff; }
  .wp-block-table .has-fixed-layout tbody tr:nth-child(even):hover { background: #dceefa; }
  .wp-block-table .has-fixed-layout td { padding: 13px 20px; font-size: 14px; border:none; border-right: 0.5px solid #c8e3f8;}
  .wp-block-table .has-fixed-layout td:first-child { color: #103477; font-weight: 500; }
  .wp-block-table .has-fixed-layout td:last-child { color: var(--color-text-primary); border-right:none;}
  .wp-block-table .badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500;  }
  .wp-block-table .badge-green { background: #e6f4ea; color: #1a6b2e; }
  .wp-block-table .badge-red { background: #fde8e8; color: #a32d2d; }
  .wp-block-table .badge-blue { background: #e3f0fd; color: #103477; }
  .wp-block-table .badge-orange { background: #fff3e0; color: #b45309; }
  .wp-block-table .icon-col { display: flex; align-items: center; gap: 8px; }
  .wp-block-table .icon-col i { font-size: 17px; color: #1297e9; flex-shrink: 0; }
  
@media(min-width:901px) and (max-width:1024px){
.sz-header-search{
	display:none!important;
}
}

/* ═══════════════════════════════════════════════
   EXAMS PAGE (sxp) — moved from page-exams.php
   ═══════════════════════════════════════════════ */

.sxp-hero {
  background: linear-gradient(135deg, var(--sz-secondary) 0%, var(--sz-primary) 65%, #0ea5e9 100%);
  color: #fff;
  padding: 36px 0 44px;
  position: relative;
  overflow: hidden;
}
.sxp-hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sxp-hero-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sxp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.sxp-exam-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.sxp-etag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.sxp-hero-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sxp-hero-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -0.01em;
}
.sxp-hero-highlight { color: var(--sz-accent); display: inline-block; }
.sxp-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  line-height: 1.6;
}
.sxp-stats-row { display: flex; gap: 10px; flex-wrap: wrap; }
.sxp-stat-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 14px;
}
.sxp-stat-box svg { opacity: 0.7; flex-shrink: 0; }
.sxp-stat-box div { display: flex; flex-direction: column; }
.sxp-stat-box strong { font-size: 16px; font-weight: 700; color: var(--sz-accent); line-height: 1; }
.sxp-stat-box span  { font-size: 10px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.sxp-stat-free { border-color: rgba(249,171,0,0.3); background: rgba(249,171,0,0.1); }
.sxp-stat-free svg { opacity: 1; color: var(--sz-accent); }

.sxp-search-card { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.sxp-search-card-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--sz-gray-700); margin-bottom: 10px;
}
.sxp-search-card-title svg { color: var(--sz-primary); }
.sxp-search-input-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--sz-gray-50); border: 1.5px solid var(--sz-gray-200);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; transition: border-color 0.2s;
}
.sxp-search-input-wrap:focus-within { border-color: var(--sz-primary); background: #fff; }
.sxp-search-input-wrap svg { color: var(--sz-gray-500); flex-shrink: 0; }
.sxp-search-input-wrap input {
  background: transparent; border: none; outline: none;
  font-size: 16px; /* 16px fixes iOS zoom on focus */
  color: var(--sz-gray-900); width: 100%; font-family: inherit;
}
.sxp-search-input-wrap input::placeholder { color: var(--sz-gray-500); }
.sxp-search-popular { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sxp-sp-label { font-size: 11px; color: var(--sz-gray-500); font-weight: 500; }
.sxp-sp-btn {
  background: var(--sz-primary-light); color: var(--sz-primary);
  border: none; border-radius: 6px; padding: 4px 10px;
  font-size: 12px; font-weight: 500; cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.sxp-sp-btn:hover { background: var(--sz-primary); color: #fff; }

.sxp-body { padding-top: 32px; padding-bottom: 48px; }
.sxp-ad-wrap { margin: 24px 0; }

.sxp-section-head {
  margin-bottom: 28px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.sxp-section-badge {
  display: inline-block;
  background: var(--sz-primary-light); color: var(--sz-primary);
  font-size: 12px; font-weight: 600;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 10px; letter-spacing: 0.03em;
}
.sxp-section-title {
  font-size: 24px; font-weight: 800;
  color: var(--sz-gray-900); margin-bottom: 10px; line-height: 1.3; letter-spacing: -0.01em;
}
.sxp-section-sub { font-size: 15px; color: var(--sz-gray-600); margin: 0; line-height: 1.7; }
.sxp-section-sub strong { color: var(--sz-primary); font-weight: 600; }

.sxp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sxp-grid .sxp-card {
  flex: 0 0 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
  box-sizing: border-box;
}

.sxp-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: #fff;
  border: 1.5px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  text-decoration: none; color: var(--sz-gray-900);
  transition: all 0.18s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative; overflow: hidden;
}
.sxp-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--sz-primary); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.2s ease; border-radius: 3px 0 0 3px;
}
.sxp-card:hover {
  border-color: var(--sz-primary);
  box-shadow: 0 4px 16px rgba(26,115,232,0.12);
  transform: translateY(-2px); text-decoration: none; color: var(--sz-gray-900);
}
.sxp-card:hover::before { transform: scaleY(1); }
.sxp-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.sxp-card-body { flex: 1; min-width: 0; }
.sxp-card-name {
  font-size: 14px; font-weight: 600; color: var(--sz-gray-900);
  line-height: 1.3; margin-bottom: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sxp-card-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.sxp-meta-pill {
  font-size: 11px; font-weight: 500;
  background: var(--sz-gray-100); color: var(--sz-gray-600);
  padding: 2px 8px; border-radius: 20px;
}
.sxp-meta-q { background: var(--sz-primary-light); color: var(--sz-primary); }
.sxp-card-arrow { color: var(--sz-gray-400); flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.sxp-card:hover .sxp-card-arrow { transform: translateX(3px); color: var(--sz-primary); }

.sxp-empty, .sxp-no-results {
  width: 100%; text-align: center; padding: 60px 20px;
  color: var(--sz-gray-500); display: none;
}
.sxp-no-results { display: none; }
.sxp-empty-icon { font-size: 40px; margin-bottom: 12px; }
.sxp-empty-title { font-size: 17px; font-weight: 600; color: var(--sz-gray-700); margin-bottom: 6px; }
.sxp-empty-desc  { font-size: 14px; }

.sxp-page-content {
  background: #fff; border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-xl); padding: 36px 40px;
  margin-top: 40px; line-height: 1.8;
}
.sxp-page-content h2 {
  font-size: 22px; font-weight: 700; color: var(--sz-secondary);
  margin: 32px 0 12px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sz-primary-light);
}
.sxp-page-content h2:first-child { margin-top: 0; }
.sxp-page-content h3 { font-size: 17px; font-weight: 600; color: var(--sz-gray-900); margin: 24px 0 8px; }
.sxp-page-content p  { font-size: 15px; color: var(--sz-gray-700); margin-bottom: 14px; line-height: 1.8; }
.sxp-page-content strong { color: var(--sz-gray-900); font-weight: 600; }
.sxp-page-content ul,
.sxp-page-content ol  { list-style: revert; padding-left: 1.5em; margin: 10px 0 16px; }
.sxp-page-content li  { font-size: 15px; color: var(--sz-gray-700); margin-bottom: 6px; line-height: 1.7; }
.sxp-page-content hr  { border: none; border-top: 1px solid var(--sz-gray-200); margin: 28px 0; }
.sxp-page-content a   { color: var(--sz-primary); text-decoration: underline; }

@media (max-width: 768px) {
  .sxp-hero { padding: 24px 0 28px; border-radius: 0 0 24px 24px; }
  .sxp-hero-top { margin-bottom: 18px; }
  .sxp-exam-tags { display: none; }
  .sxp-hero-main { grid-template-columns: 1fr; gap: 20px; }
  .sxp-hero-title { font-size: 22px; }
  .sxp-hero-desc  { font-size: 14px; margin-bottom: 16px; }
  .sxp-stats-row  { gap: 8px; }
  .sxp-stat-box   { padding: 7px 12px; }
  .sxp-stat-box strong { font-size: 15px; }
  .sxp-search-card { padding: 16px; border-radius: 12px; }
  .sxp-grid { gap: 10px; }
  .sxp-grid .sxp-card { flex: 0 0 calc(50% - 5px); max-width: calc(50% - 5px); }

  /* Mobile card — same as home page sz-exam-card style */
  .sxp-card {
    background: var(--mob-card, #fff);
    border: 1.5px solid var(--mob-divider, #e8eaed);
    border-radius: var(--mob-radius, 14px);
    padding: 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transform: none !important;
  }
  .sxp-card::before { display: none; }
  .sxp-card:active { transform: scale(.97) !important; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
  .sxp-card-icon  { width: 40px; height: 40px; border-radius: 10px; font-size: 20px; }
  .sxp-card-name  { font-size: 13px; font-weight: 600; line-height: 1.35; white-space: normal; }
  .sxp-card-meta  { display: flex; }
  .sxp-card-arrow { display: none; }

  .sxp-section-title { font-size: 19px; }
  .sxp-section-sub   { font-size: 13px; }
  .sxp-body { padding-top: 20px; padding-bottom: 32px; }

  /* Mobile content — clean, NO per-para boxes */
  .sxp-page-content {
    padding: 24px 16px;
    border-radius: 12px;
    margin-top: 20px;
    background: #fff;
    border: 1px solid var(--sz-gray-200);
    box-shadow: none;
  }
  .sxp-page-content h2 { font-size: 16px; margin: 24px 0 8px; padding-bottom: 6px; }
  .sxp-page-content h3 { font-size: 14px; }
  .sxp-page-content p  { font-size: 14px; }
  .sxp-page-content li { font-size: 14px; }
}
@media (max-width: 480px) {
  .sxp-hero-title { font-size: 19px; }
  .sxp-stats-row  { gap: 6px; }
  .sxp-stat-box   { padding: 6px 10px; }
  .sxp-stat-box strong { font-size: 14px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sxp-grid .sxp-card { flex: 0 0 calc(50% - 6px); max-width: calc(50% - 6px); }
}

/* ═══════════════════════════════════════════════

/* ═══════════════════════════════════════════════
   JOIN TELEGRAM & WHATSAPP — All Styles
   ═══════════════════════════════════════════════ */

/* ── Base join button ── */
.sz-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}
.sz-join-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.sz-join-btn:active { transform: translateY(0); }

/* Telegram */
.sz-join-tg { background: #2AABEE; color: #fff !important; box-shadow: 0 2px 8px rgba(42,171,238,0.3); }
/* WhatsApp */
.sz-join-wa  { background: #25D366; color: #fff !important; box-shadow: 0 2px 8px rgba(37,211,102,0.3); }

/* ── Pulse animation ── */
@keyframes sz-pulse-tg {
  0%,100% { box-shadow: 0 2px 8px rgba(42,171,238,0.3); }
  50%     { box-shadow: 0 0 0 6px rgba(42,171,238,0), 0 4px 18px rgba(42,171,238,0.55); }
}
@keyframes sz-pulse-wa {
  0%,100% { box-shadow: 0 2px 8px rgba(37,211,102,0.3); }
  50%     { box-shadow: 0 0 0 6px rgba(37,211,102,0), 0 4px 18px rgba(37,211,102,0.55); }
}
.sz-join-pulse.sz-join-tg { animation: sz-pulse-tg 2.2s ease-in-out infinite; }
.sz-join-pulse.sz-join-wa  { animation: sz-pulse-wa 2.2s ease-in-out infinite 0.5s; }
.sz-join-pulse:hover { animation: none; }

/* ── Mobile header Telegram button ── */
.sz-mob-tg-btn { padding: 6px 12px; font-size: 12px; border-radius: 16px; }

/* Desktop: hide mobile telegram btn */
@media (min-width: 768px) {
  .sz-mob-tg-btn { display: none !important; }
}

/* Mobile (≤767px): show telegram btn, HIDE hamburger, hide desktop-only banners */
@media (max-width: 767px) {
  .sz-mob-tg-btn   { display: inline-flex !important; }
  .sz-menu-toggle  { display: none !important; }   /* hamburger remove */
  .sz-desktop-only { display: none !important; }
}

/* ── Post Join Banner (desktop only) ── */
.sz-desktop-only {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}
.sz-join-banner-text  { display: flex; flex-direction: column; gap: 3px; }
.sz-join-banner-title { font-size: 15px; font-weight: 700; color: #1a1a2e; }
.sz-join-banner-sub   { font-size: 13px; color: #5f6368; }
.sz-join-banner-btns  { display: flex; gap: 10px; flex-shrink: 0; }

/* Top banner */
.sz-join-banner--top {
  background: linear-gradient(135deg, #eef4ff 0%, #e8fdf2 100%);
  border: 1px solid #c5d8f5;
  margin:20px;
}
.single-studyzia_job .sz-join-banner--top,
.single-studyzia_admit_card .sz-join-banner--top {
	margin:0;
}
/* Bottom banner — share row ke baad */
.sz-join-banner--bottom {
  background: linear-gradient(135deg, #e8f4fd 0%, #e8fdf2 100%);
  border: 1px solid #b3dff5;
  margin-top: 20px;
}
.single-post .sz-join-banner--bottom {
  margin: 20px;
}

/* ============================================================
   TABLET RESPONSIVE FIX v3 — 768px to 1199px
   Mobile (max-width:767px) mein koi bhi change nahi kiya gaya
   ============================================================ */

/* ── 1. Sidebar grid cell — min-width:0 so it respects column width ── */
@media (min-width: 769px) {
  .sz-grid-main {
    min-width: 0;
  }
  .sz-sidebar {
    min-width: 0;
  }
  .sz-main-col {
    min-width: 0;
    overflow: hidden;
  }
}

/* ── 2. Grid: sidebar 240px on 769-1199px ── */
@media (min-width: 769px) and (max-width: 1199px) {
  .sz-grid-main {
    grid-template-columns: 1fr 240px;
    gap: 20px;
  }
  .sz-container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}

/* ── 3. Grid stack below 900px ── */
@media (min-width: 769px) and (max-width: 900px) {
  .sz-grid-main {
    grid-template-columns: 1fr;
  }
  .sz-sidebar {
    order: 2;
    width: 100%;
  }
}

/* ── 4. Sidebar widget text: ellipsis truncation ── */
/* Category links mein long names gracefully truncate honge */
.sz-cat-link-text {
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Admit card / news titles in sidebar wrap honge */
.sz-front-news-title {
  font-size: 14px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

/* ── 5. Sidebar widget itself — no overflow clip, border-radius handles it ── */
@media (min-width: 769px) {
  .sz-widget {
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* But keep inner body clipped so content stays within rounded corners */
  .sz-widget-body {
    overflow: hidden;
  }
  .sz-widget-header {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ── 6. Header adjustments: 768-1024px ── */
@media (min-width: 768px) and (max-width: 900px) {
  .sz-header-inner {
    gap: 10px;
  }
  .sz-header-search {
    max-width: 100%;
  }
  .sz-btn-register {
    display: none;
  }
}

/* ── 7. Exam grid: 2 columns on tablet ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .sz-exam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 8. Table scroll on tablet ── */
@media (min-width: 768px) and (max-width: 1199px) {
  .sz-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ═══════════════════════════════════════════════════════════
   EXAM LANDING PAGE  (page-exam-landing.php)
   Fully dynamic — every block hides itself when empty
   ═══════════════════════════════════════════════════════════ */

.sz-el { display: flex; flex-direction: column; gap: 28px; }

/* ── Hero ── */
.sz-el-hero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 55%, #3949ab 100%);
  border-radius: 16px;
  padding: 36px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sz-el-hero::after {
  content: "💻";
  position: absolute;
  right: 32px;
  top: 28px;
  font-size: 72px;
  opacity: 0.12;
  pointer-events: none;
}
.sz-el-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f9ab00;
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}
.sz-el-hero-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.25;
  color: #fff;
}
.sz-el-hero-intro {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 880px;
  margin: 0 0 24px;
}
/* Hero Stats bar */
.sz-el-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.sz-el-hero-stat {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 12px 20px;
  min-width: 110px;
  text-align: center;
  flex: 1;
}
.sz-el-hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.sz-el-hero-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── Quick Access ── */
.sz-el-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.sz-el-quick-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sz-gray-800);
  text-decoration: none;
  transition: all .15s;
}
.sz-el-quick-item:hover {
  border-color: var(--sz-primary);
  color: var(--sz-primary);
  background: var(--sz-primary-light);
  transform: translateY(-1px);
}
.sz-el-quick-icon { font-size: 15px; }

/* ── Card / Section ── */
.sz-el-card {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: var(--sz-shadow-sm);
}
.sz-el-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.sz-el-section-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--sz-gray-800);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sz-el-section-desc {
  font-size: 14px;
  color: var(--sz-gray-500);
  margin: 0 0 16px;
  line-height: 1.6;
}
.sz-el-viewall {
  font-size: 13px;
  font-weight: 600;
  color: var(--sz-primary);
  white-space: nowrap;
}
.sz-el-viewall:hover { text-decoration: underline; }

/* ── About content (reuse prose styling) ── */
.sz-el-about { font-size: 15px; line-height: 1.8; color: var(--sz-gray-800); }
.sz-el-about h2,
.sz-el-about h3 { margin: 22px 0 10px; font-weight: 700; color: var(--sz-gray-800); }
.sz-el-about h2 { font-size: 20px; }
.sz-el-about h3 { font-size: 17px; }
.sz-el-about p { margin: 0 0 14px; }
.sz-el-about p:last-child { margin-bottom: 0; }

/* ── Latest Updates ── */
.sz-el-update-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.sz-el-update-item { border-bottom: 1px solid var(--sz-gray-100); }
.sz-el-update-item:last-child { border-bottom: none; }
.sz-el-update-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px;
  color: var(--sz-gray-800);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: color .15s;
}
.sz-el-update-link:hover { color: var(--sz-primary); }
.sz-el-update-link::before {
  content: '▸';
  color: var(--sz-primary);
  flex-shrink: 0;
  margin-right: 4px;
}
.sz-el-update-text { flex: 1; }
.sz-el-update-badge {
  flex-shrink: 0;
  background: #fce8e6;
  color: #c5221f;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Mock Tests embed ── */
.sz-el-mocktest-embed { margin-top: 4px; }
.sz-el-mocktest-embed .sz-cat-section { margin: 0; }
.sz-el-mocktest-embed .sz-sc-page-head { display: none; } /* hide duplicate title inside shortcode */

/* ── CTA buttons ── */
.sz-el-cta-row { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.sz-el-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
  border: 2px solid transparent;
}
.sz-el-btn-primary {
  background: var(--sz-primary);
  color: #fff;
}
.sz-el-btn-primary:hover { background: var(--sz-primary-dark); transform: translateY(-1px); }
.sz-el-btn-outline {
  background: #fff;
  color: var(--sz-primary);
  border-color: var(--sz-primary);
}
.sz-el-btn-outline:hover { background: var(--sz-primary-light); }

/* ── Syllabus ── */
.sz-el-syllabus-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.sz-el-syllabus-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--sz-gray-800);
  line-height: 1.5;
}
.sz-el-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #e6f4ea;
  color: #1e7e34;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ── Link list (Previous papers) ── */
.sz-el-link-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sz-el-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--sz-gray-50);
  color: var(--sz-gray-800);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.sz-el-link-item:hover { background: var(--sz-primary-light); color: var(--sz-primary); }
.sz-el-link-icon { font-size: 15px; }

/* ── Pill grid (Important links / Related exams) ── */
.sz-el-pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.sz-el-pill {
  display: inline-flex;
  align-items: center;
  background: var(--sz-gray-50);
  border: 1px solid var(--sz-gray-200);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sz-gray-800);
  transition: all .15s;
}
.sz-el-pill:hover { border-color: var(--sz-primary); color: var(--sz-primary); background: var(--sz-primary-light); }
.sz-el-pill-blue {
  background: var(--sz-primary-light);
  border-color: var(--sz-primary-light);
  color: var(--sz-primary);
}
.sz-el-pill-blue:hover { border-color: var(--sz-primary); }

/* ── FAQ accordion ── */
.sz-el-faq-list { display: flex; flex-direction: column; gap: 8px; }
.sz-el-faq-item {
  border: 1px solid var(--sz-gray-200);
  border-radius: 10px;
  overflow: hidden;
}
.sz-el-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sz-gray-800);
  cursor: pointer;
  list-style: none;
  background: var(--sz-gray-50);
  transition: background .15s;
}
.sz-el-faq-q::-webkit-details-marker { display: none; }
.sz-el-faq-q:hover { background: var(--sz-primary-light); }
.sz-el-faq-arrow { transition: transform .2s; color: var(--sz-primary); flex-shrink: 0; }
.sz-el-faq-item[open] .sz-el-faq-arrow { transform: rotate(180deg); }
.sz-el-faq-item[open] .sz-el-faq-q { background: var(--sz-primary-light); }
.sz-el-faq-a {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--sz-gray-800);
  border-top: 1px solid var(--sz-gray-200);
}
.sz-el-faq-a p { margin: 0 0 10px; }
.sz-el-faq-a p:last-child { margin-bottom: 0; }

/* ── Tag cloud (Popular searches) ── */
.sz-el-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.sz-el-tag {
  display: inline-block;
  background: var(--sz-gray-50);
  border: 1px solid var(--sz-gray-200);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sz-gray-500);
  transition: all .15s;
}
.sz-el-tag[href]:hover { color: var(--sz-primary); border-color: var(--sz-primary); background: var(--sz-primary-light); }
.sz-el-tag-static { cursor: default; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sz-el-hero { padding: 28px 24px; }
  .sz-el-hero-title { font-size: 26px; }
  .sz-el-hero-stat { min-width: 90px; padding: 10px 14px; }
  .sz-el-hero-stat strong { font-size: 20px; }
  .sz-el-syllabus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .sz-el { gap: 20px; }
  .sz-el-hero { padding: 22px 18px; border-radius: 12px; }
  .sz-el-hero::after { font-size: 52px; right: 14px; top: 16px; }
  .sz-el-hero-title { font-size: 22px; }
  .sz-el-hero-intro { font-size: 13.5px; margin-bottom: 18px; }
  .sz-el-hero-stats { gap: 10px; }
  .sz-el-hero-stat { min-width: calc(50% - 5px); flex: 0 0 calc(50% - 5px); padding: 10px 12px; }
  .sz-el-hero-stat strong { font-size: 18px; }
  .sz-el-hero-stat span { font-size: 11px; }
  .sz-el-card { padding: 16px; }
  .sz-el-quick-item { font-size: 12px; padding: 8px 14px; }
  .sz-el-section-title { font-size: 17px; }
  .sz-el-pill, .sz-el-link-item { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   BROWSE BY STATE / QUALIFICATION  (Homepage)
   ═══════════════════════════════════════════════════════════ */

.sz-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--sz-space-3);
}

.sz-browse-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  padding: 12px 16px;
  font-size: var(--sz-text-sm);
  font-weight: 600;
  color: var(--sz-gray-800);
  transition: var(--sz-transition);
}

.sz-browse-pill:hover {
  border-color: var(--sz-primary);
  background: var(--sz-primary-light);
  color: var(--sz-primary);
  transform: translateY(-2px);
  box-shadow: var(--sz-shadow-sm);
  text-decoration: none;
}

.sz-browse-pill[aria-disabled="true"] {
  cursor: default;
  opacity: .85;
}
.sz-browse-pill[aria-disabled="true"]:hover {
  border-color: var(--sz-gray-200);
  background: #fff;
  color: var(--sz-gray-800);
  transform: none;
  box-shadow: none;
}

.sz-browse-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sz-primary-light);
  border-radius: var(--sz-radius-sm);
}

.sz-browse-pill-green:hover {
  border-color: #1e7e34;
  background: #e6f4ea;
  color: #1e7e34;
}
.sz-browse-pill-green .sz-browse-icon { background: #e6f4ea; }

.sz-browse-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .sz-browse-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: var(--sz-space-2); }
  .sz-browse-pill { padding: 10px 12px; font-size: 13px; }
  .sz-browse-icon { width: 28px; height: 28px; font-size: 15px; }
}
.sz-footer-ad-bar:empty{
	display:none;
}
/* ═══════════════════════════════════════════════════════════
   OLD EXAM PAPERS  (page-old-exam-papers.php)
   ═══════════════════════════════════════════════════════════ */

.sz-oep-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sz-oep-table th {
  background: var(--sz-gray-50);
  color: var(--sz-gray-900);
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid var(--sz-gray-200);
  text-align: left;
}

.sz-oep-table td {
  padding: 12px 16px;
  border: 1px solid var(--sz-gray-200);
  vertical-align: top;
}

.sz-oep-table tr:nth-child(even) td { background: var(--sz-gray-50); }

.sz-oep-table td:first-child {
  width: 52px;
  text-align: center;
  color: var(--sz-gray-500);
  font-weight: 600;
}

.sz-oep-table td strong {
  display: inline;
  color: var(--sz-gray-900);
  font-size: 14.5px;
}

.sz-oep-date-badge {
  display: inline-block;
  background: var(--sz-primary-light);
  color: var(--sz-primary-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 8px;
  white-space: nowrap;
}

.sz-oep-desc {
  display: block;
  font-size: 12.5px;
  color: var(--sz-gray-500);
  margin-top: 3px;
}

.sz-oep-view-link {
  color: var(--sz-primary);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.sz-oep-view-link:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .sz-oep-table { font-size: 13px; }
  .sz-oep-table th,
  .sz-oep-table td { padding: 9px 10px; }
  .sz-oep-table th:nth-child(1),
  .sz-oep-table td:nth-child(1) { display: none; } /* hide S.No on mobile to save space */
}
.sz-footer-ad-bar:empty {
    display: none;
}
.sz-bnav-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sz-primary, #1a73e8);
  color: #fff !important;
  font-size: 13px; font-weight: 700;
  display: flex !important;
  align-items: center; justify-content: center;
  line-height: 1;
}
.sz-bnav-item.active .sz-bnav-avatar {
  box-shadow: 0 0 0 2px #1a73e8, 0 0 0 4px #e8f0fe;
}
.sz-footer-social-instagram {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important;
  font-size: 10px; letter-spacing: 0;
}

/* ============================================================
   LATEST JOBS PAGE (page-latest-jobs.php)
   Card-grid listing with AJAX filter bar
   ============================================================ */

/* ── Filter bar ─────────────────────────────────────────── */
.sz-lj-filterbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sz-space-3);
  margin-bottom: var(--sz-space-5);
}

.sz-lj-filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--sz-text-sm);
  font-weight: 600;
  color: var(--sz-gray-700);
  flex-shrink: 0;
}

.sz-lj-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-md);
  padding: 0 36px 0 36px;
  height: 42px;
  min-width: 168px;
  flex: 1 1 168px;
  max-width: 240px;
  transition: var(--sz-transition);
}

.sz-lj-select-wrap:hover {
  border-color: var(--sz-primary);
  box-shadow: var(--sz-shadow-sm);
}

.sz-lj-select-icon {
  position: absolute;
  left: 12px;
  color: var(--sz-primary);
  pointer-events: none;
}

.sz-lj-chevron {
  position: absolute;
  right: 12px;
  color: var(--sz-gray-500);
  pointer-events: none;
}

.sz-lj-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: var(--sz-text-sm);
  font-weight: 600;
  color: var(--sz-gray-900);
  cursor: pointer;
}
.sz-lj-select option{
	width:100%;
	padding:5px 10px;
}

/* ── Heading row ────────────────────────────────────────── */
.sz-lj-heading-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sz-space-5);
  color: var(--sz-primary);
}

.sz-lj-heading {
  font-size: var(--sz-text-2xl);
  font-weight: 700;
  color: var(--sz-gray-900);
  margin: 0;
}

.sz-lj-count {
  font-size: var(--sz-text-sm);
  font-weight: 700;
  color: var(--sz-primary);
  background: var(--sz-primary-light);
  padding: 3px 11px;
  border-radius: var(--sz-radius-full);
  margin-left: 2px;
}

/* ── Card grid ──────────────────────────────────────────── */
.sz-lj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sz-space-4);
  transition: opacity .15s ease;
}

.sz-lj-grid.sz-lj-loading { opacity: .55; }

.sz-lj-card {
  background: #fff;
  border: 1px solid var(--sz-gray-200);
  border-radius: var(--sz-radius-lg);
  padding: var(--sz-space-4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--sz-transition);
}

.sz-lj-card:hover {
  box-shadow: var(--sz-shadow-md);
  border-color: var(--sz-gray-300);
  transform: translateY(-2px);
}

.sz-lj-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sz-lj-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px 3px 8px;
  border-radius: var(--sz-radius-full);
}

.sz-lj-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.sz-lj-status-new { background: var(--sz-primary-light); color: var(--sz-primary); }
.sz-lj-status-live { background: var(--sz-success-bg); color: var(--sz-success); }

.sz-lj-time {
  font-size: 11px;
  color: var(--sz-gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sz-lj-title {
  font-size: var(--sz-text-base);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.sz-lj-title a {
  color: var(--sz-gray-900);
  text-decoration: none;
}

.sz-lj-title a:hover { color: var(--sz-primary); }

.sz-lj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sz-lj-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--sz-gray-700);
  background: var(--sz-gray-100);
  padding: 4px 9px;
  border-radius: var(--sz-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.sz-lj-tag-blue {
  color: var(--sz-primary);
  background: var(--sz-primary-light);
}

.sz-lj-result-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sz-gray-600);
  padding-top: 10px;
  border-top: 1px dashed var(--sz-gray-200);
}

.sz-lj-result-row svg { flex-shrink: 0; color: var(--sz-gray-500); }
.sz-lj-result-row strong { color: var(--sz-gray-800); font-weight: 600; }

.sz-lj-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--sz-primary-light);
  color: var(--sz-primary);
  font-size: var(--sz-text-sm);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--sz-radius-md);
  text-decoration: none;
  transition: var(--sz-transition);
}

.sz-lj-btn:hover {
  background: var(--sz-primary);
  color: #fff;
}

.sz-lj-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sz-space-8) var(--sz-space-4);
  color: var(--sz-gray-500);
  font-size: var(--sz-text-sm);
}

/* ── Load more ──────────────────────────────────────────── */
.sz-lj-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--sz-space-6);
}

.sz-lj-loadmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--sz-primary);
  color: var(--sz-primary);
  font-size: var(--sz-text-sm);
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--sz-radius-full);
  cursor: pointer;
  transition: var(--sz-transition);
}

.sz-lj-loadmore-btn:hover {
  background: var(--sz-primary);
  color: #fff;
}

.sz-lj-loadmore-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sz-lj-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sz-lj-filterbar { gap: var(--sz-space-2); }
  .sz-lj-filter-label { width: 100%; }
  .sz-lj-select-wrap { min-width: 0; flex: 1 1 calc(50% - 8px); max-width: none; }
  .sz-lj-grid { grid-template-columns: 1fr; }
  .sz-lj-heading { font-size: var(--sz-text-xl); }
}

@media (max-width: 480px) {
  .sz-lj-select-wrap { flex: 1 1 100%; }
}
