/*
Theme Name: SarkariJob Theme
Theme URI: https://yoursite.in
Author: YourSite
Description: Professional Sarkari Job Portal Theme — Fast, SEO Optimized, Mobile Responsive
Version: 1.0.0
License: GNU General Public License v2
Text Domain: sarkarijob
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans', Arial, sans-serif;
    background: #f5f6fa;
    color: #222;
    line-height: 1.6;
    font-size: 14px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===========================
   VARIABLES
=========================== */
:root {
    --primary: #1a3a6b;
    --primary-light: #e8f0fb;
    --accent: #e8392a;
    --accent-light: #fee2e2;
    --green: #16a34a;
    --green-light: #dcfce7;
    --blue-light: #eff6ff;
    --yellow-light: #fffbea;
    --purple-light: #f3e8ff;
    --white: #ffffff;
    --gray-bg: #f5f6fa;
    --border: #e5e7eb;
    --text: #222;
    --text-muted: #6b7280;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ===========================
   LAYOUT
=========================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 14px; }
.main-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 14px;
    padding: 14px 0;
}
@media (max-width: 768px) {
    .main-grid { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
}

/* ===========================
   TOP BAR
=========================== */
.topbar {
    background: #122a52;
    color: #aac4e8;
    font-size: 11px;
    padding: 5px 14px;
}
.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.topbar a { color: #fff; margin-left: 12px; font-size: 11px; }
.topbar a:hover { text-decoration: underline; }

/* ===========================
   HEADER
=========================== */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--accent);
    padding: 10px 14px;
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-logo {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    flex-shrink: 0;
}
.site-logo img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; }
.site-branding { flex: 1; }
.site-name { font-size: 20px; font-weight: 700; color: var(--primary); }
.site-tagline { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.header-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-telegram {
    background: #0088cc;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.btn-telegram:hover { background: #006aaa; }
@media (max-width: 480px) {
    .site-name { font-size: 15px; }
    .btn-telegram span { display: none; }
}

/* ===========================
   NAVIGATION
=========================== */
.main-nav { background: var(--primary); }
.main-nav .container { max-width: 1100px; margin: 0 auto; padding: 0 14px; }
.nav-list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list li a {
    display: block;
    color: #aac4e8;
    font-size: 13px;
    padding: 11px 14px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a { color: #fff; background: rgba(255,255,255,0.12); }

/* ===========================
   TICKER
=========================== */
.news-ticker {
    background: var(--yellow-light);
    border-bottom: 1px solid #fbbf24;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.ticker-label {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.7} }
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-scroll marquee { font-size: 12px; color: #92400e; }

/* ===========================
   SEARCH BAR
=========================== */
.search-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 14px;
}
.search-section .container { max-width: 1100px; margin: 0 auto; }
.search-form { display: flex; gap: 8px; max-width: 700px; }
.search-form input {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    outline: none;
    background: #f9fafb;
}
.search-form input:focus { border-color: var(--accent); }
.search-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}
.search-form button:hover { background: #c0281b; }

/* ===========================
   ALERT BANNER
=========================== */
.alert-banner {
    background: var(--accent);
    color: #fff;
    padding: 9px 14px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.alert-banner .container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 8px; width: 100%; }
.alert-banner strong { font-size: 12px; }
.alert-close { margin-left: auto; cursor: pointer; font-size: 18px; opacity: 0.8; background: none; border: none; color: #fff; }

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
}
.stats-strip .container { max-width: 1100px; margin: 0 auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 480px) { .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat-item {
    text-align: center;
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 10px 5px;
}
.stat-number { font-size: 18px; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ===========================
   SECTION CARDS
=========================== */
.section-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 0.5px solid var(--border);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.section-header {
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-header .view-all {
    color: #aac4e8;
    font-size: 11px;
    font-weight: 400;
}
.section-header .view-all:hover { color: #fff; }

/* ===========================
   JOB LIST ROWS
=========================== */
.job-list-item {
    padding: 11px 14px;
    border-bottom: 0.5px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.job-list-item:last-child { border-bottom: none; }
.job-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}
.job-content { flex: 1; min-width: 0; }
.job-title {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.4;
    display: block;
}
.job-title:hover { text-decoration: underline; }
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}
.tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 500;
}
.tag-new { background: var(--green-light); color: #166534; }
.tag-hot { background: var(--accent-light); color: #991b1b; }
.tag-date { background: var(--blue-light); color: #1e40af; }
.tag-last { background: var(--yellow-light); color: #92400e; }
.tag-posts { background: var(--purple-light); color: #6b21a8; }
.tag-result { background: #f0fdf4; color: #166534; }

/* ===========================
   CATEGORY GRID
=========================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
}
@media (max-width: 400px) { .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.category-item {
    background: var(--white);
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
.category-item:hover { background: var(--primary-light); }
.category-item a { display: block; }
.cat-icon { font-size: 22px; display: block; margin-bottom: 5px; }
.cat-name { font-size: 12px; color: var(--primary); font-weight: 600; }
.cat-count { font-size: 10px; color: var(--accent); margin-top: 2px; }

/* ===========================
   BLOG GRID
=========================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
}
@media (max-width: 400px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
    border: 0.5px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.blog-card:hover { border-color: var(--primary); }
.blog-thumb {
    height: 80px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
}
.blog-thumb img { width: 100%; height: 80px; object-fit: cover; }
.blog-card-body { padding: 9px; }
.blog-card-title { font-size: 12px; color: var(--primary); font-weight: 600; line-height: 1.4; }
.blog-card-title:hover { text-decoration: underline; }
.blog-card-meta { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

/* ===========================
   SIDEBAR
=========================== */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    border: 0.5px solid var(--border);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.widget-header {
    background: var(--accent);
    color: #fff;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
}
.widget-body { padding: 10px 14px; }

.widget-row {
    padding: 8px 0;
    border-bottom: 0.5px dashed #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-row:last-child { border-bottom: none; }
.widget-row-name { font-size: 12px; color: var(--primary); font-weight: 500; }
.widget-row-date { font-size: 10px; color: var(--accent); }
.widget-row-count { font-size: 10px; color: var(--text-muted); }

/* Subscribe Box */
.subscribe-box {
    background: var(--blue-light);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 14px;
    text-align: center;
}
.subscribe-box h3 { font-size: 14px; color: #1e40af; font-weight: 600; margin-bottom: 5px; }
.subscribe-box p { font-size: 11px; color: #3730a3; margin-bottom: 10px; line-height: 1.5; }
.subscribe-box input {
    width: 100%;
    padding: 9px 12px;
    font-size: 12px;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #fff;
    outline: none;
}
.subscribe-box button {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
}
.subscribe-box button:hover { background: #122a52; }

/* Telegram CTA */
.telegram-cta {
    background: #0088cc;
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    margin-bottom: 14px;
}
.telegram-cta h3 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.telegram-cta p { color: #b3d9f0; font-size: 11px; margin-bottom: 10px; }
.telegram-cta a {
    display: inline-block;
    background: #fff;
    color: #0088cc;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* WhatsApp CTA */
.whatsapp-cta {
    background: #25d366;
    border-radius: var(--radius);
    padding: 12px;
    text-align: center;
    margin-bottom: 14px;
}
.whatsapp-cta h3 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.whatsapp-cta a {
    display: inline-block;
    background: #fff;
    color: #128c7e;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Popular Exam Pills */
.exam-pills { padding: 10px 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.exam-pill {
    display: inline-block;
    background: var(--gray-bg);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
}
.exam-pill:hover { background: var(--primary-light); border-color: var(--primary); }

/* Quick Links */
.quick-links a {
    display: block;
    padding: 7px 0;
    font-size: 12px;
    color: var(--primary);
    border-bottom: 0.5px dashed #f0f0f0;
}
.quick-links a:last-child { border-bottom: none; }
.quick-links a:hover { color: var(--accent); }
.quick-links a::before { content: "→ "; font-size: 11px; }

/* ===========================
   SINGLE POST PAGE
=========================== */
.single-post-wrap { background: var(--white); border-radius: var(--radius); border: 0.5px solid var(--border); padding: 20px; margin-bottom: 14px; }
.post-title { font-size: 22px; font-weight: 700; color: var(--primary); line-height: 1.3; margin-bottom: 10px; }
.post-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; display: flex; gap: 14px; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 4px; }
.post-content { font-size: 14px; line-height: 1.8; }
.post-content h2 { font-size: 18px; font-weight: 600; color: var(--primary); margin: 20px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--primary-light); }
.post-content h3 { font-size: 15px; font-weight: 600; color: var(--primary); margin: 16px 0 8px; }
.post-content p { margin-bottom: 12px; }
.post-content table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13px; }
.post-content table th { background: var(--primary); color: #fff; padding: 9px 12px; text-align: left; }
.post-content table td { padding: 8px 12px; border-bottom: 1px solid var(--border); }
.post-content table tr:nth-child(even) td { background: var(--gray-bg); }
.post-content ol { padding-left: 20px; margin-bottom: 12px; }
.post-content ol li { margin-bottom: 6px; }
.post-content .apply-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin: 14px 0;
}
.post-content .apply-btn:hover { background: #c0281b; }
.source-box {
    background: var(--yellow-light);
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 12px 14px;
    margin: 16px 0;
    font-size: 12px;
    color: #92400e;
}
.disclaimer-box {
    background: #f9fafb;
    border-left: 4px solid var(--accent);
    border-radius: 0 6px 6px 0;
    padding: 12px 14px;
    margin: 16px 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */
.site-footer { background: #1a3a6b; color: #aac4e8; padding: 24px 14px 12px; margin-top: 10px; }
.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 360px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h3 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-col a { display: block; font-size: 12px; color: #aac4e8; margin-bottom: 6px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
    font-size: 11px;
    text-align: center;
    color: #7a9cc0;
    line-height: 1.7;
}
.disclaimer-footer {
    background: var(--yellow-light);
    border-top: 1px solid #fbbf24;
    padding: 10px 14px;
    font-size: 11px;
    color: #92400e;
    text-align: center;
    line-height: 1.6;
}

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 14px;
    font-size: 12px;
    color: var(--text-muted);
}
.breadcrumb .container { max-width: 1100px; margin: 0 auto; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 5px; }

/* ===========================
   PAGINATION
=========================== */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 16px 0; flex-wrap: wrap; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
}
.pagination a:hover, .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===========================
   MOBILE MENU TOGGLE
=========================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}
@media (max-width: 600px) {
    .menu-toggle { display: block; }
    .nav-list { display: none; flex-direction: column; }
    .nav-list.open { display: flex; }
    .main-nav { position: relative; }
}

/* ===========================
   UTILITY
=========================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.hidden { display: none; }
.badge-new-blink {
    animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ===========================
   DESIGN UPDATES v1.1
=========================== */

/* Better Typography */
body { font-size: 15px; }

/* Header — cleaner */
.site-header {
    padding: 12px 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.site-name { font-size: 22px; letter-spacing: -0.3px; }

/* Nav — pill active style */
.nav-list li a {
    font-size: 13px;
    padding: 10px 15px;
    letter-spacing: 0.1px;
}
.nav-list li.current-menu-item a {
    background: rgba(255,255,255,0.18);
    border-bottom: 2px solid #fff;
}

/* Section header — left accent bar */
.section-header {
    border-left: 4px solid var(--accent);
    padding-left: 12px;
    background: #f8faff;
    color: var(--primary);
    font-size: 15px;
}

/* Job rows — hover effect */
.job-list-item {
    transition: background 0.15s;
}
.job-list-item:hover { background: #f8faff; }

/* Job title bigger */
.job-title { font-size: 14px; }

/* Cards — subtle left border accent */
.section-card {
    border-left: 3px solid var(--primary);
}

/* Sidebar widget header */
.widget-header {
    font-size: 13px;
    letter-spacing: 0.2px;
    border-left: 3px solid rgba(255,255,255,0.4);
    padding-left: 10px;
}

/* Stats strip — better */
.stat-number { font-size: 20px; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Footer — better spacing */
.site-footer { padding: 30px 14px 16px; }
.footer-col h3 { font-size: 13px; letter-spacing: 0.3px; text-transform: uppercase; }

/* Blog cards — hover */
.blog-card { transition: transform 0.15s; }
.blog-card:hover { transform: translateY(-2px); }

/* Search input focus */
.search-form input:focus { box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }

/* Breadcrumb — cleaner */
.breadcrumb { font-size: 12px; padding: 7px 14px; background: #f8faff; }

/* Page content styles */
.page-wrap {
    background: var(--white);
    border-radius: var(--radius);
    border: 0.5px solid var(--border);
    padding: 28px 32px;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
}
.page-wrap h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}
.page-wrap h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0 10px;
}
.page-wrap p { margin-bottom: 14px; line-height: 1.8; color: #333; }
.page-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.page-wrap ul li { margin-bottom: 6px; line-height: 1.7; }
.page-wrap a { color: var(--primary); text-decoration: underline; }
.page-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }

/* Contact form */
.contact-form { max-width: 600px; }
.contact-form label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; color: var(--primary); }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    margin-bottom: 14px;
    background: #f9fafb;
    outline: none;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); background: #fff; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.contact-form button:hover { background: #122a52; }

/* Info boxes */
.info-box {
    background: var(--blue-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 6px 6px 0;
    padding: 14px 16px;
    margin: 16px 0;
    font-size: 13px;
    color: #1e3a6b;
}
.warning-box {
    background: var(--yellow-light);
    border-left: 4px solid #f59e0b;
    border-radius: 0 6px 6px 0;
    padding: 14px 16px;
    margin: 16px 0;
    font-size: 13px;
    color: #92400e;
}

@media (max-width: 600px) {
    .page-wrap { padding: 16px; }
    .page-wrap h1 { font-size: 20px; }
}
