/* HOTFIX.CSS — asegura que el sitio vuelva a ser responsive */
@media screen and (max-width: 1024px) {
  #main,
  .content-area,
  .site-content {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
  }

  .sidebar,
  #secondary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    margin-top: 20px !important;
  }

  body {
    overflow-x: hidden !important;
  }
}
