.alert {
    margin-block: 2.5rem;
    padding: 1.25rem;
    display: grid;
    grid-gap: 1.25rem;
    grid-template-columns: max-content auto;
    border-radius: 4px;
    border-width: 4px;
    border-left-style: solid;
    transition: 0.12s ease;
    position: relative;
    overflow: hidden;
    z-index: -99999;
  }
  .alert .icon, .alert .content {
    z-index: 2;
  }
  .alert .icon {
    line-height: 1;
  }
  .alert .title {
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .alert .content {
    max-width: 60ch;
  }
  .alert.alert--info {
    background-color: hsl(58, 57%, 91%);
    border-left-color: #222;
  }
  .alert.alert--info .icon {
    color: #222;
  }
  
  @media (max-width: 767px) {
    .alert {
      grid-template-columns: auto;
      padding: 1rem;
      grid-gap: 0.75rem;
    }
    .alert .icon {
      font-size: 1.5rem;
    }
    .alert .title {
      margin-bottom: 0.5rem;
    }
  }