/* ==========================================================================
   Flood information banner
   Site-wide alert bar linking to flood information and resources.
   ========================================================================== */

.flood-banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 24px;
  background-color: #ffe000;
  color: #0f1b2d;
  font-family: 'Karla', Helvetica, Arial, sans-serif;
  text-align: center;
}

.flood-banner-title {
  margin-right: 24px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.flood-banner-cta {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 12px 24px;
  background-color: #0f1b2d;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.flood-banner-cta:hover,
.flood-banner-cta:focus {
  background-color: #1f3a5f;
  color: #ffffff;
  text-decoration: none;
}

.flood-banner-cta:focus {
  outline: 3px solid #0f1b2d;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .flood-banner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .flood-banner-title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .flood-banner-cta {
    padding: 10px 20px;
    font-size: 18px;
  }
}
