/*
Theme Name:   MarathiTime Child
Theme URI:    https://marathitime.com
Description:  GeneratePress Child Theme — forensic replica of marathitime.com
Author:       MarathiTime
Author URI:   https://marathitime.com
Template:     generatepress
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:  marathitime-child
Tags:         marathi, news, generatepress, child-theme
*/

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ========================================================================== */

:root {
    /* Brand Colors */
    --mt-primary:       #e8650a;
    --mt-primary-dark:  #c5530a;
    --mt-primary-light: #f07830;
    --mt-accent:        #ff6600;

    /* Neutral Palette */
    --mt-black:         #1a1a1a;
    --mt-dark:          #2d2d2d;
    --mt-grey-900:      #333333;
    --mt-grey-700:      #555555;
    --mt-grey-500:      #888888;
    --mt-grey-300:      #cccccc;
    --mt-grey-200:      #e0e0e0;
    --mt-grey-100:      #f2f2f2;
    --mt-grey-50:       #f8f8f8;
    --mt-white:         #ffffff;

    /* Semantic */
    --mt-bg:            #f5f5f5;
    --mt-surface:       #ffffff;
    --mt-border:        #e0e0e0;
    --mt-text:          #333333;
    --mt-text-muted:    #666666;
    --mt-text-light:    #999999;

    /* Header */
    --mt-header-bg:     #ffffff;
    --mt-topbar-bg:     #1a1a1a;
    --mt-topbar-text:   #ffffff;
    --mt-nav-bg:        #e8650a;
    --mt-nav-text:      #ffffff;
    --mt-nav-hover:     #c5530a;

    /* Typography */
    --mt-font-primary:  'Noto Sans Devanagari', 'Noto Sans', sans-serif;
    --mt-font-heading:  'Noto Sans Devanagari', 'Noto Sans', sans-serif;

    /* Sizes */
    --mt-radius:        4px;
    --mt-radius-md:     6px;
    --mt-radius-lg:     8px;
    --mt-shadow-sm:     0 1px 3px rgba(0,0,0,.08);
    --mt-shadow:        0 2px 8px rgba(0,0,0,.12);
    --mt-shadow-md:     0 4px 16px rgba(0,0,0,.14);

    /* Spacing */
    --mt-gap:           20px;
    --mt-gap-lg:        30px;
    --mt-gap-xl:        40px;

    /* Container */
    --mt-container:     1200px;
    --mt-sidebar-w:     300px;
}

/* ==========================================================================
   1. BASE RESET & GLOBAL STYLES
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--mt-font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--mt-text);
    background-color: var(--mt-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--mt-primary);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--mt-primary-dark);
    text-decoration: underline;
}

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

ul,
ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
}

p {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--mt-font-heading);
    line-height: 1.3;
    font-weight: 700;
    color: var(--mt-dark);
    margin: 0 0 .75em;
}

/* ==========================================================================
   2. OVERLAY AD BANNER — Top sticky ad with close button
   ========================================================================== */

.mt-ad-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .85);
    text-align: center;
    padding: 8px 40px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.mt-ad-overlay .mt-close-ad {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #555;
    color: #fff;
    border: none;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    font-family: var(--mt-font-primary);
    white-space: nowrap;
}

.mt-ad-overlay .mt-close-ad:hover {
    background: #333;
}

.mt-ad-overlay-text {
    color: #fff;
    font-size: 13px;
}

/* ==========================================================================
   3. SITE HEADER
   ========================================================================== */

/* ── 3a. Top Strip Bar ── */
.mt-topbar {
    background: var(--mt-topbar-bg);
    padding: 5px 0;
    display: none; /* shown via JS if needed */
}

.mt-topbar-inner {
    max-width: var(--mt-container);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--mt-topbar-text);
}

/* ── 3b. Main Header Wrapper ── */
.site-header,
#masthead {
    background: var(--mt-header-bg);
    border-bottom: 3px solid var(--mt-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--mt-shadow);
}

.mt-header-inner {
    max-width: var(--mt-container);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* ── 3c. Logo ── */
.site-branding,
.site-logo,
.mt-logo-wrap {
    display: flex;
    align-items: center;
}

.site-logo img,
.custom-logo,
.mt-logo-wrap img {
    max-height: 55px;
    width: auto;
    display: block;
}

/* Logo text fallback */
.site-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--mt-primary);
    margin: 0;
    line-height: 1;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-description {
    font-size: 12px;
    color: var(--mt-text-muted);
    margin: 0;
}

/* ── 3d. Header Right Area (WhatsApp link) ── */
.mt-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mt-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.mt-whatsapp-link:hover {
    background: #1da851;
    color: #fff;
    text-decoration: none;
}

.mt-whatsapp-link::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ── 3e. Mobile Menu Toggle ── */
.menu-toggle,
.mobile-menu-toggle,
.mt-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mt-menu-toggle span,
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mt-dark);
    transition: all .3s;
}

/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

/* ── 4a. Primary Nav Bar ── */
.main-navigation,
#site-navigation,
.mt-nav-wrap {
    background: var(--mt-nav-bg);
}

.mt-nav-inner {
    max-width: var(--mt-container);
    margin: 0 auto;
    padding: 0 15px;
}

/* Nav menu reset */
.main-navigation ul,
.mt-nav-wrap ul,
nav.main-navigation > div > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-navigation ul li,
.mt-nav-wrap ul li {
    position: relative;
}

.main-navigation ul li a,
.mt-nav-wrap ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--mt-nav-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
    line-height: 1.4;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-menu-ancestor > a {
    background: var(--mt-nav-hover);
    color: var(--mt-nav-text);
    text-decoration: none;
}

/* ── 4b. Dropdown Menus ── */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9998;
    display: none;
    min-width: 220px;
    background: #fff;
    border-top: 2px solid var(--mt-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    flex-direction: column;
}

.main-navigation ul ul li a {
    color: var(--mt-dark);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--mt-grey-100);
}

.main-navigation ul ul li a:hover {
    background: var(--mt-grey-50);
    color: var(--mt-primary);
}

.main-navigation ul li:hover > ul {
    display: flex;
}

/* ── 4c. Nav Arrow indicator ── */
.main-navigation ul li:has(> ul) > a::after {
    content: ' ▾';
    font-size: 10px;
}

/* ==========================================================================
   5. TICKER / SCROLLING HEADLINE BAR
   ========================================================================== */

.mt-ticker-wrap {
    background: var(--mt-grey-50);
    border-bottom: 1px solid var(--mt-border);
    overflow: hidden;
    padding: 0;
}

.mt-ticker-inner {
    max-width: var(--mt-container);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.mt-ticker-label {
    background: var(--mt-primary);
    color: #fff;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mt-ticker-track {
    overflow: hidden;
    flex: 1;
    padding: 7px 12px;
}

.mt-ticker-list {
    display: flex;
    gap: 0;
    animation: mt-ticker 80s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.mt-ticker-list a {
    font-size: 13px;
    color: var(--mt-dark);
    padding: 0 24px 0 0;
    text-decoration: none;
    display: inline-block;
}

.mt-ticker-list a::after {
    content: ' | ';
    color: var(--mt-grey-300);
    padding-left: 24px;
}

.mt-ticker-list a:last-child::after {
    display: none;
}

@keyframes mt-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   6. LAYOUT — Content Grid
   ========================================================================== */

.site-content,
#content {
    max-width: var(--mt-container);
    margin: 0 auto;
    padding: var(--mt-gap) 15px;
    display: grid;
    grid-template-columns: 1fr var(--mt-sidebar-w);
    gap: var(--mt-gap-lg);
    align-items: start;
}

/* Full-width layout (no sidebar) */
.no-sidebar .site-content,
.site-content.no-sidebar {
    grid-template-columns: 1fr;
}

/* Primary content area */
#primary,
.content-area {
    min-width: 0;
}

/* Sidebar */
#secondary,
.widget-area {
    min-width: 0;
}

/* ==========================================================================
   7. HOMEPAGE / ARCHIVE POST LOOP
   ========================================================================== */

/* ── 7a. Loop wrapper ── */
#main,
.site-main {
    /* nothing special — children handle their layout */
}

/* ── 7b. Individual Post Card ── */
.post-card,
article.post,
article.hentry {
    background: var(--mt-surface);
    border-radius: var(--mt-radius);
    border: 1px solid var(--mt-border);
    margin-bottom: var(--mt-gap);
    overflow: hidden;
    transition: box-shadow .25s;
}

.post-card:hover,
article.post:hover,
article.hentry:hover {
    box-shadow: var(--mt-shadow-md);
}

/* ── 7c. Featured Image ── */
.post-thumbnail,
.entry-thumbnail,
.wp-post-image-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

.post-thumbnail img,
.entry-thumbnail img,
.wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.post-card:hover .post-thumbnail img,
article.hentry:hover .wp-post-image {
    transform: scale(1.04);
}

/* ── 7d. Category Badge on Image ── */
.entry-category-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--mt-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
    z-index: 2;
    text-decoration: none;
}

/* ── 7e. Post Body Content ── */
.entry-content-wrap,
.post-body {
    padding: 16px 18px 18px;
}

/* ── 7f. Post Title ── */
.entry-title,
.post-card h2,
.post-card .entry-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: var(--mt-dark);
}

.entry-title a,
.post-card h2 a {
    color: var(--mt-dark);
    text-decoration: none;
}

.entry-title a:hover,
.post-card h2 a:hover {
    color: var(--mt-primary);
    text-decoration: none;
}

/* ── 7g. Post Meta (date, author) ── */
.entry-meta,
.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--mt-text-muted);
    margin-bottom: 10px;
}

.entry-meta a,
.post-meta a {
    color: var(--mt-text-muted);
    text-decoration: none;
}

.entry-meta a:hover,
.post-meta a:hover {
    color: var(--mt-primary);
}

.entry-meta .posted-on,
.entry-meta .byline,
.post-meta .date,
.post-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* date separator */
.entry-meta > * + *::before {
    content: '·';
    margin-right: 6px;
    color: var(--mt-grey-300);
}

/* ── 7h. Excerpt ── */
.entry-summary,
.entry-content > p:first-child,
.post-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mt-grey-700);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── 7i. Read More Button ── */
.read-more-btn,
.more-link,
a.more-link,
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--mt-primary);
    color: #fff;
    padding: 7px 16px;
    border-radius: var(--mt-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover,
.more-link:hover,
a.more-link:hover {
    background: var(--mt-primary-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── 7j. Horizontal list variant (homepage secondary section) ── */
.mt-post-list-horiz {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--mt-gap);
    margin-bottom: var(--mt-gap-lg);
}

.mt-post-list-horiz .post-card-mini {
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    display: flex;
    gap: 12px;
    padding: 10px;
    transition: box-shadow .25s;
}

.mt-post-list-horiz .post-card-mini:hover {
    box-shadow: var(--mt-shadow);
}

.mt-post-list-horiz .post-card-mini .thumb {
    width: 90px;
    height: 65px;
    flex-shrink: 0;
    border-radius: var(--mt-radius);
    overflow: hidden;
}

.mt-post-list-horiz .post-card-mini .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-post-list-horiz .post-card-mini .info h6 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-post-list-horiz .post-card-mini .info h6 a {
    color: var(--mt-dark);
    text-decoration: none;
}

.mt-post-list-horiz .post-card-mini .info h6 a:hover {
    color: var(--mt-primary);
}

/* ==========================================================================
   8. FEATURED / HERO POST (first post on homepage)
   ========================================================================== */

.mt-featured-post {
    position: relative;
    margin-bottom: var(--mt-gap-lg);
    border-radius: var(--mt-radius-lg);
    overflow: hidden;
    box-shadow: var(--mt-shadow-md);
}

.mt-featured-post .thumb {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.mt-featured-post .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.mt-featured-post:hover .thumb img {
    transform: scale(1.03);
}

.mt-featured-post .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
    pointer-events: none;
}

.mt-featured-post .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    color: #fff;
}

.mt-featured-post .content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mt-featured-post .content h2 a {
    color: #fff;
    text-decoration: none;
}

.mt-featured-post .content h2 a:hover {
    color: var(--mt-primary-light);
}

.mt-featured-post .content .meta {
    font-size: 12px;
    color: rgba(255,255,255,.8);
}

/* ==========================================================================
   9. SIDEBAR WIDGETS
   ========================================================================== */

#secondary,
.widget-area {
    display: flex;
    flex-direction: column;
    gap: var(--mt-gap);
}

.widget {
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    overflow: hidden;
}

/* Widget Title */
.widget-title,
.widgettitle {
    background: var(--mt-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    margin: 0;
    letter-spacing: .02em;
}

/* Widget Body */
.widget > *:not(.widget-title):not(.widgettitle) {
    padding: 12px 14px;
}

/* ── Recent Posts Widget ── */
.widget_recent_entries ul,
.mt-widget-recent-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_recent_entries li,
.mt-widget-recent-posts li {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--mt-border);
    align-items: flex-start;
}

.widget_recent_entries li:last-child,
.mt-widget-recent-posts li:last-child {
    border-bottom: none;
}

.widget_recent_entries li .thumb,
.mt-widget-recent-posts li .thumb {
    width: 70px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
    background: var(--mt-grey-100);
}

.widget_recent_entries li .thumb img,
.mt-widget-recent-posts li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget_recent_entries li .widget-post-title,
.mt-widget-recent-posts li .widget-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--mt-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget_recent_entries li .widget-post-title a,
.mt-widget-recent-posts li .widget-post-title a {
    color: inherit;
    text-decoration: none;
}

.widget_recent_entries li .widget-post-title a:hover,
.mt-widget-recent-posts li .widget-post-title a:hover {
    color: var(--mt-primary);
}

.widget_recent_entries li .post-date,
.mt-widget-recent-posts li .post-date {
    font-size: 11px;
    color: var(--mt-text-light);
    margin-top: 4px;
}

/* ── Categories Widget ── */
.widget_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_categories li {
    border-bottom: 1px solid var(--mt-grey-100);
}

.widget_categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--mt-dark);
    text-decoration: none;
}

.widget_categories li a::before {
    content: '›';
    color: var(--mt-primary);
    font-size: 16px;
    margin-right: 6px;
}

.widget_categories li a:hover {
    color: var(--mt-primary);
}

/* ── Ad Widget (sidebar) ── */
.mt-ad-widget {
    text-align: center;
    padding: 0 !important;
    background: #f9f9f9;
    border: 1px dashed var(--mt-grey-300);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--mt-grey-500);
}

.mt-ad-widget .ads-label {
    display: block;
    font-size: 11px;
    color: var(--mt-grey-400);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ==========================================================================
   10. SINGLE POST PAGE
   ========================================================================== */

.single .site-content {
    grid-template-columns: 1fr var(--mt-sidebar-w);
}

.single-post-wrap {
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    overflow: hidden;
    padding: 24px 28px 28px;
}

/* ── 10a. Single post header ── */
.entry-header {
    margin-bottom: 20px;
}

.entry-header .entry-title {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.entry-header .entry-meta {
    margin-bottom: 0;
}

/* ── 10b. Featured image on single ── */
.single .post-thumbnail,
.single .entry-thumbnail {
    margin-bottom: 20px;
    border-radius: var(--mt-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

/* ── 10c. Post content typography ── */
.entry-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mt-dark);
}

.entry-content h2 {
    font-size: 20px;
    margin-top: 1.5em;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--mt-primary);
    color: var(--mt-dark);
}

.entry-content h3 {
    font-size: 17px;
    margin-top: 1.25em;
    color: var(--mt-dark);
}

.entry-content a {
    color: var(--mt-primary);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--mt-primary-dark);
}

.entry-content img {
    border-radius: var(--mt-radius);
    margin: 1em 0;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5em;
}

.entry-content li {
    margin-bottom: .4em;
}

/* ── 10d. In-content ad placements ── */
.mt-in-content-ad {
    margin: 24px 0;
    text-align: center;
    background: var(--mt-grey-50);
    border: 1px dashed var(--mt-grey-300);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--mt-radius);
    color: var(--mt-grey-500);
    font-size: 13px;
}

/* ── 10e. Blockquote ── */
.entry-content blockquote {
    border-left: 4px solid var(--mt-primary);
    margin: 1.5em 0;
    padding: 12px 18px;
    background: var(--mt-grey-50);
    font-style: italic;
    border-radius: 0 var(--mt-radius) var(--mt-radius) 0;
}

/* ── 10f. Table ── */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 14px;
}

.entry-content th,
.entry-content td {
    border: 1px solid var(--mt-border);
    padding: 10px 14px;
    text-align: left;
}

.entry-content th {
    background: var(--mt-primary);
    color: #fff;
    font-weight: 700;
}

.entry-content tr:nth-child(even) td {
    background: var(--mt-grey-50);
}

/* ── 10g. Tags ── */
.entry-footer,
.post-tags {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--mt-border);
    font-size: 13px;
}

.entry-footer .tags-links a,
.post-tags a {
    display: inline-block;
    background: var(--mt-grey-100);
    border: 1px solid var(--mt-border);
    color: var(--mt-grey-700);
    padding: 4px 10px;
    border-radius: 2px;
    margin: 3px 3px 3px 0;
    font-size: 12px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.entry-footer .tags-links a:hover,
.post-tags a:hover {
    background: var(--mt-primary);
    color: #fff;
    border-color: var(--mt-primary);
}

/* ── 10h. Author Box ── */
.mt-author-box {
    display: flex;
    gap: 16px;
    background: var(--mt-grey-50);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    padding: 20px;
    margin-top: 24px;
    align-items: flex-start;
}

.mt-author-box .author-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--mt-primary);
    object-fit: cover;
}

.mt-author-box .author-info .author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--mt-dark);
    margin-bottom: 4px;
}

.mt-author-box .author-info .author-bio {
    font-size: 13px;
    color: var(--mt-grey-700);
    line-height: 1.6;
}

/* ── 10i. Related Posts ── */
.mt-related-posts {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid var(--mt-primary);
}

.mt-related-posts .section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--mt-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mt-related-posts .section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: var(--mt-primary);
    border-radius: 2px;
}

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

.mt-related-item {
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    overflow: hidden;
    transition: box-shadow .25s;
}

.mt-related-item:hover {
    box-shadow: var(--mt-shadow);
}

.mt-related-item .thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mt-related-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.mt-related-item:hover .thumb img {
    transform: scale(1.05);
}

.mt-related-item .info {
    padding: 10px 12px;
}

.mt-related-item .info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-related-item .info h4 a {
    color: var(--mt-dark);
    text-decoration: none;
}

.mt-related-item .info h4 a:hover {
    color: var(--mt-primary);
}

/* ==========================================================================
   11. BREADCRUMBS
   ========================================================================== */

.mt-breadcrumb,
.breadcrumb-trail,
.rank-math-breadcrumb,
.yoast-breadcrumb {
    background: var(--mt-grey-50);
    border-bottom: 1px solid var(--mt-border);
    padding: 0;
}

.mt-breadcrumb-inner,
.breadcrumb-trail .trail-items,
.rank-math-breadcrumb p,
.yoast-breadcrumb p {
    max-width: var(--mt-container);
    margin: 0 auto;
    padding: 8px 15px;
    font-size: 12px;
    color: var(--mt-grey-500);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.mt-breadcrumb a,
.breadcrumb-trail a,
.rank-math-breadcrumb a,
.yoast-breadcrumb a {
    color: var(--mt-primary);
    text-decoration: none;
}

.mt-breadcrumb a:hover,
.breadcrumb-trail a:hover {
    text-decoration: underline;
}

.breadcrumb-trail .sep,
.rank-math-breadcrumb .separator,
.yoast-breadcrumb .breadcrumb_last::before {
    color: var(--mt-grey-400);
    margin: 0 2px;
}

/* ==========================================================================
   12. CATEGORY / ARCHIVE PAGE
   ========================================================================== */

.archive-header,
.category-header {
    background: var(--mt-surface);
    border-radius: var(--mt-radius);
    border-left: 4px solid var(--mt-primary);
    padding: 14px 18px;
    margin-bottom: var(--mt-gap);
    border-top: 1px solid var(--mt-border);
    border-bottom: 1px solid var(--mt-border);
    border-right: 1px solid var(--mt-border);
}

.archive-title,
.page-title,
.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--mt-dark);
    margin: 0 0 4px;
}

.archive-description,
.category-description {
    font-size: 13px;
    color: var(--mt-grey-600);
    margin: 0;
}

/* ==========================================================================
   13. SEARCH PAGE
   ========================================================================== */

.search-form-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: var(--mt-gap);
}

.search-form-wrap input[type="search"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    font-size: 14px;
    font-family: var(--mt-font-primary);
    outline: none;
}

.search-form-wrap input[type="search"]:focus {
    border-color: var(--mt-primary);
    box-shadow: 0 0 0 2px rgba(232,101,10,.15);
}

.search-form-wrap button[type="submit"] {
    background: var(--mt-primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--mt-radius);
    font-size: 14px;
    cursor: pointer;
    font-family: var(--mt-font-primary);
    transition: background .2s;
}

.search-form-wrap button[type="submit"]:hover {
    background: var(--mt-primary-dark);
}

.search-results-count {
    font-size: 14px;
    color: var(--mt-grey-600);
    margin-bottom: 16px;
}

/* ==========================================================================
   14. PAGINATION
   ========================================================================== */

.pagination,
.navigation,
.post-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.pagination .page-numbers,
.navigation .page-numbers,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    font-size: 13px;
    color: var(--mt-dark);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    font-family: var(--mt-font-primary);
}

.pagination .page-numbers:hover,
.navigation .page-numbers:hover,
.nav-links a:hover {
    background: var(--mt-primary);
    color: #fff;
    border-color: var(--mt-primary);
    text-decoration: none;
}

.pagination .page-numbers.current,
.navigation .page-numbers.current,
.nav-links .current {
    background: var(--mt-primary);
    color: #fff;
    border-color: var(--mt-primary);
    font-weight: 700;
}

.pagination .prev,
.pagination .next,
.nav-links .prev,
.nav-links .next {
    width: auto;
    padding: 0 14px;
}

/* ==========================================================================
   15. POPULAR POSTS / HORIZONTAL SCROLLING SECTION
   ========================================================================== */

.mt-popular-section {
    background: var(--mt-surface);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    padding: 16px;
    margin-bottom: var(--mt-gap);
}

.mt-section-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--mt-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mt-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mt-section-heading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--mt-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.mt-popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mt-popular-item {
    background: var(--mt-grey-50);
    border: 1px solid var(--mt-border);
    border-radius: var(--mt-radius);
    overflow: hidden;
}

.mt-popular-item .thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mt-popular-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.mt-popular-item:hover .thumb img {
    transform: scale(1.05);
}

.mt-popular-item .info {
    padding: 8px 10px;
}

.mt-popular-item .info a {
    font-size: 12px;
    font-weight: 600;
    color: var(--mt-dark);
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-popular-item .info a:hover {
    color: var(--mt-primary);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */

#colophon,
.site-footer,
.mt-footer {
    background: var(--mt-black);
    color: #ccc;
    padding: 0;
    border-top: 3px solid var(--mt-primary);
    margin-top: 20px;
}

/* ── Footer Widget Area ── */
.footer-widgets-area {
    padding: 30px 15px;
    max-width: var(--mt-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mt-gap-lg);
}

.footer-widget h4,
.footer-widget .widget-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--mt-primary);
    background: none;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget ul li {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 6px 0;
}

.footer-widget ul li a {
    color: #bbb;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.footer-widget ul li a:hover {
    color: var(--mt-primary-light);
}

/* ── Footer Bottom Bar ── */
.footer-bottom,
.mt-footer-bottom,
.site-info {
    background: #0f0f0f;
    padding: 14px 15px;
    text-align: center;
}

.footer-bottom-inner {
    max-width: var(--mt-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright,
.site-info {
    font-size: 13px;
    color: #888;
}

.footer-copyright a,
.site-info a {
    color: var(--mt-primary-light);
    text-decoration: none;
}

/* Footer nav */
.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    color: var(--mt-primary-light);
}

/* ==========================================================================
   17. MOBILE BOTTOM NAV BAR
   ========================================================================== */

.mt-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: var(--mt-black);
    border-top: 2px solid var(--mt-primary);
    padding: 0;
}

.mt-mobile-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mt-mobile-nav ul li {
    flex: 1;
}

.mt-mobile-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 4px;
    font-size: 10px;
    color: #bbb;
    text-decoration: none;
    line-height: 1.2;
    text-align: center;
}

.mt-mobile-nav ul li a:hover,
.mt-mobile-nav ul li.active a {
    color: var(--mt-primary-light);
}

/* ==========================================================================
   18. MOBILE OFFCANVAS MENU
   ========================================================================== */

.mt-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9995;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.mt-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mt-offcanvas-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--mt-black);
    z-index: 9996;
    transition: left .3s ease;
    overflow-y: auto;
    padding-bottom: 60px;
}

.mt-offcanvas-menu.active {
    left: 0;
}

.mt-offcanvas-header {
    background: var(--mt-primary);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mt-offcanvas-header img {
    max-height: 40px;
}

.mt-offcanvas-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.mt-offcanvas-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mt-offcanvas-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.mt-offcanvas-menu ul li a {
    display: block;
    padding: 14px 20px;
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.mt-offcanvas-menu ul li a:hover {
    background: rgba(232,101,10,.15);
    color: var(--mt-primary-light);
}

/* ==========================================================================
   19. AD PLACEMENTS
   ========================================================================== */

/* Header ad banner (below nav) */
.mt-header-ad {
    background: var(--mt-grey-50);
    border-bottom: 1px solid var(--mt-border);
    padding: 10px 15px;
    text-align: center;
}

.mt-header-ad-inner {
    max-width: var(--mt-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* In-content ad after first paragraph */
.mt-after-p1-ad,
.mt-in-content-ad-1 {
    margin: 20px 0;
    text-align: center;
    clear: both;
}

/* In-content ad at half the article */
.mt-mid-content-ad {
    margin: 28px 0;
    text-align: center;
}

/* Sticky sidebar ad */
.mt-sticky-sidebar-ad {
    position: sticky;
    top: 80px;
    text-align: center;
}

/* Below article ad */
.mt-below-post-ad {
    margin: 24px 0 0;
    text-align: center;
    padding: 0;
}

/* Between posts ad */
.mt-between-posts-ad {
    margin: 0 0 var(--mt-gap);
    text-align: center;
    background: var(--mt-grey-50);
    border: 1px dashed var(--mt-grey-300);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--mt-radius);
}

/* AdSense / generic ad wrapper */
.adsbygoogle-wrap {
    overflow: hidden;
    line-height: 0;
}

/* ==========================================================================
   20. COPY PROTECTION NOTICE
   ========================================================================== */

body::after {
    content: '';
    /* copy protection via CSS */
}

/* ==========================================================================
   21. GENERATEPRESS SPECIFIC OVERRIDES
   ========================================================================== */

/* GP container width */
.grid-container,
.inside-header,
.inside-navigation,
.inside-site-info,
.inside-top-bar {
    max-width: var(--mt-container) !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* GP nav */
.main-navigation .main-nav > ul > li > a {
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--mt-nav-text) !important;
}

.main-navigation .main-nav > ul > li > a:hover,
.main-navigation .main-nav > ul > li.current-menu-item > a {
    background: var(--mt-nav-hover) !important;
}

/* GP header styling */
.site-header .inside-header {
    padding: 0 15px !important;
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

/* GP content area */
.content-area {
    width: 100%;
}

/* Prevent GP default sidebar float issues */
.site-content .content-area,
.site-content .widget-area {
    float: none !important;
}

/* GP post navigation */
.post-navigation {
    border-top: 1px solid var(--mt-border);
    padding-top: 20px;
}

/* ── GP button ── */
.button,
.wp-block-button__link {
    background: var(--mt-primary) !important;
    border-radius: var(--mt-radius) !important;
    color: #fff !important;
    transition: background .2s !important;
}

.button:hover,
.wp-block-button__link:hover {
    background: var(--mt-primary-dark) !important;
}

/* ==========================================================================
   22. UTILITY CLASSES
   ========================================================================== */

.mt-badge {
    display: inline-block;
    background: var(--mt-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 2px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mt-badge-green { background: #27ae60; }
.mt-badge-blue  { background: #2980b9; }
.mt-badge-red   { background: #e74c3c; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-divider {
    height: 1px;
    background: var(--mt-border);
    margin: var(--mt-gap) 0;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ==========================================================================
   23. SCROLL-TO-TOP BUTTON
   ========================================================================== */

.mt-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--mt-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--mt-shadow-md);
}

.mt-scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.mt-scroll-top:hover {
    background: var(--mt-primary-dark);
    transform: translateY(-3px);
}

/* ==========================================================================
   24. RESPONSIVE — TABLET  (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    .site-content,
    #content {
        grid-template-columns: 1fr 260px;
        gap: var(--mt-gap);
    }

    .mt-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mt-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets-area {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-navigation ul li a {
        padding: 12px 12px;
        font-size: 13px;
    }
}

/* ==========================================================================
   25. RESPONSIVE — MOBILE  (max 768px)
   ========================================================================== */

@media (max-width: 768px) {
    /* Kill desktop nav */
    .main-navigation,
    #site-navigation {
        display: none;
    }

    /* Show mobile toggle */
    .mt-menu-toggle,
    .menu-toggle {
        display: flex;
    }

    /* Stack content */
    .site-content,
    #content {
        grid-template-columns: 1fr;
        gap: var(--mt-gap);
        padding: 12px 12px;
    }

    /* Sidebar below content */
    #secondary,
    .widget-area {
        order: 2;
    }

    /* Logo smaller */
    .site-logo img,
    .custom-logo {
        max-height: 45px;
    }

    /* Single post */
    .single-post-wrap {
        padding: 16px;
    }

    .entry-header .entry-title {
        font-size: 19px;
    }

    /* Post card title */
    .entry-title,
    .post-card h2 {
        font-size: 15px;
    }

    /* Popular grid */
    .mt-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Related */
    .mt-related-grid {
        grid-template-columns: 1fr;
    }

    /* Horiz list */
    .mt-post-list-horiz {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-widgets-area {
        grid-template-columns: 1fr;
        gap: var(--mt-gap);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile nav show */
    .mt-mobile-nav {
        display: block;
    }

    /* Add padding for mobile nav */
    .site-footer {
        padding-bottom: 60px;
    }

    /* Scroll top position */
    .mt-scroll-top {
        bottom: 70px;
        right: 12px;
    }

    /* Author box */
    .mt-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Pagination */
    .pagination .page-numbers,
    .navigation .page-numbers {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ==========================================================================
   26. RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================================== */

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .site-content,
    #content {
        padding: 10px 10px;
    }

    .entry-content-wrap,
    .post-body {
        padding: 12px;
    }

    .entry-header .entry-title {
        font-size: 17px;
    }

    .mt-popular-grid {
        grid-template-columns: 1fr;
    }

    .mt-header-inner {
        min-height: 58px;
    }

    .site-logo img {
        max-height: 38px;
    }
}

/* ==========================================================================
   27. PRINT STYLES
   ========================================================================== */

@media print {
    .main-navigation,
    #secondary,
    .mt-ad-overlay,
    .mt-scroll-top,
    .mt-mobile-nav,
    .mt-offcanvas-menu,
    .mt-ticker-wrap {
        display: none !important;
    }

    .site-content {
        grid-template-columns: 1fr !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a { text-decoration: underline; color: #000; }
}
