.eg-ai-report-wrap,
.eg-ai-report-wrap * {
  box-sizing: border-box;
}

.eg-ai-report-wrap {
  max-width: 980px;
  margin: 32px auto;
  padding: 0 8px;
  color: #1f2b48;
  font-family: inherit;
}

.eg-ai-report-hero,
.eg-ai-report-section,
.eg-ai-report-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d7e0ec;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}

.eg-ai-report-hero {
  background: #f5f1ea;
  border-color: #d9d4cc;
}

.eg-ai-report-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f2b48;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
}

.eg-ai-report-wrap h2,
.eg-ai-report-wrap h3 {
  color: #111827 !important;
  line-height: 1.3 !important;
  margin-top: 0;
}

.eg-ai-report-wrap p,
.eg-ai-report-wrap li,
.eg-ai-report-wrap label {
  color: #1f2b48;
  font-size: 16px;
  line-height: 1.65;
}

.eg-ai-report-form label {
  display: block;
  background: #f7f9fc;
  border: 1px solid #d7e0ec;
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0;
}

.eg-ai-report-form select {
  width: 100%;
  margin-top: 8px;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid #c9d3e2;
  background: #ffffff;
  color: #111827;
  font-size: 15px;
}

.eg-ai-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.eg-ai-report-grid label {
  margin: 0;
}

.eg-ai-report-form input[type="checkbox"] {
  margin-right: 8px;
}

.eg-ai-report-btn {
  width: 100%;
  margin: 8px 0 18px;
  padding: 15px 18px;
  border: none;
  border-radius: 999px;
  background: #1f2b48;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.eg-ai-report-btn:hover {
  opacity: .92;
}

.eg-ai-report-results {
  margin-top: 18px;
}

.eg-ai-report-card {
  background: #ffffff;
}

.eg-ai-report-card-body ul,
.eg-ai-report-card-body ol {
  margin: 8px 0 0 20px;
  padding: 0;
}

.eg-ai-report-score {
  font-size: 34px !important;
  line-height: 1.2 !important;
  font-weight: 900;
  color: #1f2b48 !important;
  margin: 8px 0 10px !important;
}

.eg-ai-report-loading,
.eg-ai-report-error {
  padding: 16px;
  border-radius: 14px;
  margin-top: 12px;
  font-weight: 700;
}

.eg-ai-report-loading {
  background: #f7f9fc;
  border: 1px solid #d7e0ec;
  color: #1f2b48;
}

.eg-ai-report-error {
  background: #fff3f3;
  border: 1px solid #e7b6b6;
  color: #8a1f1f;
}

@media (max-width: 640px) {
  .eg-ai-report-wrap {
    padding: 0 5px;
    margin: 22px auto;
  }

  .eg-ai-report-hero,
  .eg-ai-report-section,
  .eg-ai-report-card {
    padding: 14px;
    border-radius: 15px;
  }

  .eg-ai-report-grid {
    grid-template-columns: 1fr;
  }

  .eg-ai-report-score {
    font-size: 28px !important;
  }
}