
  :root {
    --ccc-brand-blue: #003E7E;
    --icon-bg-color: #ECF0F4;
  }

  .alert-wrapper {
    overflow: hidden;
  }

  .alert-banner {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    color: var(--icon-bg-color);
    position: relative;
    width: 100%;
    max-height: 50px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .alert-banner.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .alert-banner.expanded {
    min-height: 150px;
    max-height: 720px;
    transition: max-height 0.5s ease;
  }

  .alert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 99.5%;
  }

  .alert-icon {
    background-color: var(--icon-bg-color);
    color: var(--ccc-brand-blue);
    padding: 10px;
    border-radius: 10px;
    margin-right: 20px;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .alert-toggle {
    cursor: pointer;
    margin-left: 10px;
    font-size: 2rem;
  }

  .alert-title {
    flex-grow: 1;
    text-align: left;
    font-weight: 800;
  }

  .alert-content {
    display: none;
    margin-top: 20px;
    background-color: var(--icon-bg-color);
    border-radius: 15px;
    padding: 27px;
    width: 92%;
    color: var(--ccc-brand-blue);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .alert-banner.expanded .alert-content {
    display: block;
    opacity: 1;
  }

  .alert-content p {
    padding: 0px 20px 0px 10px;
    margin: 0;
  }

  /* Spacing between paragraphs */
  .alert-content p + p {
    margin-top: 1em;
  }

  /* Button wrapper spacing */
  .alert-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }

  .alert-button-row > div {
    flex: 1 1 25%;
    max-width: 25%;
    min-width: 140px;
    text-align: center;
    background-color: var(--ccc-brand-blue);
    border: 3px solid var(--ccc-brand-blue);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--icon-bg-color);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: default;
  }

  .alert-button-row > div:hover {
    background-color: var(--icon-bg-color);
    color: var(--ccc-brand-blue);
  }

  .alert-button-row > div a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .alert-button-row > div a::before {
    content: none !important;
  }

  @media (max-width: 1200px) { .alert-content { width: 88%; } }
  @media (max-width: 992px)  { .alert-content { width: 86%; } }
  @media (max-width: 768px)  {
    .alert-content { width: 84%; }
    .alert-button-row > div {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  @media (max-width: 576px)  { .alert-content { width: 82%; } }
