.notification {
  padding-bottom: 1rem;
  padding-top: 1rem;
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 5;
}
.notification + .notification {
  margin-top: 1px;
}
.notification a {
  color: #E89B8E;
}
@media print {
  .notification {
    display: none;
  }
}

.notification__inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}

.notification__title {
  color: #DABE4F;
  font-family: "adelle-sans", sans-serif;
  font-size: 1.2rem;
  margin: 0;
  margin-right: 1.5rem;
}

.notification__body {
  font-size: 0.9rem;
  margin-top: 0.1rem;
}
.notification__body :first-child {
  margin-top: 0;
}
.notification__body :last-child {
  margin-bottom: 0;
}
@media (max-width: 47.9375em) {
  .notification__body {
    margin-top: 0.5rem;
    width: 100%;
  }
}
@media (min-width: 48em) {
  .notification__body {
    flex: 1;
  }
}
@media (min-width: 62em) {
  .notification__body {
    display: flex;
  }
}

@media (min-width: 62em) {
  .notification__copy {
    flex: 1;
  }
}

.notification__links {
  margin: 0;
}
@media (max-width: 61.9375em) {
  .notification__links {
    margin-top: 0.5rem;
  }
}
@media (min-width: 62em) {
  .notification__links {
    margin-left: 1.5rem;
  }
}

.notification__link {
  transition: color 0.2s ease-in-out 0s;
  align-items: center;
  color: #E89B8E;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 1.3333333333em;
  padding-left: 1.6666666667em;
  position: relative;
  text-decoration: none;
}
.notification__link:before, .notification__link:after {
  content: "";
  display: block;
  position: absolute;
}
.notification__link:before {
  height: 1.3333333333em;
  width: 1.3333333333em;
  border-radius: 50%;
  background-color: currentColor;
  left: 0;
  top: 0.1111111111em;
  z-index: 1;
}
.notification__link:after {
  height: 0.4444444444em;
  width: 0.4444444444em;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  left: 0.2777777778em;
  top: 0.5em;
  z-index: 2;
}
.notification__link:hover {
  color: #f4cdc7;
}