.alert-banner-stack {
  display: flex;
  flex-direction: column;
}

.alert-banner {
  width: 100%;
  background: #fff4f4;
  border-top: 1px solid #ffb4b4;
  border-bottom: 1px solid #ffb4b4;
  padding: 24px 48px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.alert-banner-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.alert-banner-content h3 {
  color: #dc2626;
  font-size: 28px;
  margin-bottom: 10px;
}

.alert-banner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
  max-width: 1000px;
}

.alert-banner-close {
  position: absolute;
  top: 24px;
  right: 32px;
  border: none;
  background: transparent;
  color: #dc2626;
  font-size: 36px;
  cursor: pointer;
}

@media (max-width: 940px) {
    .alert-banner {
      padding: 24px;
    }

    .alert-banner-content h3 {
      font-size: 22px;
    }

    .alert-banner-content p {
      font-size: 16px;
    }
}