/* ===== Wrapper ===== */
.neo-reportlist-wrap {
  margin: 0;
  padding: 0;
}

.neo-reportlist-wrap h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.4;
}

.neo-reportlist-wrap > p {
  margin: 0 0 16px;
  line-height: 1.8;
}

.neo-reportlist-wrap hr {
  margin: 0 0 24px;
  border: 0;
  border-top: 1px solid #e4e4e4;
}

/* ===== Grid ===== */
.neo-reportlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .neo-reportlist-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Card ===== */
.neo-reportlist-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 24px 20px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.neo-reportlist-card:hover {
  border-color: #1a5fa8;
  box-shadow: 0 2px 12px rgba(26, 95, 168, 0.08);
}

.neo-reportlist-card:hover .neo-reportlist-card-arrow {
  transform: translateX(4px);
}

/* Icon */
.neo-reportlist-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.neo-reportlist-card-icon svg {
  width: 22px;
  height: 22px;
}

.neo-reportlist-icon-blue { background: #e6f1fb; }
.neo-reportlist-icon-green { background: #e8f5e1; }
.neo-reportlist-icon-gray { background: #f1efe8; }
.neo-reportlist-icon-pink { background: #fbeaf0; }

/* Title */
.neo-reportlist-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}

/* Description */
.neo-reportlist-card-desc {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  flex: 1;
}

/* Footer */
.neo-reportlist-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 4px;
}

.neo-reportlist-card-arrow {
  display: flex;
  align-items: center;
  color: #1a5fa8;
  transition: transform .18s ease;
}

.neo-reportlist-card-arrow svg {
  width: 18px;
  height: 18px;
}