/* =========================================================
   GRID – RESEARCHERS
========================================================= */

.reserchers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.resercher-card {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.resercher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.resercher-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}
.grid-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.resercher-name {
  margin: 14px 0 6px;
  font-size: 20px;
  font-weight: 600;
}

.resercher-position {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.resercher-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .resercher-thumb img {
    height: 200px;
  }
}
