/*
Theme Name:   TheUpdatesMail Child
Theme URI:    https://theupdatesmail.com
Description:  Custom child theme for TheUpdatesMail - Hyperlocal Kenya Business News
Author:       TheUpdatesMail
Template:     generatepress
Version:      1.0.0
*/

/* ============================================
   CSS VARIABLES — DESIGN SYSTEM
   ============================================ */
:root {
    --tum-blue:        #1a6fdb;
    --tum-blue-dark:   #0c4fa3;
    --tum-blue-light:  #e8f0fe;
    --tum-navy:        #1a2744;
    --tum-gold:        #e6a817;
    --tum-gold-bg:     #fef8ec;
    --tum-gold-border: #f0c040;
    --tum-green:       #1a8a4a;
    --tum-text:        #111111;
    --tum-text-muted:  #666666;
    --tum-text-light:  #999999;
    --tum-border:      #e8e8e8;
    --tum-bg:          #f5f6f8;
    --tum-white:       #ffffff;
    --tum-radius:      8px;
    --tum-radius-lg:   12px;
    --tum-font-head:   'DM Serif Display', Georgia, serif;
    --tum-font-body:   'DM Sans', system-ui, sans-serif;
    --tum-shadow:      0 1px 3px rgba(0,0,0,0.08);
    --tum-shadow-md:   0 2px 8px rgba(0,0,0,0.10);
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--tum-font-body);
    font-size: 15px;
    color: var(--tum-text);
    background: var(--tum-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--tum-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   LAYOUT
   ============================================ */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tum-content-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
}

.tum-main { min-width: 0; }
.tum-sidebar { min-width: 0; }

/* ============================================
   TOP BAR
   ============================================ */
.tum-topbar {
    background: var(--tum-navy);
    padding: 6px 0;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.tum-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tum-topbar a {
    color: rgba(255,255,255,0.6);
    margin-left: 16px;
    font-size: 11px;
}

.tum-topbar a:hover { color: #fff; text-decoration: none; }

/* ============================================
   HEADER
   ============================================ */
.tum-header {
    background: var(--tum-blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--tum-shadow-md);
}

.tum-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.tum-logo {
    font-family: var(--tum-font-head);
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.tum-logo span { color: var(--tum-gold); }
.tum-logo:hover { text-decoration: none; }

.tum-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tum-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 6px 12px;
    border-radius: var(--tum-radius);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

.tum-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.tum-nav-cta {
    background: var(--tum-gold) !important;
    color: var(--tum-navy) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.tum-nav-cta:hover {
    background: #d4960f !important;
}

.tum-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fff;
}

/* ============================================
   NEWS TICKER
   ============================================ */
.tum-ticker {
    background: var(--tum-blue-dark);
    padding: 7px 0;
    overflow: hidden;
}

.tum-ticker-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tum-ticker-label {
    background: var(--tum-gold);
    color: var(--tum-navy);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.tum-ticker-text {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tum-ticker-text a {
    color: rgba(255,255,255,0.9);
    margin-right: 24px;
}

.tum-ticker-text a:hover { color: #fff; text-decoration: none; }

/* ============================================
   COUNTY NAV BAR
   ============================================ */
.tum-county-nav {
    background: var(--tum-white);
    border-bottom: 1px solid var(--tum-border);
}

.tum-county-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tum-county-nav-inner::-webkit-scrollbar { display: none; }

.tum-county-tab {
    padding: 11px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--tum-text-muted);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
    display: block;
}

.tum-county-tab:hover,
.tum-county-tab.active {
    color: var(--tum-blue);
    border-bottom-color: var(--tum-blue);
    text-decoration: none;
}

.tum-county-tab-divider {
    width: 1px;
    height: 16px;
    background: var(--tum-border);
    margin: 0 4px;
    flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.tum-hero {
    background: var(--tum-white);
    border-bottom: 1px solid var(--tum-border);
    padding: 20px 0;
}

.tum-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 16px;
}

.tum-hero-main {
    position: relative;
    border-radius: var(--tum-radius-lg);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--tum-navy);
}

.tum-hero-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.tum-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,25,50,0.95) 0%, rgba(15,25,50,0.3) 60%, transparent 100%);
}

.tum-hero-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.tum-county-pill {
    display: inline-block;
    background: var(--tum-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tum-county-pill.nairobi  { background: var(--tum-blue); }
.tum-county-pill.mombasa  { background: #0f6e56; }
.tum-county-pill.nakuru   { background: #854f0b; }
.tum-county-pill.eldoret  { background: #6b3a9e; }

.tum-hero-title {
    font-family: var(--tum-font-head);
    font-size: 22px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.tum-hero-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.tum-hero-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tum-side-card {
    background: var(--tum-white);
    border: 1px solid var(--tum-border);
    border-radius: var(--tum-radius);
    overflow: hidden;
    display: flex;
    gap: 12px;
    padding: 12px;
    transition: box-shadow 0.15s;
    text-decoration: none;
}

.tum-side-card:hover {
    box-shadow: var(--tum-shadow-md);
    text-decoration: none;
}

.tum-side-card-img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--tum-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tum-side-card-body {}
.tum-side-card-county { font-size: 10px; color: var(--tum-blue); font-weight: 600; margin-bottom: 3px; text-transform: uppercase; }
.tum-side-card-title  { font-size: 12px; font-weight: 500; color: var(--tum-text); line-height: 1.4; }
.tum-side-card-meta   { font-size: 10px; color: var(--tum-text-muted); margin-top: 4px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.tum-section { padding: 24px 0; }

.tum-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tum-section-title {
    font-family: var(--tum-font-head);
    font-size: 17px;
    color: var(--tum-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tum-section-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 18px;
    background: var(--tum-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

.tum-view-all {
    font-size: 12px;
    color: var(--tum-blue);
    font-weight: 500;
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.tum-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.tum-cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tum-cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.tum-card {
    background: var(--tum-white);
    border: 1px solid var(--tum-border);
    border-radius: var(--tum-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.15s;
    text-decoration: none;
    display: block;
}

.tum-card:hover {
    box-shadow: var(--tum-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.tum-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: var(--tum-blue-light);
}

.tum-card-body { padding: 12px 14px 14px; }

.tum-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--tum-gold-bg);
    border: 1px solid var(--tum-gold-border);
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #7a5000;
    margin-bottom: 7px;
}

.tum-card-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--tum-text);
    line-height: 1.4;
    margin-bottom: 6px;
}

.tum-card-location {
    font-size: 11px;
    color: var(--tum-blue);
    display: flex;
    align-items: center;
    gap: 3px;
}

.tum-card-excerpt {
    font-size: 12px;
    color: var(--tum-text-muted);
    line-height: 1.5;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   FEATURED BUSINESSES STRIP
   ============================================ */
.tum-featured-strip {
    background: var(--tum-blue-light);
    border-top: 1px solid #c5d8f5;
    border-bottom: 1px solid #c5d8f5;
    padding: 20px 0;
}

.tum-featured-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tum-featured-strip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tum-featured-strip-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--tum-blue-dark);
}

.tum-sponsored-tag {
    background: var(--tum-blue);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 500;
}

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

.tum-featured-biz-card {
    background: var(--tum-white);
    border: 1px solid #c5d8f5;
    border-radius: var(--tum-radius);
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    transition: box-shadow 0.15s;
}

.tum-featured-biz-card:hover {
    box-shadow: var(--tum-shadow);
    text-decoration: none;
}

.tum-biz-icon {
    width: 42px;
    height: 42px;
    background: var(--tum-blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tum-biz-icon svg { width: 20px; height: 20px; fill: var(--tum-blue); }
.tum-biz-name { font-size: 12px; font-weight: 600; color: var(--tum-text); margin-bottom: 2px; }
.tum-biz-loc  { font-size: 11px; color: var(--tum-text-muted); }
.tum-biz-star { font-size: 11px; color: var(--tum-gold); margin-top: 3px; }

/* ============================================
   COUNTY GRID SECTION
   ============================================ */
.tum-county-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.tum-county-block {
    background: var(--tum-white);
    border: 1px solid var(--tum-border);
    border-radius: var(--tum-radius-lg);
    overflow: hidden;
}

.tum-county-block-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tum-county-block-header.nairobi { background: var(--tum-blue); }
.tum-county-block-header.mombasa { background: #0f6e56; }
.tum-county-block-header.nakuru  { background: #854f0b; }
.tum-county-block-header.eldoret { background: #6b3a9e; }

.tum-county-block-name  { font-size: 14px; font-weight: 500; color: #fff; }
.tum-county-block-count { font-size: 11px; color: rgba(255,255,255,0.7); }

.tum-county-block-list { padding: 6px 0; }

.tum-county-block-item {
    padding: 8px 16px;
    border-bottom: 1px solid var(--tum-border);
    font-size: 12px;
    color: var(--tum-text);
    line-height: 1.4;
    display: block;
    text-decoration: none;
    transition: background 0.1s;
}

.tum-county-block-item:hover {
    background: var(--tum-bg);
    text-decoration: none;
}

.tum-county-block-item:last-child { border-bottom: none; }

.tum-county-block-more {
    display: block;
    padding: 10px 16px;
    font-size: 12px;
    color: var(--tum-blue);
    font-weight: 500;
    text-decoration: none;
    border-top: 1px solid var(--tum-border);
}

.tum-county-block-more:hover { background: var(--tum-bg); text-decoration: none; }

/* ============================================
   SIDEBAR
   ============================================ */
.tum-widget {
    background: var(--tum-white);
    border: 1px solid var(--tum-border);
    border-radius: var(--tum-radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.tum-widget-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--tum-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--tum-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tum-widget-header::before {
    content: '';
    display: block;
    width: 3px;
    height: 14px;
    background: var(--tum-blue);
    border-radius: 2px;
}

.tum-widget-body { padding: 14px 16px; }

.tum-sidebar-post {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--tum-border);
    text-decoration: none;
}

.tum-sidebar-post:last-child { border-bottom: none; }

.tum-sidebar-post:hover { text-decoration: none; }

.tum-sidebar-post-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--tum-blue-light);
}

.tum-sidebar-post-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--tum-text);
    line-height: 1.4;
    margin-bottom: 3px;
}

.tum-sidebar-post-meta { font-size: 10px; color: var(--tum-text-muted); }

.tum-cta-widget {
    background: var(--tum-blue);
    border-radius: var(--tum-radius-lg);
    padding: 20px 16px;
    text-align: center;
    margin-bottom: 20px;
}

.tum-cta-widget h3 { color: #fff; font-size: 15px; margin-bottom: 8px; font-family: var(--tum-font-head); }
.tum-cta-widget p  { color: rgba(255,255,255,0.8); font-size: 12px; margin-bottom: 14px; line-height: 1.5; }

.tum-cta-btn {
    display: inline-block;
    background: var(--tum-gold);
    color: var(--tum-navy);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--tum-radius);
    text-decoration: none;
}

.tum-cta-btn:hover { background: #d4960f; text-decoration: none; }

/* ============================================
   SINGLE ARTICLE
   ============================================ */
.tum-single-wrap {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.tum-article {
    background: var(--tum-white);
    border: 1px solid var(--tum-border);
    border-radius: var(--tum-radius-lg);
    overflow: hidden;
}

.tum-article-hero { width: 100%; height: 380px; object-fit: cover; background: var(--tum-blue-light); }

.tum-article-body { padding: 28px 32px; }

.tum-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tum-article-county { font-size: 11px; }
.tum-article-date   { font-size: 12px; color: var(--tum-text-muted); }
.tum-article-read   { font-size: 12px; color: var(--tum-text-muted); }

.tum-article-title {
    font-family: var(--tum-font-head);
    font-size: 28px;
    line-height: 1.3;
    color: var(--tum-text);
    margin-bottom: 16px;
}

.tum-article-excerpt {
    font-size: 16px;
    color: var(--tum-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--tum-border);
}

.tum-article-content { font-size: 15px; line-height: 1.8; color: var(--tum-text); }
.tum-article-content h2 { font-family: var(--tum-font-head); font-size: 20px; margin: 28px 0 12px; color: var(--tum-text); }
.tum-article-content p  { margin-bottom: 16px; }

/* Business info box styling */
.tum-article-content div[style*="border-left"] {
    border-left: 4px solid var(--tum-blue) !important;
    border-radius: var(--tum-radius) !important;
    background: var(--tum-blue-light) !important;
}

/* Rating box styling */
.tum-article-content div[style*="border: 1px solid #ffd700"] {
    border-radius: var(--tum-radius) !important;
}

/* ============================================
   SUGGEST CTA (on free articles)
   ============================================ */
.tum-suggest-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--tum-blue-light);
    border: 1px solid #c5d8f5;
    border-radius: var(--tum-radius);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--tum-text);
    margin-bottom: 20px;
}

.tum-suggest-cta a { color: var(--tum-blue); font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */
.tum-footer {
    background: var(--tum-navy);
    margin-top: 40px;
    padding: 40px 0 0;
}

.tum-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tum-footer-logo-wrap .tum-logo { font-size: 24px; display: block; margin-bottom: 10px; }
.tum-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; }

.tum-footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.tum-footer-col a  { display: block; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 8px; text-decoration: none; }
.tum-footer-col a:hover { color: #fff; }

.tum-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    .tum-content-wrap,
    .tum-single-wrap  { grid-template-columns: 1fr; }
    .tum-sidebar      { display: none; }
    .tum-hero-inner   { grid-template-columns: 1fr; }
    .tum-hero-side    { display: none; }
    .tum-cards-grid   { grid-template-columns: repeat(2, 1fr); }
    .tum-county-grid  { grid-template-columns: repeat(2, 1fr); }
    .tum-featured-row { grid-template-columns: repeat(2, 1fr); }
    .tum-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .tum-nav          { display: none; }
    .tum-menu-toggle  { display: block; }
    .tum-cards-grid   { grid-template-columns: 1fr; }
    .tum-county-grid  { grid-template-columns: 1fr; }
    .tum-featured-row { grid-template-columns: 1fr; }
    .tum-article-body { padding: 20px 16px; }
    .tum-article-title { font-size: 22px; }
    .tum-footer-inner { grid-template-columns: 1fr; }
    .tum-hero-main    { min-height: 240px; }
    .tum-hero-title   { font-size: 18px; }
}

/* ============================================
   HOMEPAGE WRAP
   ============================================ */
.tum-homepage-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tum-hero {
    background: var(--tum-white);
    border-bottom: 1px solid var(--tum-border);
    padding: 20px;
}

.tum-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    align-items: stretch;
}

.tum-hero-main {
    position: relative;
    border-radius: var(--tum-radius-lg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--tum-blue);
    text-decoration: none;
}

.tum-hero-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tum-hero-side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tum-side-card {
    flex: 1;
    min-height: 0;
}

/* Fix cards grid on homepage */
.tum-homepage-wrap .tum-cards-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Fix county grid */
.tum-homepage-wrap .tum-county-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Remove GeneratePress inner container interference */
.inside-article,
.entry-content,
#primary,
.content-area {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.separate-containers .inside-article {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Remove GP default padding on homepage */
body.home .inside-article,
body.front-page .inside-article {
    padding: 0 !important;
    background: transparent !important;
}

@media (max-width: 900px) {
    .tum-hero-inner {
        grid-template-columns: 1fr !important;
    }
    .tum-hero-side {
        display: none !important;
    }
    .tum-homepage-wrap .tum-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .tum-homepage-wrap .tum-county-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .tum-homepage-wrap .tum-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .tum-homepage-wrap .tum-county-grid {
        grid-template-columns: 1fr !important;
    }
}
