.alert {
  background: #F8F8F8;
  padding: 2rem;
  font-size: 1.75rem;
}

@media screen and (min-width: 991px) {
  .alert {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
  }
}

.alert > img {
  margin-right: 2rem;
  margin-bottom: 2rem;
  float: left;
  flex-shrink: 0;
  width: 20%;
  height: auto;
}

@media screen and (min-width: 991px) {
  .alert > img {
    margin-right: 0;
    float: none;
    flex-shrink: 0;
    width: 10%;
    height: auto;
  }
}

.alert .alert__content h3,
.alert .alert__content h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.alert .alert__content p:last-child {
  margin-bottom: 0;
}