/* 1. Push content down from Nav Bar */
.research-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px !important; /* Forces space below nav */
}

/* 2. Tightened Card */
.research-card {
  position: relative;
  background: var(--panel);
  box-shadow: inset 0 0 10px rgba(129, 140, 248, 0.1) !important;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
}   

.research-card:hover {
  background: #202940 !important;
  border-color: rgba(129, 140, 248, 0.8) !important;
}

/* Reduced internal padding */
.research-card .card-pad {
  padding: 15px 20px !important; 
}

/* 3. Tightened Header (Title & Venue) */
.research-header {
  margin-bottom: 5px !important;
}

.research-title {
  margin: 0 !important;
  font-size: 19px;
  line-height: 1.1;
  color: #fff;
}

.research-venue {
  margin-top: 2px !important; /* Minimal gap */
  font-size: 10.5px;
  color: rgb(151, 161, 236);
  text-transform: uppercase;
  font-family: monospace;
}

/* 4. Abstract & Buttons */
.research-abstract p {
  margin: 10px 0 !important;
  font-size: 14px;
  line-height: 1.5;
  color: #94a3b8;
}

.research-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}