/* hustle */

.hustle-ui.module_id_1 .hustle-layout .hustle-group-content {
    font-size: 18px !important;

}

/* EMERGENCY ALERT BANNER */

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #cc0000; /* Red alert background */
    padding: 20px;
    color: white;
    text-align: center;
  }

  .banner img {
    height: 80px; /* Adjust as needed */
    margin-bottom: 15px;
  }

  .banner .alert {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .banner .watch {
    font-size: 20px;
    text-transform: none;
  }

  @media (max-width: 600px) {
    .banner img {
      height: 60px;
    }
    .banner .alert {
      font-size: 24px;
    }
    .banner .watch {
      font-size: 16px;
    }
  }