.iee-feedback {
  display: grid;
  gap: 16px;
}

.iee-card {
  padding: 16px;
  border-radius: 8px;
  background: #f9f9f9;
}

.iee-card.blue { background:#e3f2fd; }
.iee-card.green { background:#e8f5e9; }
.iee-card.yellow { background:#fffde7; }
.iee-card.purple { background:#f3e5f5; }
.iee-card.red { background:#ffebee; }
.iee-card.orange { background:#fff3e0; }
.iee-card.teal { background:#e0f2f1; }


/* ---------- Base ---------- */



.feedback-wrapper {
  max-width: 900px;
  margin: 40px auto;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
}

.feedback-title {
  text-align: center;
  margin-bottom: 32px;
}

.feedback-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feedback-title p {
  font-size: 13px;
  color: #6b7280;
}

/* ---------- Common Card ---------- */
.feedback-card {
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}

.feedback-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feedback-card small {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.feedback-card p,
.feedback-card li {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Color Variants ---------- */
.card-blue {
  background: #eef6ff;
  border-color: #cfe5ff;
}

.card-green {
  background: #effdf3;
  border-color: #c7f3d6;
}

.card-yellow {
  background: #fff8eb;
  border-color: #ffe0a3;
}

.card-teal {
  background: #ecfeff;
  border-color: #b5eef2;
}

.card-purple {
  background: #f6f2ff;
  border-color: #ded3ff;
}

.card-pink {
  background: #fff1f2;
  border-color: #ffd6dc;
}

/* ---------- Band Score ---------- */
.band-score {
  text-align: center;
  padding: 28px 0;
}

.band-score .score {
  font-size: 44px;
  font-weight: 700;
  color: #2563eb;
}

.band-score span {
  display: block;
  font-size: 11px;
  color: #6b7280;
  letter-spacing: 0.05em;
}

/* ---------- Badge ---------- */
.badge {
  float: right;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-green {
  background: #dcfce7;
  color: #166534;
}

/* ---------- Lists ---------- */
.feedback-list {
  padding-left: 18px;
  margin-top: 10px;
}

.feedback-list li {
  margin-bottom: 6px;
}

/* ---------- Quoted Examples ---------- */
.quote-box {
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-size: 14px;
  font-style: italic;
}

/* ---------- Checklist ---------- */
.checklist li {
  list-style: none;
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
}

.checklist li::before {
  content: "●";
  color: #22c55e;
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------- Button ---------- */
.feedback-button {
  display: inline-block;
  margin: 30px auto 0;
  padding: 10px 22px;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.feedback-button:hover {
  background: #1e4fd6;
}