.risk, .risk *{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.risk{
  background:#ffffff;
  padding: 90px 0;
}

.risk-wrap{
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.risk-title{
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color:#0f172a;
  margin: 0 0 18px;
}

.risk-desc{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15,23,42,.65);
  max-width: 460px;
  margin-bottom: 28px;
}

.risk-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.risk-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.risk-check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34,197,94,.15);
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.risk-list strong{
  font-size: 14px;
  color:#0f172a;
}

.risk-list p{
  font-size: 13px;
  margin: 2px 0 0;
  color: rgba(15,23,42,.6);
}

/* RIGHT PANEL */
.risk-right{
  display: flex;
  justify-content: center;
}

.risk-panel{
  width: 100%;
  max-width: 420px;
  min-height: 300px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 30px 40px rgba(15,23,42,.12);
  padding: 28px;
  position: relative;
}

/* STATUS BADGES */
.risk-badge{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background:#f8fafc;
  margin-bottom: 12px;
  width: fit-content;
}

.risk-badge strong{
  font-size: 13px;
  color:#0f172a;
}

.risk-badge small{
  font-size: 12px;
  color: rgba(15,23,42,.6);
}

.risk-badge .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

/* badge colors */
.risk-badge.warning{
  background: rgba(250,204,21,.18);
}
.risk-badge.warning .dot{
  background:#facc15;
}

.risk-badge.danger{
  background: rgba(239,68,68,.15);
}
.risk-badge.danger .dot{
  background:#ef4444;
}

.risk-badge.success{
  background: rgba(34,197,94,.15);
}
.risk-badge.success .dot{
  background:#22c55e;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .risk-wrap{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .risk-right{
    justify-content: flex-start;
  }
}

@media (max-width: 560px){
  .risk{
    padding: 70px 0;
  }

  .risk-title{
    font-size: 28px;
  }
}
