.service-alerts {
  margin-bottom: 1.5rem;
  background-color: #EEEEEE;
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  padding: 8px 16px 16px;
}

.service-alerts .service-alerts-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.25rem;
}

@media screen and (min-width: 1024px) {
  .service-alerts .service-alerts-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-alerts .service-alert {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
}

.service-alerts .alert-header .alert-title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
}

.service-alerts .route-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.service-alerts .route-color-swatch {
  min-width: 29px;
  height: 29px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: -0.1px;
  padding: 0 2px;
  flex-shrink: 0;
  font-weight: bold;
  color: white;
}

.service-alerts .alert-body {
  margin-top: 0.5rem;
}

.service-alerts .alert-body .alert-label {
  margin-top: 0.5rem;
  font-weight: bold;
}

.service-alerts .alert-body ul {
  margin: 0.5rem 0;
}

.service-alerts .alert-more-info {
  text-decoration: none;
  display: inline-block;
  background: #00677f;
  font-size: 19px;
  border-radius: 4px;
  height: 48px;
  line-height: 24px;
  padding: 12px 24px;
  margin-top: 0.75rem;
  text-align: center;
  color: #ffffff;
}

.service-alerts .service-alert-empty {
  display: none;
  background-color: rgb(224, 230, 245);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 16px;
}
