.public-data-modal-shell {
  height: 96vh;
  height: 96dvh;
  max-height: 96vh;
  max-height: 96dvh;
}

.public-data-modal-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.public-data-modal-scroll {
  min-height: 0;
  max-height: none;
  flex: 1 1 auto;
}

.report-contents-card {
  position: relative;
  margin: 0 0 1rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(250, 245, 255, 0.98) 0%,
    rgba(244, 247, 255, 0.98) 48%,
    rgba(236, 254, 255, 0.98) 100%
  );
  box-shadow:
    0 12px 30px rgba(91, 33, 182, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.report-contents-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 9rem;
  height: 9rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14), transparent 68%);
  transform: translate(35%, -48%);
  content: "";
  pointer-events: none;
}

.report-contents-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.report-contents-icon {
  position: relative;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #ffffff 0%, #f5f1ff 58%, #eefcff 100%);
  color: #7c3aed;
  box-shadow:
    0 7px 18px rgba(124, 58, 237, 0.13),
    0 3px 12px rgba(6, 182, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.report-contents-file-icon {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2.4;
}

.report-contents-kicker {
  margin-bottom: 0.08rem;
  color: #7c3aed;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.report-contents-title {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.report-contents-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.report-contents-item {
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.78);
  color: #273449;
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 3px 10px rgba(51, 65, 85, 0.05);
}

.report-contents-check {
  display: flex;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 55%, #06b6d4 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
}

@media (max-width: 520px) {
  .public-data-modal-overlay {
    padding: 0.5rem;
  }

  .public-data-modal-shell {
    height: calc(100vh - 1rem);
    height: calc(100dvh - 1rem);
    max-height: calc(100vh - 1rem);
    max-height: calc(100dvh - 1rem);
  }

  .report-contents-card {
    padding: 0.85rem;
  }

  .report-contents-heading {
    margin-bottom: 0.7rem;
  }

  .report-contents-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .report-contents-kicker {
    font-size: 0.58rem;
  }

  .report-contents-title {
    font-size: 0.92rem;
  }

  .report-contents-list {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .report-contents-item {
    min-height: 2.65rem;
    padding: 0.55rem 0.65rem;
    font-size: 0.72rem;
  }

  .report-contents-check {
    width: 1.4rem;
    height: 1.4rem;
  }
}
