/* PulsCam homepage notice */
.pcHomeNotice {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 18px;
  border: 1px solid rgba(255, 106, 26, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 138, 26, .16), transparent 34%),
    radial-gradient(circle at 3% 10%, rgba(255, 42, 42, .08), transparent 28%),
    linear-gradient(180deg, #ffffff, #fffaf7);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  color: #111827;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.pcHomeNoticeInner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
}

.pcHomeNoticeIcon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2a2a, #ff8a1a);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 106, 26, .24);
  font-size: 20px;
  font-weight: 950;
}

.pcHomeNoticeKicker {
  color: #ff6a1a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pcHomeNotice h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 6px 0 0;
  padding-bottom: 9px;
  color: #111827;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.04em;
}

.pcHomeNotice h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2a2a, #ff8a1a);
}

.pcHomeNotice p {
  max-width: 860px;
  margin: 11px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.pcHomeNoticeBadges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 13px;
}

.pcHomeNoticeBadge {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #344054;
  font-size: 12px;
  font-weight: 900;
}

.pcHomeNoticeClose {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #667085;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  font-weight: 800;
}

.pcHomeNoticeClose:hover {
  color: #111827;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .pcHomeNotice {
    width: min(100% - 24px, 1180px);
    border-radius: 20px;
  }

  .pcHomeNoticeInner {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px;
  }

  .pcHomeNoticeClose {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .pcHomeNotice h2 {
    font-size: 20px;
  }
}
