@media (max-width: 768px) {
  /* ✅ Hide duplicate category menu */
  #menu-home-1 {
    display: none !important;
  }

  /* ✅ Hide bottom yellow nav bar */
  .navigation-bar,
  .navigation-bar > .container {
    display: none !important;
    background: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  /* ✅ Center and align logo and epaper block */
  .site-branding {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 0;
    width: 100%;
  }

  .logo-left {
    display: block !important;
    text-align: center !important;
    margin-bottom: 5px !important;
  }

  .custom-logo-link img {
    height: auto !important;
    width: auto !important;
    max-height: 120px !important; /* ✅ Increased Logo size */
  }

  .epaper-block {
    display: block !important;
    text-align: center !important;
  }

  .epaper-block img {
    height: auto !important;
    width: auto !important;
    max-height: 16px !important; /* ✅ Reduced ePaper button size */
    margin-top: 4px !important;
  }

  /* ✅ Mobile category menu style */
  .main-navigation,
  .main-navigation-wrap,
  .aft-header-menu-wrap {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ffcc00 !important;
    padding: 10px 5px;
    margin-top: 10px;
  }

  .main-navigation ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-navigation li {
    margin: 4px 6px;
  }

  .main-navigation a {
    background: #000;
    color: #ffcc00;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
  }

  .main-navigation a:hover {
    background: #333;
    color: #fff;
  }

  /* ✅ Hide sidebar widgets */
  #secondary,
  .widget-area,
  .sidebar,
  .sidebar-main {
    display: none !important;
  }
}
