.site-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(560px, calc(100% - 32px));
  margin: 18px auto 24px;
  padding: 12px 46px 12px 14px;
  color: #425064;
  background: rgba(245, 248, 252, 0.9);
  border: 1px solid rgba(218, 225, 236, 0.96);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(29, 41, 59, 0.12);
  backdrop-filter: blur(12px);
}

.site-notice__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #f4f8ff;
  background: linear-gradient(135deg, #6d8ec2, #93acd8);
  font-size: 15px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(109, 142, 194, 0.26);
}

.site-notice__body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.5;
}

.site-notice__body strong {
  color: #2b3647;
  font-size: 14px;
}

.site-notice__body span {
  color: #6f7f93;
}

.site-notice .site-notice__close {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #8795a8;
  text-shadow: none;
  transform: translateY(-50%);
  opacity: 0.7;
}

.site-notice .site-notice__close:hover {
  color: #2b3647;
  opacity: 1;
}

@media (max-width: 768px) {
  .site-notice {
    width: calc(100% - 24px);
    margin-top: 14px;
    padding-left: 12px;
    border-radius: 16px;
  }
}
