/* Mobile Risk Notification Section */
.mobile-risk-notification {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
}

/* Risk Card */
.mobile-risk-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 20px;
  margin: 66px 16px;
  width: calc(100% - 32px);
  background: #fffaeb;
  border-radius: 16px;
  box-sizing: border-box;
}

/* Header Section */
.mobile-risk-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  width: 100%;
  box-sizing: border-box;
}

/* Header Text */
.mobile-risk-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.mobile-risk-text h3 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--page-title-color);
  margin: 0;
}

.mobile-risk-text p {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

/* Icon Section */
.mobile-risk-icon {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0;
  border-radius: 24px;
}

.mobile-risk-icon-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 24px;
}

.mobile-risk-icon-border {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fffaeb;
  border: 1px solid #fedf89;
  border-radius: 24px;
}

.mobile-risk-icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  position: absolute;
  width: 32px;
  height: 32px;
  left: calc(50% - 32px / 2);
  top: calc(50% - 32px / 2);
  background: #dc6803;
  border-radius: 99px;
}

.mobile-risk-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

/* Content Box */
.mobile-risk-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 20px;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Risk Item */
.mobile-risk-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
}

.mobile-risk-item h4 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--page-title-color);
  margin: 0;
}

.mobile-risk-item p {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-secondary);
  margin: 0;
}

/* Divider */
.mobile-risk-divider {
  width: 100%;
  height: 1px;
  background: var(--table-border-color);
}

/* Footer */
.mobile-risk-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
}

.mobile-risk-footer p {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--primary-color);
  margin: 0;
}
