/**
 * Main Theme Stylesheet: AtoZ Result
 * Lightweight, pure CSS with zero dependencies.
 */

/* ==========================================================================
   1. Typography & General Layout
   ========================================================================== */
body {
    background-color: #f4f6f8;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.atoz-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0,0,0,0.06);
}

/* ==========================================================================
   2. Header & Branding
   ========================================================================== */
.atoz-header {
    background-color: #721220;
    padding: 16px 20px;
    border-bottom: 2px solid #5a0d18;
}

.atoz-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.atoz-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.atoz-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atoz-main-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.atoz-sub-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
}

/* ==========================================================================
   3. Navbar (Unified Maroon with White Text & Icons, No Duplicate Logo)
   ========================================================================== */
.atoz-navbar {
    background-color: #721220;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 3px solid #8e1728;
    position: relative;
    z-index: 100;
}

.atoz-nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    min-height: 48px;
}

.atoz-main-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.atoz-main-menu > li {
    position: relative;
}

.atoz-main-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 14px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.atoz-main-menu > li > a:hover,
.atoz-main-menu > li.current-menu-item > a,
.atoz-main-menu > li.current-post-ancestor > a {
    background-color: #5c0d18;
    color: #ffeb3b !important;
}

.atoz-nav-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.atoz-search-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.atoz-search-toggle:hover {
    color: #ffeb3b;
    transform: scale(1.1);
}

/* Fullscreen Centered Search Modal with Black Blur Backdrop */
.atoz-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.atoz-search-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

body.search-open {
    overflow: hidden;
}

.atoz-search-modal-card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 620px;
    padding: 35px 30px 28px 30px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.atoz-search-overlay.is-active .atoz-search-modal-card {
    transform: scale(1);
}

.atoz-search-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f1f3f5;
    border: none;
    color: #444444;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.atoz-search-modal-close:hover {
    background-color: #721220;
    color: #ffffff;
    transform: rotate(90deg);
}

.atoz-search-modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.atoz-search-modal-header i {
    font-size: 26px;
    color: #721220;
    margin-bottom: 8px;
    display: inline-block;
}

.atoz-search-modal-header h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 800;
    color: #111111;
}

.atoz-search-modal-header p {
    margin: 0;
    font-size: 13.5px;
    color: #666666;
}

.atoz-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #721220;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(114, 18, 32, 0.12);
}

.atoz-search-input-icon {
    position: absolute;
    left: 16px;
    color: #888888;
    font-size: 17px;
    pointer-events: none;
}

.atoz-search-input-wrapper input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 16px 15px 48px;
    font-size: 15.5px;
    font-family: inherit;
    color: #222222;
}

.atoz-search-submit-btn {
    background: #721220;
    color: #ffffff;
    border: none;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.atoz-search-submit-btn:hover {
    background-color: #550a14;
}

.atoz-search-quick-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
}

.atoz-search-quick-tags span {
    color: #777777;
    font-weight: 600;
}

.atoz-search-quick-tags a {
    background: #f4f6f8;
    color: #0056b3;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.atoz-search-quick-tags a:hover {
    background: #721220;
    color: #ffffff;
}

/* Mobile Toggle */
.atoz-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 10px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.atoz-mobile-toggle:hover {
    color: #ffeb3b;
}

/* ==========================================================================
   4. Mobile Off-Canvas Left Sidebar Drawer (Matching screenshot)
   ========================================================================== */
.atoz-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.atoz-drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open {
    overflow: hidden;
}

.atoz-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    max-width: 80vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.25);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.atoz-mobile-drawer.is-open {
    transform: translateX(0);
}

.atoz-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 14px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.atoz-drawer-title {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #721220;
    text-transform: uppercase;
}

.atoz-drawer-close {
    background: transparent;
    border: none;
    color: #444444;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.atoz-drawer-close:hover {
    color: #c5221f;
    transform: scale(1.1);
}

.atoz-drawer-body {
    padding: 8px 0 20px 0;
    flex: 1;
}

.atoz-drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.atoz-drawer-menu > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.atoz-drawer-menu > li > a {
    display: block;
    padding: 14px 24px;
    color: #111111 !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.2px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.atoz-drawer-menu > li > a:hover,
.atoz-drawer-menu > li.current-menu-item > a {
    background-color: #f5f5f5;
    color: #721220 !important;
}

/* ==========================================================================
   5. Marquee & Headline Section
   ========================================================================== */
.atoz-headline-bar {
    padding: 8px 15px 4px 15px;
    text-align: center;
}

.atoz-marquee-container {
    background: #ffffff;
    padding: 6px 0;
    overflow: hidden;
}

.atoz-marquee-track {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 6px;
}

.atoz-marquee-track marquee {
    font-size: 13.5px;
    font-weight: 700;
}

.marquee-link-red {
    color: #d32f2f;
    margin: 0 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.marquee-link-green {
    color: #2e7d32;
    margin: 0 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.marquee-link-red:hover,
.marquee-link-green:hover {
    text-decoration: underline;
}

.live-gif-badge {
    display: inline-block;
    height: 14px;
    width: auto;
    vertical-align: middle;
}

/* ==========================================================================
   5. Top 8 Highlight Colored Boxes
   ========================================================================== */
.atoz-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 12px 15px;
    background: #ffffff;
}

.atoz-highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 54px;
    padding: 8px 12px;
    border-radius: 5px;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.atoz-highlight-box:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #ffffff !important;
}

/* Color Presets */
.box-green      { background-color: #00875a; }
.box-navy       { background-color: #1a365d; }
.box-red        { background-color: #c5221f; }
.box-darkgreen  { background-color: #0b6623; }
.box-skyblue    { background-color: #0288d1; }
.box-purple     { background-color: #4a148c; }
.box-pink       { background-color: #c2185b; }
.box-magenta    { background-color: #880e4f; }

/* ==========================================================================
   6. Social Media Icons Bar
   ========================================================================== */
.atoz-social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0 16px 0;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.social-icon-btn:hover {
    transform: scale(1.1);
}

.social-fb { background-color: #3b5998; }
.social-wa { background-color: #25d366; }
.social-yt { background-color: #cd201f; }
.social-tg { background-color: #0088cc; }
.social-tw { background-color: #1da1f2; }

/* ==========================================================================
   7. Sarkari Category Boxes Grid (Desktop 3-column & 2-column)
   ========================================================================== */
.atoz-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px 15px 20px 15px;
}

.atoz-category-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px 20px 15px;
}

.sarkari-card {
    border: 2px solid #b71c1c;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    overflow: hidden;
}

.sarkari-card-header {
    background-color: #c5221f;
    color: #ffffff;
    text-align: center;
    padding: 8px 12px;
}

.sarkari-card-header h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-transform: capitalize;
}

.sarkari-card-body {
    flex: 1;
    padding: 12px 14px;
}

.sarkari-post-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.sarkari-post-list li {
    font-size: 13.5px;
    margin-bottom: 9px;
    line-height: 1.45;
    color: #333333;
}

.sarkari-post-list li a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.sarkari-post-list li a:hover {
    color: #c5221f;
    text-decoration: underline;
}

.sarkari-card-footer {
    padding: 0 0 1px 0;
}

.sarkari-view-more {
    display: block;
    background-color: #c5221f;
    color: #ffffff !important;
    text-align: center;
    padding: 7px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.sarkari-view-more:hover {
    background-color: #9b111e;
}

/* ==========================================================================
   8. SEO Informational Dotted Box
   ========================================================================== */
.atoz-seo-box {
    margin: 15px 15px 30px 15px;
    padding: 18px 22px;
    border: 1.5px dashed #b71c1c;
    background: #fffbfb;
    border-radius: 4px;
    font-size: 13.5px;
    line-height: 1.75;
    color: #333333;
}

.atoz-seo-box p {
    margin-bottom: 12px;
}

.atoz-seo-box p:last-child {
    margin-bottom: 0;
}

.atoz-seo-box strong {
    color: #000000;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.atoz-footer {
    background-color: #1c1c1c;
    color: #d1d5db;
    padding: 35px 20px 20px 20px;
    border-top: 3px solid #721220;
}

.atoz-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 25px;
    margin-bottom: 25px;
}

.atoz-footer-col h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.atoz-footer-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.atoz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atoz-footer-links li {
    margin-bottom: 8px;
}

.atoz-footer-links li a {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.atoz-footer-links li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.atoz-footer-social-card {
    background: #262626;
    border: 1px solid #383838;
    border-radius: 6px;
    padding: 14px;
    text-align: center;
}

.atoz-footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    width: 100%;
    margin-top: 8px;
    transition: opacity 0.2s ease;
}

.atoz-footer-social-btn:hover {
    opacity: 0.9;
}

.atoz-footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 18px;
    text-align: center;
    font-size: 12.5px;
    color: #888888;
}

/* ==========================================================================
   10. Single Article Page Styling
   ========================================================================== */
.atoz-single-container {
    padding: 20px 24px;
    background: #ffffff;
}

.atoz-breadcrumbs {
    font-size: 13px;
    margin-bottom: 14px;
    color: #666666;
}

.atoz-breadcrumbs a {
    color: #0056b3;
}

.atoz-category-pill {
    display: inline-block;
    background-color: #c5221f;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-decoration: none !important;
}

.atoz-single-title {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.atoz-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #666666;
    padding-bottom: 14px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 18px;
}

/* Native WhatsApp & Telegram Highlight Boxes (Above content) */
.atoz-join-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.atoz-join-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-radius: 5px;
    border: 1.5px solid;
}

.atoz-join-box.whatsapp-box {
    background-color: #e8f9ff;
    border-color: #2bb540;
}

.atoz-join-box.telegram-box {
    background-color: #e8f9ff;
    border-color: #34ace3;
}

.atoz-join-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.atoz-join-btn {
    padding: 5px 16px;
    border-radius: 4px;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.btn-green { background-color: #2bb540; }
.btn-blue  { background-color: #34ace3; }

.atoz-featured-image {
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}

.atoz-featured-image img {
    width: 100%;
    height: auto;
}

/* Article Content & Sarkari Tables */
.atoz-article-content {
    font-size: 15.5px;
    line-height: 1.8;
    color: #2b2b2b;
}

.atoz-article-content h2 {
    font-size: 21px;
    font-weight: 700;
    margin: 28px 0 14px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #0d6efd;
    color: #111111;
}

.atoz-article-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: #222222;
}

.atoz-article-content p {
    margin-bottom: 16px;
}

.atoz-article-content ul,
.atoz-article-content ol {
    margin: 12px 0 20px 24px;
}

.atoz-article-content li {
    margin-bottom: 7px;
}

/* Tables inside articles */
.scheme-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 26px 0;
    font-size: 14.5px;
    background: #ffffff;
    border: 1px solid #d0d7de;
}

.scheme-table thead th {
    background-color: #0d6efd;
    color: #ffffff;
    text-align: left;
    padding: 11px 14px;
    font-weight: 700;
    border: 1px solid #0a58ca;
}

.scheme-table tbody td {
    padding: 10px 14px;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.scheme-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.scheme-table td:first-child {
    font-weight: 600;
    width: 36%;
    color: #333333;
}

.scheme-btn {
    display: inline-block;
    background-color: #0d6efd;
    color: #ffffff !important;
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
}

.scheme-notice-box {
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 12px 16px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #5d4037;
}

/* Related Posts */
.atoz-related-section {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #eeeeee;
}

.atoz-related-title {
    background-color: #721220;
    color: #ffffff;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.atoz-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.atoz-related-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    background: #fafafa;
}

.atoz-related-card a {
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
    line-height: 1.4;
    display: block;
}

.atoz-related-card a:hover {
    color: #c5221f;
}

/* Comments Section */
.atoz-comments-section {
    margin-top: 35px;
}

.atoz-comments-header {
    background-color: #721220;
    color: #ffffff;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Form controls */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 14px;
}

.comment-form input[type="submit"] {
    background-color: #721220;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

/* ==========================================================================
   11. Responsive Styles (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 1024px) {
    .atoz-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .atoz-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .atoz-header-inner {
        gap: 12px;
    }
    .atoz-logo-img {
        height: 55px;
    }
    .atoz-main-title {
        font-size: 26px;
    }
    .atoz-sub-title {
        font-size: 16px;
    }
    .atoz-nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }
    .atoz-nav-search {
        position: static;
        transform: none;
    }
    .atoz-mobile-toggle {
        display: flex;
    }
    .atoz-main-menu {
        display: none !important;
    }
    .atoz-search-modal-card {
        padding: 28px 16px 20px 16px;
    }
    .atoz-search-input-wrapper input[type="search"] {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }
    .atoz-search-submit-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    .atoz-highlight-grid {
        grid-template-columns: 1fr;
    }
    .atoz-category-grid,
    .atoz-category-grid-2col {
        grid-template-columns: 1fr;
    }
    .atoz-join-row {
        grid-template-columns: 1fr;
    }
    .atoz-related-grid {
        grid-template-columns: 1fr;
    }
    .atoz-footer-grid {
        grid-template-columns: 1fr;
    }
    .atoz-single-title {
        font-size: 22px;
    }
}

@media (min-width: 769px) {
    .atoz-mobile-toggle,
    .atoz-mobile-drawer,
    .atoz-drawer-overlay {
        display: none !important;
    }
}

